From 7fd9c3dc980a2280ba2f781f3022730b43bc0e6b Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sat, 5 Aug 2017 18:54:17 +0200 Subject: [PATCH] =?utf8?q?=C2=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- code/FBXDocument.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/FBXDocument.cpp b/code/FBXDocument.cpp index 9b6e737..b19ce4c 100644 --- a/code/FBXDocument.cpp +++ b/code/FBXDocument.cpp @@ -292,11 +292,10 @@ Document::~Document() } // ------------------------------------------------------------------------------------------------ -static const int LowerSupportedVersion = 7100; -static const int UpperSupportedVersion = 7400; +static const unsigned int LowerSupportedVersion = 7100; +static const unsigned int UpperSupportedVersion = 7400; -void Document::ReadHeader() -{ +void Document::ReadHeader() { // Read ID objects from "Objects" section const Scope& sc = parser.GetRootScope(); const Element* const ehead = sc["FBXHeaderExtension"]; -- 2.7.4