diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-24T22·06+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-24T22·19+0100 |
commit | f5aaa12f1d0f59c9953692a5df1959b82fcbb88a (patch) | |
tree | 93fef636c75ae9d4cb21e0dbc9311cb695d8eb9a /third_party/nix/src/libutil/xml-writer.hh | |
parent | 838f86b0fd880b26539664140f04e5d16669dad8 (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/xml-writer.hh')
-rw-r--r-- | third_party/nix/src/libutil/xml-writer.hh | 6 |
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 76f3c7e3a2f4..d6f7cddb35ac 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: |