aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-25 19:38:14 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-25 19:38:14 -0800
commit2a246f26af6771482938d4052e08ce2fdbad92e8 (patch)
tree0efc310d6f5a1a6f13378ec082aca035c54fa1e9 /toolsrc/include
parent31ddf1a80393d825925cf45b4573710423d14233 (diff)
downloadvcpkg-2a246f26af6771482938d4052e08ce2fdbad92e8.tar.gz
vcpkg-2a246f26af6771482938d4052e08ce2fdbad92e8.zip
Change check_throw() to check_exit()
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Sets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Sets.h b/toolsrc/include/vcpkg_Sets.h
index 6dec95b89..ec4800864 100644
--- a/toolsrc/include/vcpkg_Sets.h
+++ b/toolsrc/include/vcpkg_Sets.h
@@ -8,7 +8,7 @@ namespace vcpkg::Sets
template <typename T, typename Container>
void remove_all(std::unordered_set<T>* input_set, Container remove_these)
{
- Checks::check_throw(input_set != nullptr, "Input set cannot be null");
+ Checks::check_exit(input_set != nullptr, "Input set cannot be null");
for (const T& r : remove_these)
{
input_set->erase(r);