diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-31 21:00:00 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-31 21:00:00 (GMT) |
commit | 5056de8d1ce8bd6247604ff6523cc4894ec7de4e (patch) | |
tree | ae21fd26005474aaac4232d3cd6bc7df34d349fb /tests/tests-common.cc | |
parent | a15c89922e347f6b92e7ddc20e6d5fcd35b207ce (diff) |
bugfix: scad files without a newline as the last character could leave a commented out line open, shadowing command-line parameters. Fixes #76
Diffstat (limited to 'tests/tests-common.cc')
-rw-r--r-- | tests/tests-common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests-common.cc b/tests/tests-common.cc index 1f19c59..1694a74 100644 --- a/tests/tests-common.cc +++ b/tests/tests-common.cc @@ -25,7 +25,7 @@ AbstractModule *parsefile(const char *filename) text << buffer; } fclose(fp); - text << commandline_commands; + text << "\n" << commandline_commands; root_module = parse(text.str().c_str(), fileInfo.absolutePath().toLocal8Bit(), false); } return root_module; |