[libcxx-commits] [PATCH] D97115: [libc++] Make chars_format a bitmask type.

Arthur O'Dwyer via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Apr 13 11:36:44 PDT 2021


Quuxplusone accepted this revision.
Quuxplusone added a comment.
This revision is now accepted and ready to land.

LGTM % one last clang-format-introduced whitespace typo!



================
Comment at: libcxx/test/std/utilities/charconv/charconv.syn/chars_format.pass.cpp:66
+static_assert(std::is_same<std::chars_format, decltype(~x)>::value, "");
+static_assert(std::is_same<std::chars_format, decltype(x& x)>::value, "");
+static_assert(std::is_same<std::chars_format, decltype(x | x)>::value, "");
----------------
`/x&/x &/`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D97115/new/

https://reviews.llvm.org/D97115



More information about the libcxx-commits mailing list