Skip to content

Commit bfb2310

Browse files
committed
Remove unnecessary inline qualifier from PrintTo functions
1 parent 2544a4e commit bfb2310

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/core/performance/tests/perf_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ TEST(perf_tests, check_perf_task_float) {
9797
struct 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
}

0 commit comments

Comments
 (0)