aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-08-29 11:44:31 +0000
committernyamatongwe <unknown>2000-08-29 11:44:31 +0000
commitb1387790b890ce28cf96516e2ec36a241d1f8f75 (patch)
tree973fc8631e907141dd0ed6bdee206d6bfbdc16dc /src/PropSet.cxx
parent0a5ad07af79ed293e841ba47a00d885375814976 (diff)
downloadscintilla-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/PropSet.cxx')
-rw-r--r--src/PropSet.cxx2
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) {