aboutsummaryrefslogtreecommitdiff
path: root/src/vars.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/vars.cc')
-rw-r--r--src/vars.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vars.cc b/src/vars.cc
index c288be9..12c7e7e 100644
--- a/src/vars.cc
+++ b/src/vars.cc
@@ -1,11 +1,11 @@
#include <filesystem>
-#include <map>
+#include <unordered_map>
#include <string>
#include "vars.hh"
-std::map<std::string, std::string> repos;
-std::map<std::string, std::string> install_directories;
+std::unordered_map<std::string, std::string> repos;
+std::unordered_map<std::string, std::string> install_directories;
bool is_symlink_install = false;
bool is_verbose = false;