Added support for Intel c++ Composer Xe

Added support for building with Intel C++ Composer Xe
Fixed a warning thrown by it
This commit is contained in:
Drake Arconis
2012-07-08 10:28:29 -04:00
parent 81123a80f2
commit cb0f4f8f10
3 changed files with 35 additions and 5 deletions

View File

@@ -39,8 +39,8 @@
#include <hash_map>
#include <algorithm>
#elif LL_DARWIN || LL_LINUX
#if CC_GCC
# if GCC_VERSION >= 40300 // gcc 4.3 and up
#if CC_GCC || CC_ICC
# if GCC_VERSION >= 40300 || CC_ICC// gcc 4.3 or icc 11 and up
# include <backward/hashtable.h>
# elif GCC_VERSION >= 30400 // gcc 3.4 and up
# include <ext/hashtable.h>