From: Karol Pawlowski Date: Fri, 15 Mar 2013 16:34:48 +0000 (+0100) Subject: Compilation Warnings X-Git-Tag: 2.2.1_release~9^2~141 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b60d342d97726d9a588bf57a61920eac8b1bd2e;p=framework%2Fweb%2Fwrt-commons.git Compilation Warnings [Issue#] N/A [Bug] Compilation warnings [Cause] N/A [Solution] Remove them [Verification] Check buildbot status Change-Id: Iebaf2b8cf9cb2ec261b188a572728385a5dc286d --- diff --git a/modules/utils/src/path.cpp b/modules/utils/src/path.cpp index 6590e19..d2867d4 100644 --- a/modules/utils/src/path.cpp +++ b/modules/utils/src/path.cpp @@ -250,16 +250,19 @@ Path Path::operator/(const char * part) const Path & Path::operator/=(const DPL::String& part) { Append(ToUTF8String(part)); + return *this; } Path & Path::operator/=(const std::string& part) { Append(part); + return *this; } Path & Path::operator/=(const char * part) { Append(std::string(part)); + return *this; } void Path::Append(const std::string& part)