diff options
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r-- | third_party/nix/src/libexpr/value-to-xml.cc | 3 |
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 160c6eba3313..d2b5c66f1f5f 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; |