about summary refs log tree commit diff
path: root/third_party/nix/src/libutil
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-24T22·06+0100
committerVincent Ambo <tazjin@google.com>2020-05-24T22·19+0100
commitf5aaa12f1d0f59c9953692a5df1959b82fcbb88a (patch)
tree93fef636c75ae9d4cb21e0dbc9311cb695d8eb9a /third_party/nix/src/libutil
parent838f86b0fd880b26539664140f04e5d16669dad8 (diff)
style(3p/nix): Remove 'using std::*' from xml-writer.hh r/841
See previous commit for more details on why.
Diffstat (limited to 'third_party/nix/src/libutil')
-rw-r--r--third_party/nix/src/libutil/xml-writer.hh6
1 files changed, 1 insertions, 5 deletions
diff --git a/third_party/nix/src/libutil/xml-writer.hh b/third_party/nix/src/libutil/xml-writer.hh
index 76f3c7e3a2..d6f7cddb35 100644
--- a/third_party/nix/src/libutil/xml-writer.hh
+++ b/third_party/nix/src/libutil/xml-writer.hh
@@ -7,11 +7,7 @@
 
 namespace nix {
 
-using std::list;
-using std::map;
-using std::string;
-
-typedef map<std::string, std::string> XMLAttrs;
+typedef std::map<std::string, std::string> XMLAttrs;
 
 class XMLWriter {
  private: