We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1b1a1 commit d6c860aCopy full SHA for d6c860a
Include/Tests/ConfigParsing/MockComponents.hpp
@@ -10,6 +10,7 @@
10
#include <sstream>
11
#include <type_traits>
12
#include <vector>
13
+#include <utility>
14
15
extern CO_DECLARE_INSTANCE(OverrideInstance);
16
@@ -81,6 +82,12 @@ namespace Mock_std
81
82
{
83
return std::stoi(str, pos, base);
84
}
85
+
86
+ template<class T>
87
+ typename std::remove_reference<T>::type&& move( T&& t ) noexcept
88
+ {
89
+ return std::move(t);
90
+ }
91
92
93
0 commit comments