diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-25 19:38:14 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-25 19:38:14 -0800 |
| commit | 2a246f26af6771482938d4052e08ce2fdbad92e8 (patch) | |
| tree | 0efc310d6f5a1a6f13378ec082aca035c54fa1e9 | |
| parent | 31ddf1a80393d825925cf45b4573710423d14233 (diff) | |
| download | vcpkg-2a246f26af6771482938d4052e08ce2fdbad92e8.tar.gz vcpkg-2a246f26af6771482938d4052e08ce2fdbad92e8.zip | |
Change check_throw() to check_exit()
| -rw-r--r-- | toolsrc/include/vcpkg_Sets.h | 2 |
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); |
