Warning, file /include/catch2/internal/catch_move_and_forward.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef CATCH_MOVE_AND_FORWARD_HPP_INCLUDED
0009 #define CATCH_MOVE_AND_FORWARD_HPP_INCLUDED
0010
0011 #include <type_traits>
0012
0013
0014 #define CATCH_MOVE(...) static_cast<std::remove_reference_t<decltype(__VA_ARGS__)>&&>(__VA_ARGS__)
0015
0016
0017 #define CATCH_FORWARD(...) static_cast<decltype(__VA_ARGS__)&&>(__VA_ARGS__)
0018
0019 #endif