summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/BString.h2
-rw-r--r--include/generic.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/BString.h b/include/BString.h
index c4703f0..82fe1b5 100644
--- a/include/BString.h
+++ b/include/BString.h
@@ -20,7 +20,7 @@ class String : public Base {
String(int);
String(unsigned int);
String(int64);
- String(uint64);
+ String(Uint64);
String(double);
~String();
const char * set(const char *, va_list);
diff --git a/include/generic.h b/include/generic.h
index c31f8d3..0b16d2c 100644
--- a/include/generic.h
+++ b/include/generic.h
@@ -61,11 +61,11 @@ typedef int32 ssize_t;
#if defined __linux__ || defined sun || defined __solaris__ || defined __CYGWIN32__ || defined __MINGW32__ || defined FORCE64
typedef long long int64;
-typedef unsigned long long uint64;
+typedef unsigned long long Uint64;
#else
#if defined _WIN32
typedef _int64 int64;
-typedef unsigned _int64 uint64;
+typedef unsigned _int64 Uint64;
#else
#error Unsupported platform (need 64 bits ints definition)
#endif