about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value-to-xml.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r--third_party/nix/src/libexpr/value-to-xml.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/value-to-xml.cc b/third_party/nix/src/libexpr/value-to-xml.cc
index 160c6eba33..d2b5c66f1f 100644
--- a/third_party/nix/src/libexpr/value-to-xml.cc
+++ b/third_party/nix/src/libexpr/value-to-xml.cc
@@ -8,7 +8,8 @@
 
 namespace nix {
 
-static XMLAttrs singletonAttrs(const string& name, const string& value) {
+static XMLAttrs singletonAttrs(const std::string& name,
+                               const std::string& value) {
   XMLAttrs attrs;
   attrs[name] = value;
   return attrs;