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
commit 1aaa82cb1a
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 2 deletions

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()
{