[libcxx-commits] [libcxx] ee8e81b - [libc++][NFC] Fix incorrect synopsis in transform_view test

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Dec 30 12:44:17 PST 2021


Author: Louis Dionne
Date: 2021-12-30T15:43:27-05:00
New Revision: ee8e81b40e03d8f46224fab053b10b722d982357

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

LOG: [libc++][NFC] Fix incorrect synopsis in transform_view test

Added: 
    

Modified: 
    libcxx/test/std/ranges/range.adaptors/range.transform/iterator/iter_move.pass.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/test/std/ranges/range.adaptors/range.transform/iterator/iter_move.pass.cpp b/libcxx/test/std/ranges/range.adaptors/range.transform/iterator/iter_move.pass.cpp
index 4ec70792d07e8..d492df53e80e7 100644
--- a/libcxx/test/std/ranges/range.adaptors/range.transform/iterator/iter_move.pass.cpp
+++ b/libcxx/test/std/ranges/range.adaptors/range.transform/iterator/iter_move.pass.cpp
@@ -10,7 +10,8 @@
 // UNSUPPORTED: libcpp-no-concepts
 // UNSUPPORTED: libcpp-has-no-incomplete-ranges
 
-// transform_view::<iterator>::operator[]
+// friend constexpr decltype(auto) iter_move(const iterator& i)
+//    noexcept(noexcept(invoke(i.parent_->fun_, *i.current_)))
 
 #include <ranges>
 


        


More information about the libcxx-commits mailing list