mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-03 18:45:01 +00:00
Fix Linux build warnings
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user