From 0c1b5355f4a0210a6f1162f1302a7b69969ee4f6 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 30 Dec 2015 15:35:26 +0100 Subject: [PATCH] Coverity finding: remove not used function. --- code/OpenGEXImporter.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/code/OpenGEXImporter.cpp b/code/OpenGEXImporter.cpp index ab702b717..f260cc772 100644 --- a/code/OpenGEXImporter.cpp +++ b/code/OpenGEXImporter.cpp @@ -801,19 +801,6 @@ void OpenGEXImporter::handleColorNode( ODDLParser::DDLNode *node, aiScene *pScen } } -//------------------------------------------------------------------------------------------------ -bool isSpecialRootDir(aiString &texName) { - if (texName.length < 2) { - return false; - } - - if (texName.data[0] = '/' || texName.data[1] == '/') { - return true; - } - - return false; -} - //------------------------------------------------------------------------------------------------ void OpenGEXImporter::handleTextureNode( ODDLParser::DDLNode *node, aiScene *pScene ) { if( NULL == node ) {