Fields
| hardware | None |
| os | None |
Parameters
Fields
| Name | Value |
|---|
Parameters
| Name | Value |
|---|---|
| git_commit |
commit 3d7622ea0bd443bb6ccb58d6b33e8cf52a8f0f4e Author: Xiaoyang Liu <siujoeng.lau@gmail.com> Date: Tue Jul 23 01:32:37 2024 +0900 [libc++][ranges] LWG3618: Unnecessary `iter_move` for `transform_view::iterator` (#91809) ## Introduction This patch implements LWG3618: Unnecessary `iter_move` for `transform_view::iterator`. `transform_view`'s iterator currently specifies a customization point for `iter_move`. This customization point does the same thing that the default implementation would do, but its sole purpose is to ensure the appropriate conditional `noexcept` specification. ## Reference - [[range.transform.iterator]](https://eel.is/c++draft/range.transform.iterator) - [LWG3618](https://cplusplus.github.io/LWG/issue3618) |