From 6798fe4c2520542266be85715cbe04f736760306 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 31 Jul 2010 10:17:06 +0000 Subject: [PATCH] From Brad Christiansen, "To build OSG using Visual Studio 2010 Terrain.cpp requires #include . This is a very common fix when using 2010 due to changes in Microsoft STL. " --- src/osgTerrain/Terrain.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osgTerrain/Terrain.cpp b/src/osgTerrain/Terrain.cpp index 3f6320794..3670dedfa 100644 --- a/src/osgTerrain/Terrain.cpp +++ b/src/osgTerrain/Terrain.cpp @@ -15,6 +15,8 @@ #include #include +#include + #include using namespace osg;