From 0d641bf48376bc1c23d8ba96308e5dec9fe02f37 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 17 Jun 2010 11:07:54 +0000 Subject: [PATCH] From Brad Christiansen, "I tried building the latest (as of Sunday) SVN version of OSG using Visual Studio 2010 and it failed due to a missing include. The build completed successfully by adding #include to nodeTrackerManipulator.cpp, which is attached." --- src/osgGA/NodeTrackerManipulator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osgGA/NodeTrackerManipulator.cpp b/src/osgGA/NodeTrackerManipulator.cpp index 1cbc18373..42b110720 100644 --- a/src/osgGA/NodeTrackerManipulator.cpp +++ b/src/osgGA/NodeTrackerManipulator.cpp @@ -15,6 +15,7 @@ #include #include #include +#include using namespace osg; using namespace osgGA;