Skip to content

Commit 3dab3aa

Browse files
committed
Fix: Some lint
1 parent 61cf428 commit 3dab3aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/include/printers.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424

2525
#include <boost/optional/optional_io.hpp>
2626

27-
2827
namespace flom {
2928

3029
std::ostream &operator<<(std::ostream &os, const Rotation &v) {
31-
auto const& q = v.quaternion();
32-
os << "rotation(" << q.w() << ", " << q.x() << ", " << q.y() << ", " << q.z() << ")";
30+
auto const &q = v.quaternion();
31+
os << "rotation(" << q.w() << ", " << q.x() << ", " << q.y() << ", " << q.z()
32+
<< ")";
3333
return os;
3434
}
3535

0 commit comments

Comments
 (0)