From 7808fc8a0944726cc036d107cd71ee429bd8a8e9 Mon Sep 17 00:00:00 2001 From: Marianne Gagnon Date: Sat, 10 May 2014 20:50:18 -0400 Subject: [PATCH] Yet another fix to pre-c++2011 compilation..... --- src/physics/irr_debug_drawer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physics/irr_debug_drawer.hpp b/src/physics/irr_debug_drawer.hpp index f106ea5da..b384f12bd 100644 --- a/src/physics/irr_debug_drawer.hpp +++ b/src/physics/irr_debug_drawer.hpp @@ -75,7 +75,7 @@ public: void setDebugMode(DebugModeType mode); void beginNextFrame(); - const std::map>& getLines() const { return m_lines; } + const std::map >& getLines() const { return m_lines; } }; // IrrDebugDrawer #endif