aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-03-22 16:47:03 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-03-22 16:47:03 -0700
commitc7664d1538c8ca50aafce6d90b20feb689506659 (patch)
treeb222663025c558a99d935e79ade773d63958fea5 /toolsrc/include
parentbc4fd2653bba4b22b2a9b94a5f22ee0e253413b5 (diff)
parent637c9bc0f012e402f5cff5e5f9ac1ca993f89ab8 (diff)
downloadvcpkg-c7664d1538c8ca50aafce6d90b20feb689506659.tar.gz
vcpkg-c7664d1538c8ca50aafce6d90b20feb689506659.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/build.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/build.h b/toolsrc/include/vcpkg/build.h
index 8c4d7b575..1c22d39d8 100644
--- a/toolsrc/include/vcpkg/build.h
+++ b/toolsrc/include/vcpkg/build.h
@@ -209,6 +209,11 @@ namespace vcpkg::Build
{
std::string key;
std::string value;
+
+ bool operator<(const AbiEntry& other) const
+ {
+ return key < other.key || (key == other.key && value < other.value);
+ }
};
struct AbiTagAndFile