From 58510c0fbafdcf5ceed956a208fc34a65cb55358 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 21 Apr 2002 03:11:41 +0000 Subject: Changed lenpos_t to be size_t as that is WIN64 safe. --- include/SString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}; -- cgit v1.2.3