[Issue#] N/A
[Bug] Compilation warnings
[Cause] N/A
[Solution] Remove them
[Verification] Check buildbot status
Change-Id: Iebaf2b8cf9cb2ec261b188a572728385a5dc286d
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)