[libcxx-commits] [PATCH] D112650: [libc++] Make __decay_copy constexpr
Arthur O'Dwyer via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Oct 27 13:21:01 PDT 2021
Quuxplusone accepted this revision.
Quuxplusone added inline comments.
This revision is now accepted and ready to land.
================
Comment at: libcxx/include/__utility/decay_copy.h:27
#if _LIBCPP_STD_VER > 17
noexcept(is_nothrow_convertible_v<_Tp, remove_reference_t<_Tp> >)
#endif
----------------
jloser wrote:
> jloser wrote:
> > Mordante wrote:
> > > jloser wrote:
> > > > Nit: pre-existing, but can we remove the extra space to cuddle the `>>`, please?
> > > Just FYI this is due to clang-tidy still being used in C++03 mode. We can change the clang-tidy language standard after switching to clang-tidy-13. (I expect make a patch for it real soon.)
> > Thanks for the context. I'd definitely be in favor of that change. :)
> Is `clang-tidy` even run on `libc++` CI? It's mentioned in `libcxx/TODO.TXT` to run `clang-tidy` on `libc++`. I notice that most llvm projects have their own `.clang-tidy` file, but `libc++` does not.
Typo for `clang-format`, I assume. :) +1 for cuddling `>>`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112650/new/
https://reviews.llvm.org/D112650
More information about the libcxx-commits
mailing list