Removed unnecessary copy.

This commit is contained in:
Alex Zolotarev 2016-03-11 18:59:38 +03:00 committed by Sergey Yershov
parent 40a6823ba6
commit f80f6e214d
2 changed files with 4 additions and 4 deletions

View file

@ -310,14 +310,14 @@ string XMLFeature::GetTagValue(string const & key) const
return tag.attribute("v").value();
}
void XMLFeature::SetTagValue(string const & key, string const value)
void XMLFeature::SetTagValue(string const & key, string const & value)
{
auto tag = FindTag(m_document, key);
if (!tag)
{
tag = GetRootNode().append_child("tag");
tag.append_attribute("k") = key.data();
tag.append_attribute("v") = value.data();
tag.append_attribute("k").set_value(key.c_str());
tag.append_attribute("v").set_value(value.c_str());
}
else
{

View file

@ -150,7 +150,7 @@ public:
}
string GetTagValue(string const & key) const;
void SetTagValue(string const & key, string const value);
void SetTagValue(string const & key, string const & value);
string GetAttribute(string const & key) const;
void SetAttribute(string const & key, string const & value);