Skip to content
Snippets Groups Projects
Commit 6cb767a8 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: print mask, not number in tNumeric (i.e. restore intended behaviour)

parent cfb08260
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ using namespace std;
union_t u = { x }; \
os << setprecision(p) << left << setw(17) << #x << " = " \
<< setw(p+6) << x << " (" << hex << showbase << setw(p+1) \
<< u.value << dec << ")" << endl; \
<< u.mask << dec << ")" << endl; \
}
#define showNumbers(T) \
{ LOG_INFO("showNumbers("#T")"); \
......
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