Skip to content

Commit 36984d5

Browse files
Changing print to debug and removed TODO
1 parent ff862ca commit 36984d5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Src/runcpp2/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
6767

6868
for(; currentArgIndex < argc; ++currentArgIndex)
6969
{
70-
ssLOG_LINE("argv[" << currentArgIndex << "]: " << argv[currentArgIndex]);
70+
ssLOG_DEBUG("argv[" << currentArgIndex << "]: " << argv[currentArgIndex]);
7171
scriptArgs.push_back(std::string(argv[currentArgIndex]));
7272
}
7373

Src/runcpp2/runcpp2.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ namespace
4848

4949
if(!runArgs.empty())
5050
{
51-
//TODO(NOW): Test this double quote wrapping on windows
5251
for(int i = 0; i < runArgs.size(); ++i)
5352
runCommand += " \"" + runArgs[i] + "\"";
5453
}

0 commit comments

Comments
 (0)