]> WPIA git - cassiopeia.git/blobdiff - src/log/format.cpp
fmt: extract lambdas to make them better formatted
[cassiopeia.git] / src / log / format.cpp
index 8f7b36fd19dae6e30a5a0ab4f0a7ca11b9732e75..180bb55eacf4e051f04884d0844fa04d5cf0575f 100644 (file)
@@ -29,9 +29,9 @@ namespace logger {
 
                 if( std::isdigit( *it ) ) {
                     const auto w_end = std::find_if_not( it, end,
-                        []( char c ) {
-                            return std::isdigit( c );
-                        } );
+                    []( char c ) {
+                        return std::isdigit( c );
+                    } );
                     retval.width = std::stoul( std::string{it, w_end} );
                     it = w_end;
                 }