Skip to content
Snippets Groups Projects

WIP: convert uniqueptrs in map to shared pointers to avoid Linux compile error...

Closed Jan Delember requested to merge fix/uniqueptr_Linux_error into develop
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline

Files

@@ -6,7 +6,7 @@ LogFileStream* LogFileManager::GetLogFileStream(FString FilePath, FString FileNa
if (Streams.Contains(Full_Path))
return Streams[Full_Path].Get();
else
Streams.Add(Full_Path, MakeUnique<LogFileStream>(FilePath, FileName));
Streams.Add(Full_Path, MakeShared<LogFileStream>(FilePath, FileName));
return Streams[Full_Path].Get();
}
Loading