aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/types.hh
diff options
context:
space:
mode:
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 e3aca20c9..130c04451 100644
--- a/src/libutil/types.hh
+++ b/src/libutil/types.hh
@@ -11,12 +11,11 @@
namespace nix {
-using std::list;
using std::set;
using std::vector;
using std::string;
-typedef list<string> Strings;
+typedef std::list<string> Strings;
typedef set<string> StringSet;
typedef std::map<string, string> StringMap;
@@ -24,7 +23,7 @@ typedef std::map<string, string> StringMap;
typedef string Path;
typedef std::string_view PathView;
-typedef list<Path> Paths;
+typedef std::list<Path> Paths;
typedef set<Path> PathSet;
typedef vector<std::pair<string, string>> Headers;