splay-tree.h (libi_uhostptr_t, [...]): Adjust types work-a-round whitespace problem...
authorKai Tietz <kai.tietz@onevision.com>
Thu, 12 Jul 2007 13:08:49 +0000 (13:08 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Thu, 12 Jul 2007 13:08:49 +0000 (13:08 +0000)
* splay-tree.h (libi_uhostptr_t, libi_shostptr_t): Adjust types
work-a-round whitespace problem in gcc gengtype.

From-SVN: r126587

include/ChangeLog
include/splay-tree.h

index 9700c24fd65581c5b9e9ba35bdd9c2e20aafba33..852d90c2ea04ba9bed0df43ae33405157190643d 100644 (file)
@@ -1,5 +1,8 @@
 2007-07-12  Kai Tietz   <kai.tietz@onevision.com>
 
+       * splay-tree.h (libi_uhostptr_t, libi_shostptr_t): Adjust types
+       work-a-round whitespace problem in gcc gengtype.
+
        * splay-tree.h (libi_uhostptr_t, libi_shostptr_t): New types,
        needed for WIN64 when a long is not wide enough for a pointer.
         (splay_tree_key, splay_tree_value): Use the new types.
index 996d362ef83065c880b9b1f4213ce706b5dcaff2..7df1a7c7b98c256073621ae5ab474c6d83ffa8c1 100644 (file)
@@ -37,11 +37,11 @@ extern "C" {
 #include "ansidecl.h"
 
 #ifndef _WIN64
-  typedef unsigned long int  libi_uhostptr_t;
-  typedef long int           libi_shostptr_t;
+typedef unsigned long int libi_uhostptr_t;
+typedef long int libi_shostptr_t;
 #else
-  typedef unsigned long long libi_uhostptr_t;
-  typedef long long          libi_shostptr_t;
+typedef unsigned long long libi_uhostptr_t;
+typedef long long libi_shostptr_t;
 #endif
 
 #ifndef GTY