Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 7536726

Browse files
committed
feat: Add compatibility for std::move function
1 parent cf968e5 commit 7536726

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/utility

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,11 @@ namespace std{
8080
return pair<T1,T2>(x, y);
8181
}
8282

83-
83+
// Stubb out move for compatibility
84+
template<class T>
85+
T& move(T& t) noexcept {
86+
return t;
87+
}
8488
}
8589

8690
#pragma GCC visibility pop

0 commit comments

Comments
 (0)