File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
modules/core/performance/tests Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 55#include < filesystem>
66#include < fstream>
77#include < memory>
8+ #include < ostream>
89#include < stdexcept>
910#include < string_view>
1011#include < vector>
@@ -98,7 +99,7 @@ struct ParamTestCase {
9899 std::string expected_output;
99100};
100101
101- inline void PrintTo (const ParamTestCase& param, std::ostream* os) {
102+ static inline void PrintTo (const ParamTestCase& param, std::ostream* os) {
102103 *os << " { input = " << static_cast <int >(param.input ) << " , expected = " << param.expected_output << " }" ;
103104}
104105
@@ -122,7 +123,7 @@ struct TaskTypeTestCase {
122123 std::string label;
123124};
124125
125- inline void PrintTo (const TaskTypeTestCase& param, std::ostream* os) {
126+ static inline void PrintTo (const TaskTypeTestCase& param, std::ostream* os) {
126127 *os << " { type = " << static_cast <int >(param.type ) << " , expected = " << param.expected << " , label = " << param.label
127128 << " }" ;
128129}
You can’t perform that action at this time.
0 commit comments