[libcxx-commits] [libcxx] [libc++] Make `constexpr std::variant`. Implement P2231R1 (PR #83335)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Mar 3 08:37:26 PST 2024
================
@@ -22,88 +22,108 @@
#include "test_macros.h"
struct NoCopy {
- NoCopy(const NoCopy &) = delete;
- NoCopy &operator=(const NoCopy &) = default;
+ NoCopy(const NoCopy&) = delete;
----------------
huixie90 wrote:
yes this made me confused. I thought we've already clang-formatted everything and I am surprised to see formatting changes
https://github.com/llvm/llvm-project/pull/83335
More information about the libcxx-commits
mailing list