From c01d81c882c874ac6f2a886a40426ff33c541e68 Mon Sep 17 00:00:00 2001 From: rave3d Date: Sun, 4 Sep 2011 07:40:25 +0000 Subject: [PATCH] BUGFIX VC9 does not support unordered_map git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1075 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- code/STEPFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/STEPFile.h b/code/STEPFile.h index aa32fe8d9..be77a2ec2 100644 --- a/code/STEPFile.h +++ b/code/STEPFile.h @@ -47,7 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include // -#if _MSC_VER >= 1500 || (defined __GNUC___) +#if _MSC_VER > 1500 || (defined __GNUC___) # define ASSIMP_STEP_USE_UNORDERED_MULTIMAP # else # define step_unordered_map map