From 7ecc6e574318bcabde80eb8b9f6bc83ad160ceb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A4r=20Winzell?= Date: Sun, 5 Nov 2017 23:08:32 -0800 Subject: [PATCH] Fix build on Windows. No vectors of const objects. Got it. Makes sense. --- src/Fbx2Raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fbx2Raw.cpp b/src/Fbx2Raw.cpp index 297cc56..fa74e37 100644 --- a/src/Fbx2Raw.cpp +++ b/src/Fbx2Raw.cpp @@ -495,7 +495,7 @@ public: const FbxDouble defaultDeform; // one for each FbxShape - std::vector targetShapes {}; + std::vector targetShapes {}; // always the size of the scene's animation stack; can and will contain nulls std::vector animations {};