Update of /cvsroot/pclasses/pclasses2/include/pclasses
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7111
Modified Files:
BasicTypes.h
Log Message:
Fixed type.
Index: BasicTypes.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/BasicTypes.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- BasicTypes.h 22 Dec 2004 17:54:38 -0000 1.1.1.1
+++ BasicTypes.h 24 Jan 2005 01:17:19 -0000 1.2
@@ -65,8 +65,8 @@
typedef unsigned long uint64_t;
#elif PCLASSES_SIZEOF__INT64 == 8
#define PCLASSES_HAVE_64BIT_INT 1
- typedef __in64 int64_t;
- typedef unsigned __in64 uint64_t;
+ typedef __int64 int64_t;
+ typedef unsigned __int64 uint64_t;
#elif PCLASSES_SIZEOF_LONG_LONG == 8
#define PCLASSES_HAVE_64BIT_INT 1
typedef long long int64_t;
|