aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorCurtis.Bezault <curtbezault@gmail.com>2019-07-24 14:24:49 -0700
committerCurtis.Bezault <curtbezault@gmail.com>2019-07-24 14:24:49 -0700
commit0c7669d009548616aeb754276deea974ba7a53c3 (patch)
tree655c0433349190df021881796e5ac280152d36e4 /toolsrc/include
parentd68b9a08b1edfe80b77fd65afd21faffc81b162b (diff)
downloadvcpkg-0c7669d009548616aeb754276deea974ba7a53c3.tar.gz
vcpkg-0c7669d009548616aeb754276deea974ba7a53c3.zip
store fs::path instead of std::string
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/binaryparagraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg/binaryparagraph.h b/toolsrc/include/vcpkg/binaryparagraph.h
index 8099367c2..d75e4abb1 100644
--- a/toolsrc/include/vcpkg/binaryparagraph.h
+++ b/toolsrc/include/vcpkg/binaryparagraph.h
@@ -3,7 +3,7 @@
#include <vcpkg/packagespec.h>
#include <vcpkg/sourceparagraph.h>
-#include <unordered_map>
+#include <map>
namespace vcpkg
{
@@ -40,7 +40,7 @@ namespace vcpkg
std::vector<std::string> default_features;
std::vector<std::string> depends;
std::string abi;
- std::unordered_map<std::string, std::string> external_files;
+ std::map<fs::path, std::string> external_files;
mutable ConsistencyState consistency = ConsistencyState::UNKNOWN;
};