Browse Source

Trade: no default argument for internal function.

It's never called from outside, so no need for convenience features.
Also prevents accidents like forgetting to pass the filePath to it.
pull/231/head
Vladimír Vondruš 8 years ago
parent
commit
d0d71d1c4e
  1. 2
      src/Magnum/Trade/AbstractImporter.h

2
src/Magnum/Trade/AbstractImporter.h

@ -535,7 +535,7 @@ class MAGNUM_EXPORT AbstractImporter: public PluginManager::AbstractManagingPlug
virtual void doOpenData(Containers::ArrayView<const char> data);
/** @brief Implementation for @ref openState() */
virtual void doOpenState(const void* state, const std::string& filePath = {});
virtual void doOpenState(const void* state, const std::string& filePath);
/** @brief Implementation for @ref close() */
virtual void doClose() = 0;

Loading…
Cancel
Save