Merge pull request #4955

25e5a85 singleton: fix missing *this return value in operator= (monermooo-monero)
This commit is contained in:
luigi1111
2018-12-31 16:28:49 -06:00

View File

@@ -50,8 +50,8 @@ namespace Language
class Singleton
{
Singleton() {}
Singleton(Singleton &s) {}
Singleton& operator=(const Singleton&) {}
Singleton(Singleton &s) = delete;
Singleton& operator=(const Singleton&) = delete;
public:
static T* instance()
{