File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/core/performance/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ TEST(perf_tests, check_perf_task_float) {
9797struct ParamTestCase {
9898 ppc::core::PerfResults::TypeOfRunning input;
9999 std::string expected_output;
100- friend inline void PrintTo (const ParamTestCase& param, std::ostream* os) {
100+ friend void PrintTo (const ParamTestCase& param, std::ostream* os) {
101101 *os << " { input = " << static_cast <int >(param.input ) << " , expected = " << param.expected_output << " }" ;
102102 }
103103};
@@ -120,7 +120,7 @@ struct TaskTypeTestCase {
120120 ppc::core::TypeOfTask type;
121121 std::string expected;
122122 std::string label;
123- friend inline void PrintTo (const TaskTypeTestCase& param, std::ostream* os) {
123+ friend void PrintTo (const TaskTypeTestCase& param, std::ostream* os) {
124124 *os << " { type = " << static_cast <int >(param.type ) << " , expected = " << param.expected
125125 << " , label = " << param.label << " }" ;
126126 }
You can’t perform that action at this time.
0 commit comments