Skip to content

Commit

Permalink
examples: default constructors are not needed in these plugins.
Browse files Browse the repository at this point in the history
Probably got copied over from tests.
  • Loading branch information
mosra committed Mar 10, 2013
1 parent ae8f39a commit ca4b850
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/pluginmanager/AbstractAnimal.h
Expand Up @@ -33,7 +33,6 @@ class AbstractAnimal: public PluginManager::AbstractPlugin {
PLUGIN_INTERFACE("cz.mosra.Corrade.Examples.AbstractAnimal/1.0")

public:
AbstractAnimal() = default;
AbstractAnimal(PluginManager::AbstractPluginManager* manager, std::string plugin):
AbstractPlugin(manager, std::move(plugin)) {}

Expand Down
1 change: 0 additions & 1 deletion examples/pluginmanager/Dog.cpp
Expand Up @@ -29,7 +29,6 @@ namespace Corrade { namespace Examples {

class Dog: public AbstractAnimal {
public:
Dog() = default;
Dog(PluginManager::AbstractPluginManager* manager, std::string plugin):
AbstractAnimal(manager, std::move(plugin)) {}

Expand Down

0 comments on commit ca4b850

Please sign in to comment.