try to prevent optimizer to remove null sink code altogether

This commit is contained in:
gabime 2019-07-17 14:41:07 +03:00
parent 1f3dea60d3
commit b640c59087
1 changed files with 2 additions and 3 deletions

View File

@ -22,10 +22,9 @@ protected:
// prevent optimizer to remove this sink altogether (and do useful check while at it).
if(msg.level == level::off)
{
printf("Should never not be called if level is off!\n");
printf("null_sink: should never not be called if level is off!\n");
abort();
}
assert(msg.level != level::off);
}
void flush_() override {}
};