[libcxx-commits] [PATCH] D133661: [libc++] Improve binary size when using __transaction
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Sep 23 08:36:51 PDT 2022
ldionne accepted this revision.
ldionne added inline comments.
================
Comment at: libcxx/include/__utility/exception_guard.h:97-98
+ _NOEXCEPT_(is_nothrow_move_constructible<_Rollback>::value) {}
+ __exception_guard(const __exception_guard&) = delete;
+ __exception_guard& operator=(const __exception_guard&) = delete;
+ __exception_guard& operator=(__exception_guard&&) = delete;
----------------
Just for consistency with the other branch of the `#if`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133661/new/
https://reviews.llvm.org/D133661
More information about the libcxx-commits
mailing list