Browse Source

fixed warning

Krishty 4 years ago
parent
commit
628cba9490
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AssetLib/NFF/NFFLoader.cpp

+ 1 - 1
code/AssetLib/NFF/NFFLoader.cpp

@@ -83,7 +83,7 @@ NFFImporter::~NFFImporter() {}
 
 
 // ------------------------------------------------------------------------------------------------
 // ------------------------------------------------------------------------------------------------
 // Returns whether the class can handle the format of the given file.
 // Returns whether the class can handle the format of the given file.
-bool NFFImporter::CanRead(const std::string &pFile, IOSystem * /*pIOHandler*/, bool /*checkSig*/) const {
+bool NFFImporter::CanRead(const std::string & /*pFile*/, IOSystem * /*pIOHandler*/, bool /*checkSig*/) const {
     return false;
     return false;
 }
 }