diff --git a/src/catch2/internal/catch_move_and_forward.hpp b/src/catch2/internal/catch_move_and_forward.hpp index 70520308..01b7adae 100644 --- a/src/catch2/internal/catch_move_and_forward.hpp +++ b/src/catch2/internal/catch_move_and_forward.hpp @@ -10,10 +10,10 @@ #include -//! TODO: replaces std::move for better performance +//! Replacement for std::move with better compile time performance #define CATCH_MOVE(...) static_cast&&>(__VA_ARGS__) +//! Replacement for std::forward with better compile time performance #define CATCH_FORWARD(...) static_cast(__VA_ARGS__) #endif // CATCH_MOVE_AND_FORWARD_HPP_INCLUDED - \ No newline at end of file