Skip to content

Commit ad3f7d2

Browse files
committed
[clang][bytecode][test] Qualify a std::move call
Try to fix the test failures introduced by 97ed201 See #128141
1 parent 97ed201 commit ad3f7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/AST/ByteCode/libcxx/primitive-temporary.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ using iter_value_t =
165165
int>::value_type;
166166
namespace ranges {
167167
struct Trans_NS___iter_move___fn {
168-
template <class _Ip> auto operator()(_Ip __i) const -> decltype(move(*(__i)));
168+
template <class _Ip> auto operator()(_Ip __i) const -> decltype(std::move(*(__i)));
169169
};
170170
inline namespace {
171171
auto iter_move = Trans_NS___iter_move___fn{};

0 commit comments

Comments
 (0)