diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-09 17:51:59 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-09 18:00:56 -0800 |
commit | b8c71ef6cd3c5724be620725087c11aae290314a (patch) | |
tree | 7077fc2b2501e2144e756210d58edaa0d49cee3c | |
parent | a48494d2fbed58c751e9b7e8fbff88582f9b2d02 (diff) | |
download | subsurface-b8c71ef6cd3c5724be620725087c11aae290314a.tar.gz |
Remove empty implementations
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | subsurface-core/pluginmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subsurface-core/pluginmanager.h b/subsurface-core/pluginmanager.h index 19e88b8c2..3f43b5db1 100644 --- a/subsurface-core/pluginmanager.h +++ b/subsurface-core/pluginmanager.h @@ -12,8 +12,8 @@ public: QList<ISocialNetworkIntegration*> socialNetworkIntegrationPlugins() const; private: PluginManager(); - PluginManager(const PluginManager&){}; - PluginManager& operator=(const PluginManager&){}; + PluginManager(const PluginManager&); + PluginManager& operator=(const PluginManager&); }; -#endif
\ No newline at end of file +#endif |