diff --git a/src/Magnum/Trade/AbstractImporter.cpp b/src/Magnum/Trade/AbstractImporter.cpp index 53117ba94..e2405d5ca 100644 --- a/src/Magnum/Trade/AbstractImporter.cpp +++ b/src/Magnum/Trade/AbstractImporter.cpp @@ -523,10 +523,12 @@ const void* AbstractImporter::doImporterState() const { return nullptr; } Debug& operator<<(Debug& debug, const AbstractImporter::Feature value) { switch(value) { + /* LCOV_EXCL_START */ #define _c(v) case AbstractImporter::Feature::v: return debug << "Trade::AbstractImporter::Feature::" #v; _c(OpenData) _c(OpenState) #undef _c + /* LCOV_EXCL_STOP */ } return debug << "Trade::AbstractImporter::Feature(" << Debug::nospace << reinterpret_cast(UnsignedByte(value)) << Debug::nospace << ")";