Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
Base
Commits
ea2e9c56
Commit
ea2e9c56
authored
Jul 28, 2020
by
Martin Marinov
Browse files
Fix a bug in DEB_out() causing undesired new lines in the debug output
parent
c133e45f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Debug/DebOut.hh
View file @
ea2e9c56
...
...
@@ -155,8 +155,7 @@ std::string to_string(const T& _t)
#define DEB_exec_if(CC, LL, AA) DEB_if(CC, LL, AA)
#define DEB_out(LL, AA) DEB_out_if(true, LL, AA)
#define DEB_out_if(CC, LL, AA) \
DEB_if(CC, LL, deb.stream() << AA << ::Base::ENDL)
#define DEB_out_if(CC, LL, AA) DEB_if(CC, LL, deb.stream() << AA)
#define DEB_line(LL, AA) DEB_line_if(true, LL, AA)
#define DEB_line_if(CC, LL, AA) \
...
...
Martin Marinov
@mmarinov
mentioned in commit
f7647937
·
Jul 30, 2020
mentioned in commit
f7647937
mentioned in commit f7647937571d66f8903944c44286133a818ed778
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment