Skip to content

Commit d13d656

Browse files
TheMarexPatrick Niklaus
authored andcommitted
Fix infinite recursion warning
1 parent aa10481 commit d13d656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unit_tests/server/parameters_io.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ inline std::ostream &operator<<(std::ostream &out, Bearing bearing)
5757

5858
inline std::ostream &operator<<(std::ostream &out, Approach approach)
5959
{
60-
out << approach;
60+
out << static_cast<int>(approach);
6161
return out;
6262
}
6363
}

0 commit comments

Comments
 (0)