We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff862ca commit 36984d5Copy full SHA for 36984d5
Src/runcpp2/main.cpp
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
67
68
for(; currentArgIndex < argc; ++currentArgIndex)
69
{
70
- ssLOG_LINE("argv[" << currentArgIndex << "]: " << argv[currentArgIndex]);
+ ssLOG_DEBUG("argv[" << currentArgIndex << "]: " << argv[currentArgIndex]);
71
scriptArgs.push_back(std::string(argv[currentArgIndex]));
72
}
73
Src/runcpp2/runcpp2.cpp
@@ -48,7 +48,6 @@ namespace
48
49
if(!runArgs.empty())
50
51
- //TODO(NOW): Test this double quote wrapping on windows
52
for(int i = 0; i < runArgs.size(); ++i)
53
runCommand += " \"" + runArgs[i] + "\"";
54
0 commit comments