From ff145bfac5da5d8ad89fe638a7ce3dc59c39b098 Mon Sep 17 00:00:00 2001 From: Marvin Pohl Date: Fri, 19 Jun 2015 14:24:34 +0100 Subject: [PATCH] Removed unused variable --- code/FBXImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/FBXImporter.cpp b/code/FBXImporter.cpp index 30f55fc34..c3dc57881 100644 --- a/code/FBXImporter.cpp +++ b/code/FBXImporter.cpp @@ -152,7 +152,7 @@ void FBXImporter::InternReadFile( const std::string& pFile, // streaming input data would be very low. std::vector contents; contents.resize(stream->FileSize()+1); - size_t readcnt = stream->Read( &*contents.begin(), 1, contents.size()-1 ); + stream->Read( &*contents.begin(), 1, contents.size()-1 ); contents[ contents.size() - 1 ] = 0; const char* const begin = &*contents.begin();