From 0ad84a6920e1dc518c430bb7a4d0ce7b166f0329 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Tue, 5 Apr 2011 05:43:30 +0000 Subject: [PATCH] - stupid stupid stupid Microsoft, I CANNOT BELEIVE IT THIS TIME!!! They broke their STL implementation in VC++ 2010! This fixes a problem using the inserter class. see: http://code.google.com/p/angel-engine/issues/detail?id=34 --- source/glest_game/menu/menu_state_mods.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/glest_game/menu/menu_state_mods.cpp b/source/glest_game/menu/menu_state_mods.cpp index 429c30b8..1b5ba0a9 100644 --- a/source/glest_game/menu/menu_state_mods.cpp +++ b/source/glest_game/menu/menu_state_mods.cpp @@ -21,6 +21,8 @@ #include #include #include "cache_manager.h" +// Need the include below for vc++ 2010 because Microsoft messed up their STL! +#include #include "leak_dumper.h"