Fix compilation errors related to C++11's new user-defined string literals

This commit is contained in:
Ryan Prichard 2015-12-17 20:10:07 -06:00
parent 4f38a876ec
commit bbdc8b82ae
2 changed files with 4 additions and 4 deletions

View File

@ -136,7 +136,7 @@ static bool pathExists(const std::wstring &path)
static std::wstring findAgentProgram()
{
std::wstring progDir = dirname(getModuleFileName(getCurrentModule()));
std::wstring ret = progDir + L"\\"AGENT_EXE;
std::wstring ret = progDir + (L"\\" AGENT_EXE);
assert(pathExists(ret));
return ret;
}