Browse Source

Trade: minor code coverage excludes.

pull/191/head
Vladimír Vondruš 8 years ago
parent
commit
9fe51adcd7
  1. 2
      src/Magnum/Trade/AbstractImporter.cpp

2
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<void*>(UnsignedByte(value)) << Debug::nospace << ")";

Loading…
Cancel
Save