]> WPIA git - cassiopeia.git/blobdiff - test/src/log.cpp
fmt: run format script excluding lambdas
[cassiopeia.git] / test / src / log.cpp
index c95df530bb487078990203fb592ec6588ac359e1..11bfd92dcf8b53ddbd0a8f1f782d09aac3222c2e 100644 (file)
@@ -11,9 +11,9 @@ BOOST_AUTO_TEST_SUITE( TestLogger )
 
 static inline bool head_and_tail_equal( const std::string& str, const std::string& head, const std::string& tail ) {
     return str.size() >= head.size() + tail.size()
-            and std::equal( head.begin(), head.end(), str.begin() )
-            and std::equal( tail.rbegin(), tail.rend(), str.rbegin() )
-            ;
+           and std::equal( head.begin(), head.end(), str.begin() )
+           and std::equal( tail.rbegin(), tail.rend(), str.rbegin() )
+           ;
 }
 
 BOOST_AUTO_TEST_CASE( basic_log ) {