aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-04-21 03:11:41 +0000
committernyamatongwe <devnull@localhost>2002-04-21 03:11:41 +0000
commit2fd5e782637b56483945a9d60af6c1a96a2b43ae (patch)
treeb666a22fa911acd6f19634cff85d527212a303df
parentd912ad1350365ae40aebbb4a39beef931f94b8d2 (diff)
downloadscintilla-mirror-2fd5e782637b56483945a9d60af6c1a96a2b43ae.tar.gz
Changed lenpos_t to be size_t as that is WIN64 safe.
-rw-r--r--include/SString.h2
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};