Fix inaccurate coverage caused by LOG (#868)

Fix #845
This commit is contained in:
cyan317
2023-09-21 16:19:53 +01:00
committed by GitHub
parent 0eaaa1fb31
commit 44527140f0
3 changed files with 7 additions and 0 deletions

View File

@@ -93,12 +93,16 @@ using SourceLocationType = SourceLocation;
*
* Note: Currently this introduces potential shadowing (unlikely).
*/
#ifndef COVERAGE_ENABLED
#define LOG(x) \
if (auto clio_pump__ = x; not clio_pump__) \
{ \
} \
else \
clio_pump__
#else
#define LOG(x) x
#endif
/**
* @brief Custom severity levels for @ref util::Logger.