Fix Linux build warnings

This commit is contained in:
notmatthewbeshay
2026-03-14 04:37:55 +11:00
parent 44ade1f2b2
commit 0249bfd2bf
47 changed files with 183 additions and 60 deletions

View File

@@ -1,4 +1,5 @@
#include "../Platform/stdafx.h"
#include <utility>
#include "../Util/NumberFormatters.h"
#include "StatFormatter.h"
#include "Stats.h"
@@ -44,7 +45,7 @@ Stat *Stat::postConstruct()
#ifdef __PS3__
Stats::statsById->emplace(id1 );// assert(0); // MGH - TODO - FIX - find out where this move function comes from
#else
Stats::statsById->emplace( move(id1) );
Stats::statsById->emplace(std::move(id1));
#endif // __PS3__
return this;