Skip to content
Snippets Groups Projects
Commit 70c3c402 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

tidy: declarations on a single line

parent 0d7584f0
No related branches found
No related tags found
1 merge request!215Merge jt
......@@ -44,7 +44,8 @@ template < class SymbolType >
ext::pair < size_t, size_t > PeriodicPrefix::construct ( const string::LinearString < SymbolType > & string) {
const auto& x = string.getContent ( );
 
size_t maxlen = x.size ( ) , maxper = x.size ( );
size_t maxlen = x.size ( );
size_t maxper = x.size ( );
for ( size_t i = 1; i <= x.size ( ); ++ i ) {
auto per = hasShortPeriod ( x , i );
if ( per != x.size ( ) ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment