diff options
author | nyamatongwe <unknown> | 2000-08-29 11:44:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-08-29 11:44:31 +0000 |
commit | b1387790b890ce28cf96516e2ec36a241d1f8f75 (patch) | |
tree | 973fc8631e907141dd0ed6bdee206d6bfbdc16dc /src | |
parent | 0a5ad07af79ed293e841ba47a00d885375814976 (diff) | |
download | scintilla-mirror-b1387790b890ce28cf96516e2ec36a241d1f8f75.tar.gz |
Merged Jan's changes to SString. Has a size field and allows C++ standard
library style iterator access.
Diffstat (limited to 'src')
-rw-r--r-- | src/PropSet.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx index df669a88b..42c5869c9 100644 --- a/src/PropSet.cxx +++ b/src/PropSet.cxx @@ -24,6 +24,8 @@ bool EqualCaseInsensitive(const char *a, const char *b) { #endif } +SString::size_type SString::npos = -1; + inline unsigned int HashString(const char *s) { unsigned int ret = 0; while (*s) { |