From 792492afbfdae75b239339d9511a19c906c8bd85 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Wed, 31 Aug 2011 13:02:14 +0300 Subject: [PATCH] Remove const qualifier from return type of assignement operator --- projects/sgauthstress/user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.43.2