Terse mode doesn't show terse info.
Tested in debug mode, the "mode" flag contains "ODESC_TERSE", the boolean value is set to FALSE. This is because unary operators don't return a boolean value. So the correct code is:
There are a LOT of such declarations in the code. It's probably a good time to fix them all...
Code:
bool terse = (mode & ODESC_TERSE);
Code:
bool terse = (mode & ODESC_TERSE)? TRUE: FALSE;
Comment