From df71c8ff0aa53c252454fde43fa1aeffe773e28b Mon Sep 17 00:00:00 2001 From: owilliamailliwo <23960022aa> Date: Sat, 8 Jun 2019 16:38:59 +0800 Subject: [PATCH] Fix compile error. --- src/gltf/properties/AnimationData.cpp | 1 - src/gltf/properties/AnimationData.hpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gltf/properties/AnimationData.cpp b/src/gltf/properties/AnimationData.cpp index 02b3969..3c3d2e5 100644 --- a/src/gltf/properties/AnimationData.cpp +++ b/src/gltf/properties/AnimationData.cpp @@ -10,7 +10,6 @@ #include -#include "AccessorData.hpp" #include "NodeData.hpp" AnimationData::AnimationData(std::string name) diff --git a/src/gltf/properties/AnimationData.hpp b/src/gltf/properties/AnimationData.hpp index 798c3a0..bd1a500 100644 --- a/src/gltf/properties/AnimationData.hpp +++ b/src/gltf/properties/AnimationData.hpp @@ -9,6 +9,7 @@ #pragma once #include "gltf/Raw2Gltf.hpp" +#include "AccessorData.hpp" struct AnimationData : Holdable { AnimationData(std::string name);