From c882ef841f3496d2d0e9c8637c3461b98e0c135a Mon Sep 17 00:00:00 2001 From: Alexander Gessler Date: Thu, 26 Jul 2012 04:03:55 +0200 Subject: [PATCH] - fbx: fix boost compile error. --- code/FBXConverter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/FBXConverter.cpp b/code/FBXConverter.cpp index 63c2a5dd2..0c67bb3d9 100644 --- a/code/FBXConverter.cpp +++ b/code/FBXConverter.cpp @@ -1074,7 +1074,7 @@ private: } // key (time), value, mapto (component index) - typedef boost::tuple< KeyTimeList*, KeyValueList*, unsigned int > KeyFrameList; + typedef boost::tuple< const KeyTimeList*, const KeyValueList*, unsigned int > KeyFrameList; typedef std::vector KeyFrameListList;