* splay-tree.h (libi_uhostptr_t): Add gcc specific
	__extension__ for long long type case to silent cX9.
	(libi_shostptr_t): Likewise.
This commit is contained in:
Kai Tietz
2009-10-23 15:06:33 +00:00
parent 959684bf05
commit 5d74ab42d5
2 changed files with 12 additions and 0 deletions

View File

@ -41,7 +41,13 @@ extern "C" {
typedef unsigned long int libi_uhostptr_t;
typedef long int libi_shostptr_t;
#else
#ifdef __GNUC__
__extension__
#endif
typedef unsigned long long libi_uhostptr_t;
#ifdef __GNUC__
__extension__
#endif
typedef long long libi_shostptr_t;
#endif