[libcxx-commits] [libcxx] [libc++] Add input validation for set_intersection() in debug mode. (PR #101508)

Iuri Chaer via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 11 13:59:59 PST 2024


================
@@ -95,6 +98,14 @@ __set_intersection(
     _Compare&& __comp,
     std::forward_iterator_tag,
     std::forward_iterator_tag) {
+#if _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_DEBUG
+  if (!__libcpp_is_constant_evaluated()) {
----------------
ichaer wrote:

Yep, you're both right, that was bogus! Thanks for challenging me on it :).

https://github.com/llvm/llvm-project/pull/101508


More information about the libcxx-commits mailing list