Core/Player: Fixed warning

This commit is contained in:
vincent-michael
2017-06-04 19:53:13 +02:00
parent aae1a68ad2
commit 61231f7e12
3 changed files with 3 additions and 3 deletions

View File

@@ -352,7 +352,7 @@ Player::Player(WorldSession* session) : Unit(true), m_sceneMgr(this)
_advancedCombatLoggingEnabled = false;
_restMgr = std::move(Trinity::make_unique<RestMgr>(this));
_restMgr = Trinity::make_unique<RestMgr>(this);
}
Player::~Player()

View File

@@ -14,7 +14,7 @@ CollectSourceFiles(
add_library(extractor_common STATIC ${PRIVATE_SOURCES})
target_link_libraries(extractor_common
target_link_libraries(extractor_common
PUBLIC
casc
common)

View File

@@ -27,7 +27,7 @@ int main(int argc, char* argv[])
Trinity::Banner::Show("VMAP assembler", [](char const* text) { std::cout << text << std::endl; }, nullptr);
std::string src = "Buildings";
std::string dest = "vmaps";
std::string dest = "vmaps";
if (argc > 3)
{