diff options
Diffstat (limited to 'src/xml/XmlNode.cpp')
-rw-r--r-- | src/xml/XmlNode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml/XmlNode.cpp b/src/xml/XmlNode.cpp index 41bbed4d..c9b73c50 100644 --- a/src/xml/XmlNode.cpp +++ b/src/xml/XmlNode.cpp @@ -31,7 +31,7 @@ XmlElementNode::~XmlElementNode() { } } -void XmlElementNode::AddAttribute(String key, String value) { +void XmlElementNode::AddAttribute(std::string key, std::string value) { attributes_[std::move(key)] = std::move(value); } |