[libcxx-commits] [libcxx] 15cef42 - [libc++][NFC] Remove trailing whitespace on line and clang-format

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 1 12:21:18 PST 2023


Author: Louis Dionne
Date: 2023-03-01T15:21:05-05:00
New Revision: 15cef42696887082179192e4ceb7c20093268ce1

URL: https://github.com/llvm/llvm-project/commit/15cef42696887082179192e4ceb7c20093268ce1
DIFF: https://github.com/llvm/llvm-project/commit/15cef42696887082179192e4ceb7c20093268ce1.diff

LOG: [libc++][NFC] Remove trailing whitespace on line and clang-format

This broke the CI after 813e1da974 was checked in.

Added: 
    

Modified: 
    libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp b/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp
index 9adf7d8696273..8b92eb25761bf 100644
--- a/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp
+++ b/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp
@@ -99,8 +99,11 @@ void test() {
 #endif
 
 #if TEST_STD_VER > 17
- static_assert(std::is_same_v<typename R::iterator_concept, std::conditional_t<std::is_same_v<typename R::iterator_concept, 
-std::contiguous_iterator_tag>, std::random_access_iterator_tag, typename R::iterator_concept>>);
+  static_assert(
+      std::is_same_v<typename R::iterator_concept,
+                     std::conditional_t<std::is_same_v<typename R::iterator_concept, std::contiguous_iterator_tag>,
+                                        std::random_access_iterator_tag,
+                                        typename R::iterator_concept>>);
 #endif
 }
 


        


More information about the libcxx-commits mailing list