[libcxx-commits] [PATCH] D123466: [libcxx][ranges] add views::join adaptor object. added test coverage to join_view

Nikolas Klauser via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Apr 13 02:11:21 PDT 2022


philnik added inline comments.


================
Comment at: libcxx/test/std/ranges/range.adaptors/range.join.view/adaptor.pass.cpp:37
+concept CanBePiped = requires(View&& view, T&& t) {
+                       { std::forward<View>(view) | std::forward<T>(t) };
+                     };
----------------
huixie90 wrote:
> var-const wrote:
> > Nit: I think concepts are usually indented 2 (sometimes 4) spaces in our code base, I'd move this line way left.
> lol. I adopted your suggestion but arc linter put the indentation back. what is the command to disable arc linter?
`--nolint`


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D123466



More information about the libcxx-commits mailing list