Check-in Number:
|
4585 | |
Date: |
2004-May-27 23:33:31 (local)
2004-May-27 21:33:31 (UTC) |
User: | ms |
Branch: | |
Comment: |
remove all usage of fundamental type 'long long', because it is
not specified by the ISO C++ (14882) standard. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_gui.h 1.78 -> 1.79
--- as_gui.h 2003/11/20 11:31:20 1.78
+++ as_gui.h 2004/05/27 21:33:31 1.79
@@ -98,8 +98,6 @@
typedef unsigned int U64;
#elif (SIZEOF_LONG == 8)
typedef unsigned long U64;
-#elif (SIZEOF_LONG_LONG == 8)
-typedef unsigned long long U64;
#else
?==Error: Undefined 64 bit type
#endif // U64
@@ -110,8 +108,6 @@
typedef unsigned int U64;
#elif (4 == 8)
typedef unsigned long U64;
-#elif (8 == 8)
-typedef unsigned long long U64;
#else
?==Error: Undefined 64 bit type
#endif
|
|
ossp-pkg/as/as-gui/configure.in 1.24 -> 1.25
--- configure.in 2003/11/20 11:31:20 1.24
+++ configure.in 2004/05/27 21:33:31 1.25
@@ -110,7 +110,6 @@
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
-AC_CHECK_SIZEOF(long long)
enable_shared=no
export enable_shared
|
|