Browse Source

Fixed pedantic compiler warning.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
78ce126cbb
  1. 2
      src/Trade/AbstractImporter.h

2
src/Trade/AbstractImporter.h

@ -82,7 +82,7 @@ class AbstractImporter: public Corrade::PluginManager::Plugin {
/** @brief Features supported by this importer */ /** @brief Features supported by this importer */
enum Feature { enum Feature {
OpenFile = 0x01, /**< Can open files specified by filename */ OpenFile = 0x01, /**< Can open files specified by filename */
OpenStream = 0x02, /**< Can open files from input streams */ OpenStream = 0x02 /**< Can open files from input streams */
}; };
/** @brief Constructor */ /** @brief Constructor */

Loading…
Cancel
Save