From: Maxim Mamontov Date: Wed, 31 Aug 2011 10:02:14 +0000 (+0300) Subject: Remove const qualifier from return type of assignement operator X-Git-Tag: 2.408-alpha~17 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/792492afbfdae75b239339d9511a19c906c8bd85 Remove const qualifier from return type of assignement operator --- diff --git a/projects/sgauthstress/user.h b/projects/sgauthstress/user.h index 1aa6f9e3..ef63a907 100644 --- a/projects/sgauthstress/user.h +++ b/projects/sgauthstress/user.h @@ -15,7 +15,7 @@ class USER { USER(const USER & rvalue); ~USER(); - const USER & operator=(const USER & rvalue); + USER & operator=(const USER & rvalue); bool InitNetwork();