diff options
| author | nyamatongwe <devnull@localhost> | 2000-08-29 11:44:31 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-08-29 11:44:31 +0000 | 
| commit | 27103d76bfd65b8083393a9906531fdf4cac9f88 (patch) | |
| tree | 973fc8631e907141dd0ed6bdee206d6bfbdc16dc /src | |
| parent | 84681529cc4b6855c8a737bcd0e45fbc5517b332 (diff) | |
| download | scintilla-mirror-27103d76bfd65b8083393a9906531fdf4cac9f88.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) { | 
