From eb6248176690c5b728a233e2f63f4329965a637c Mon Sep 17 00:00:00 2001 From: KimLS Date: Thu, 3 Jul 2014 23:35:19 -0700 Subject: [PATCH] Missing return value --- common/MySQLRequestRow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/MySQLRequestRow.cpp b/common/MySQLRequestRow.cpp index d00cbc835..46bdaffd9 100644 --- a/common/MySQLRequestRow.cpp +++ b/common/MySQLRequestRow.cpp @@ -26,6 +26,8 @@ MySQLRequestRow& MySQLRequestRow::operator=(MySQLRequestRow& moveItem) moveItem.m_Result = nullptr; moveItem.m_MySQLRow = nullptr; + + return *this; } MySQLRequestRow::MySQLRequestRow(MYSQL_RES *result)