aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/types.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-02-21 16:28:23 +0100
committerEelco Dolstra <edolstra@gmail.com>2022-02-21 16:28:23 +0100
commitfe9afb65bb35737a144acd612170b2e284298a2f (patch)
treeacac44bb153ad9f7e5c6713220cd05cf1c17cb5c /src/libutil/types.hh
parentafcdc7606cb9c1a1603a3a51b08ac411f82795db (diff)
Remove std::set alias
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r--src/libutil/types.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh
index 130c04451..057c9021c 100644
--- a/src/libutil/types.hh
+++ b/src/libutil/types.hh
@@ -11,12 +11,11 @@
namespace nix {
-using std::set;
using std::vector;
using std::string;
typedef std::list<string> Strings;
-typedef set<string> StringSet;
+typedef std::set<string> StringSet;
typedef std::map<string, string> StringMap;
/* Paths are just strings. */
@@ -24,7 +23,7 @@ typedef std::map<string, string> StringMap;
typedef string Path;
typedef std::string_view PathView;
typedef std::list<Path> Paths;
-typedef set<Path> PathSet;
+typedef std::set<Path> PathSet;
typedef vector<std::pair<string, string>> Headers;