certi-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[certi-cvs] certi/libHLA HLAbuffer.hh


From: certi-cvs
Subject: [certi-cvs] certi/libHLA HLAbuffer.hh
Date: Fri, 22 May 2009 06:32:06 +0000

CVSROOT:        /sources/certi
Module name:    certi
Changes by:     Petr Gotthard <gotthardp>       09/05/22 06:32:06

Modified files:
        libHLA         : HLAbuffer.hh 

Log message:
        Fixed type conflict with SimGear on Windows platforms.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/libHLA/HLAbuffer.hh?cvsroot=certi&r1=1.9&r2=1.10

Patches:
Index: HLAbuffer.hh
===================================================================
RCS file: /sources/certi/certi/libHLA/HLAbuffer.hh,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- HLAbuffer.hh        2 Apr 2009 19:58:10 -0000       1.9
+++ HLAbuffer.hh        22 May 2009 06:32:06 -0000      1.10
@@ -11,7 +11,7 @@
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Lesser General Public License for more details.
 //
-// $Id: HLAbuffer.hh,v 1.9 2009/04/02 19:58:10 erk Exp $
+// $Id: HLAbuffer.hh,v 1.10 2009/05/22 06:32:06 gotthardp Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef _HLATYPES_BUFFER_HH
@@ -24,13 +24,13 @@
 
 #ifdef _MSC_VER
 typedef unsigned __int64  uint64_t;
-typedef __int64           int64_t;
+typedef signed __int64    int64_t;
 typedef unsigned __int32  uint32_t;
-typedef __int32           int32_t;
+typedef signed __int32    int32_t;
 typedef unsigned __int16  uint16_t;
-typedef __int16           int16_t;
+typedef signed __int16    int16_t;
 typedef unsigned __int8   uint8_t;
-typedef __int8            int8_t;
+typedef signed __int8     int8_t;
 #else
 #include <inttypes.h>
 #endif
@@ -182,5 +182,5 @@
 
 #endif // _HLATYPES_BUFFER_HH
 
-// $Id: HLAbuffer.hh,v 1.9 2009/04/02 19:58:10 erk Exp $
+// $Id: HLAbuffer.hh,v 1.10 2009/05/22 06:32:06 gotthardp Exp $
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]