From 93e8d4d5f5a2ed0a8e0fee372eb996cbc1214be8 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 31 Mar 2015 13:23:55 +0200 Subject: [PATCH] Fix 32-bit Windows compilation issue with Eigen --- pandatool/src/daeegg/daeCharacter.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandatool/src/daeegg/daeCharacter.h b/pandatool/src/daeegg/daeCharacter.h index 4b9e86af73..c1f555394f 100644 --- a/pandatool/src/daeegg/daeCharacter.h +++ b/pandatool/src/daeegg/daeCharacter.h @@ -19,6 +19,7 @@ #include "typedReferenceCount.h" #include "typeHandle.h" #include "eggTable.h" +#include "epvector.h" #include "pre_fcollada_include.h" #include "FCollada.h" @@ -49,7 +50,7 @@ public: const FCDSceneNode *_scene_node; DaeCharacter *_character; }; - typedef pvector Joints; + typedef epvector Joints; typedef pmap JointMap; void bind_joints(JointMap &joint_map);