]> git.stg.codes - stg.git/commitdiff
Remove const qualifier from return type of assignement operator
authorMaxim Mamontov <faust.madf@gmail.com>
Wed, 31 Aug 2011 10:02:14 +0000 (13:02 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Wed, 31 Aug 2011 10:02:14 +0000 (13:02 +0300)
projects/sgauthstress/user.h

index 1aa6f9e38b68f2f86928e84759a753a25158144d..ef63a907886d7cd12991a945af53a001563f69cd 100644 (file)
@@ -15,7 +15,7 @@ class USER {
         USER(const USER & rvalue);
         ~USER();
 
-        const USER & operator=(const USER & rvalue);
+        USER & operator=(const USER & rvalue);
 
         bool InitNetwork();