[libcxx-commits] [libcxx] 66c65f0 - [libc++][iterator][NFC] Fixed copy&paste mistake in comment (#173879)

via libcxx-commits libcxx-commits at lists.llvm.org
Mon Dec 29 17:06:22 PST 2025


Author: Hristo Hristov
Date: 2025-12-30T09:06:18+08:00
New Revision: 66c65f0132d059662bb86ee7a49c38fcf1fd2b27

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

LOG: [libc++][iterator][NFC] Fixed copy&paste mistake in comment (#173879)

Added: 
    

Modified: 
    libcxx/include/__iterator/iter_move.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__iterator/iter_move.h b/libcxx/include/__iterator/iter_move.h
index 5cc16152593c3..a726b6e329e90 100644
--- a/libcxx/include/__iterator/iter_move.h
+++ b/libcxx/include/__iterator/iter_move.h
@@ -40,7 +40,7 @@ void iter_move() = delete;
 
 template <class _Tp>
 concept __unqualified_iter_move = __class_or_enum<remove_cvref_t<_Tp>> && requires(_Tp&& __t) {
-  // NOLINTNEXTLINE(libcpp-robust-against-adl) iter_swap ADL calls should only be made through ranges::iter_swap
+  // NOLINTNEXTLINE(libcpp-robust-against-adl) iter_move ADL calls should only be made through ranges::iter_move
   iter_move(std::forward<_Tp>(__t));
 };
 


        


More information about the libcxx-commits mailing list