#include <ext/hash_map>
and on my home machine (GCC 4.1.1) it is in
#include <hash_map>
To get the source to compile on both machines I used the following precompiler directives:
#if ( __GNUC__ == 4 && ( __GNUC_MINOR__ == 2 ) )
#include <ext/hash_map>
#else
#include <hash_map>
#endif
Note that if you need finer granularity there is also a __GNUC_PATCHLEVEL__ . So GCC version 4.2.1: __GNUC__ == 4, __GNUC_MINOR__ == 2 and __GNUC_PATCHLEVEL__ == 1.
This technique can also be used:
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100
+ __GNUC_PATCHLEVEL__)
...
/* Test for GCC > 3.2.0 */
#if GCC_VERSION > 30200
No comments:
Post a Comment