C++: Untabify, reindent, delete trailing whitespace

This commit is contained in:
Petri Lehtinen 2010-02-02 20:59:23 +02:00
parent 5b1a666cf1
commit 2b43e7dbda
3 changed files with 793 additions and 790 deletions

View File

@ -8,9 +8,12 @@
do { \
if(!((lhs) op (rhs))) { \
std::cerr << std::boolalpha; \
std::cerr << __FILE__ << '[' << __LINE__ << "]: ERROR: " << (m) << std::endl; \
std::cerr << "\ttest: " << #lhs << ' ' << #op << ' ' << #rhs << std::endl; \
std::cerr << "\tresult: " << (lhs) << ' ' << #op << ' ' << (rhs) << std::endl; \
std::cerr << __FILE__ << '[' << __LINE__ << "]: ERROR: " \
<< (m) << std::endl; \
std::cerr << "\ttest: " << #lhs << ' ' << #op << ' ' \
<< #rhs << std::endl; \
std::cerr << "\tresult: " << (lhs) << ' ' << #op << ' ' \
<< (rhs) << std::endl; \
return 1; \
} \
} while(0)