From 9fe51adcd7a5c1c22ce06db8ef333b1638d68235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 24 Jul 2018 16:59:31 +0200 Subject: [PATCH] Trade: minor code coverage excludes. --- src/Magnum/Trade/AbstractImporter.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 << ")";