Removed C++11 from the code.

Make Dirk ungrumpy

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-11-08 22:01:05 -02:00 committed by Dirk Hohndel
parent 761c3e4718
commit 4ddf4f6d83
3 changed files with 6 additions and 9 deletions

View file

@ -12,8 +12,8 @@ public:
QList<ISocialNetworkIntegration*> socialNetworkIntegrationPlugins() const;
private:
PluginManager();
PluginManager(const PluginManager&) = delete;
PluginManager& operator=(const PluginManager&) = delete;
PluginManager(const PluginManager&){};
PluginManager& operator=(const PluginManager&){};
};
#endif