diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-23 00:20:05 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | e1f9d9ca1ef3c69da3b887b0af298be0aea4a5f9 (patch) | |
tree | 3da091d697177d178841fae7b2980b6c152e25c1 /asl/utility.hpp | |
parent | 8c95db33be58a545dd2e030428bded0bd958c4b6 (diff) |
More work on testing framework
Diffstat (limited to 'asl/utility.hpp')
-rw-r--r-- | asl/utility.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/utility.hpp b/asl/utility.hpp index 2d9ef05..d54d965 100644 --- a/asl/utility.hpp +++ b/asl/utility.hpp @@ -14,7 +14,7 @@ template<typename T, typename U> T exchange(T& obj, U&& new_value)
{
T old_value = ASL_MOVE(obj);
- obj = ASL_FORWARD(new_value);
+ obj = ASL_FWD(new_value);
return old_value;
}
|