From f2abf727a8b5dabafa1c55d5319994bc97c1c94e Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 9 May 2010 11:46:24 +0200 Subject: [PATCH] Fixed: #859 surpress the annoying "Using TR1 extensions" message --- code/nel/include/nel/misc/types_nl.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/nel/include/nel/misc/types_nl.h b/code/nel/include/nel/misc/types_nl.h index d6b735a39..3e087e5a0 100644 --- a/code/nel/include/nel/misc/types_nl.h +++ b/code/nel/include/nel/misc/types_nl.h @@ -268,12 +268,10 @@ typedef unsigned int uint; // at least 32bits (depend of processor) # define CHashMap ::std::hash_map # define CHashSet ::std::hash_set # define CHashMultiMap ::std::hash_multimap -# pragma message("Using STLport") # elif defined(NL_COMP_VC7) || defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) // VC7 through 9 # define CHashMap stdext::hash_map # define CHashSet stdext::hash_set # define CHashMultiMap stdext::hash_multimap -# pragma message("Using MS STL") # else # pragma error("You need to update your compiler") # endif @@ -337,7 +335,6 @@ template<> struct hash # define CHashMap std::tr1::unordered_map # define CHashSet std::tr1::unordered_set # define CHashMultiMap std::tr1::unordered_multimap -# pragma message("Using TR1 extensions") #endif /**