Skip to content
Snippets Groups Projects
Commit b0745652 authored by Harald Scheirich's avatar Harald Scheirich
Browse files

BUG: fix incorrect initialization of bool

parent 8b279dfa
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
int
main(int argc, char** argv)
{
bool removeLog = true;
bool removeLog = false;
for (int i = 0; i < argc; ++i)
{
if (std::string(argv[i]) == "--imstk_keep_log")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment