From 24ee3fa21ea4ffa7139bbd255c63766787bff5ef Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Thu, 11 Jan 2018 04:38:35 -0800 Subject: [PATCH] Windows build fix --- hecl/lib/Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hecl/lib/Console.cpp b/hecl/lib/Console.cpp index c804b67e0..7890d0954 100644 --- a/hecl/lib/Console.cpp +++ b/hecl/lib/Console.cpp @@ -16,7 +16,7 @@ Console::Console(CVarManager* cvarMgr) registerCommand("getCVar", "Prints the value stored in the specified Console Variable", "", std::bind(&CVarManager::getCVar, cvarMgr, std::placeholders::_1)); } -void Console::registerCommand(std::string_view name, std::string_view helpText, std::string_view usage, const std::function &)>&& func) +void Console::registerCommand(std::string_view name, std::string_view helpText, std::string_view usage, const std::function &)>&& func) { std::string lowName = name.data(); athena::utility::tolower(lowName);