Browse Source

Replace unique_ptr with raw pointer

Joshua Hyatt 5 years ago
parent
commit
cc2613f264
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AssetLib/FBX/FBXImporter.cpp

+ 1 - 1
code/AssetLib/FBX/FBXImporter.cpp

@@ -141,7 +141,7 @@ void FBXImporter::SetupProperties(const Importer *pImp) {
 // ------------------------------------------------------------------------------------------------
 // Imports the given file into the given scene structure.
 void FBXImporter::InternReadFile(const std::string &pFile, aiScene *pScene, IOSystem *pIOHandler) {
-	std::unique_ptr<IOStream> stream(pIOHandler->Open(pFile, "rb"));
+	IOStream* stream = pIOHandler->Open(pFile, "rb");
 	if (!stream) {
 		ThrowException("Could not open file for reading");
 	}