Remove pessimising moves.

This commit is contained in:
Paweł Bylica
2015-06-08 12:09:24 +02:00
parent dc462dcb6e
commit 87a56b2bfe
+1 -1
View File
@@ -109,7 +109,7 @@ string Assembly::getLocationFromSources(StringMap const& _sourceCodes, SourceLoc
if (newLinePos != string::npos)
cut = cut.substr(0, newLinePos) + "...";
return move(cut);
return cut;
}
ostream& Assembly::streamAsm(ostream& _out, string const& _prefix, StringMap const& _sourceCodes) const