diff options
author | nyamatongwe <devnull@localhost> | 2002-04-21 03:11:41 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-04-21 03:11:41 +0000 |
commit | 2fd5e782637b56483945a9d60af6c1a96a2b43ae (patch) | |
tree | b666a22fa911acd6f19634cff85d527212a303df | |
parent | d912ad1350365ae40aebbb4a39beef931f94b8d2 (diff) | |
download | scintilla-mirror-2fd5e782637b56483945a9d60af6c1a96a2b43ae.tar.gz |
Changed lenpos_t to be size_t as that is WIN64 safe.
-rw-r--r-- | include/SString.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SString.h b/include/SString.h index eacfef35b..8ef3ede8e 100644 --- a/include/SString.h +++ b/include/SString.h @@ -28,7 +28,7 @@ bool EqualCaseInsensitive(const char *a, const char *b); class SString { public: /** Type of string lengths (sizes) and positions (indexes). */ - typedef unsigned int lenpos_t; + typedef size_t lenpos_t; /** Out of bounds value indicating that the string argument should be measured. */ enum { measure_length=0xffffffffU}; |