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

algo: fix returned variable from NormalizeRotation

parent aaa4708a
No related branches found
No related tags found
1 merge request!206Merge jt
......@@ -55,7 +55,7 @@ string::CyclicString < SymbolType > NormalizeRotation::normalize(const string::C
rotated.push_back ( data [ l % data.size ( ) ] );
}
 
return string::CyclicString < > { string.getAlphabet ( ), rotated };
return string::CyclicString < SymbolType > { string.getAlphabet ( ), rotated };
}
 
} /* namespace simplify */
......
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