mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-06-24 01:49:36 +02:00
fix: Add braces to remove if misleading-indentation
This commit is contained in:
@@ -129,8 +129,9 @@ void TokenStreamRewriteEngine::toStream( std::ostream& out,
|
||||
|
||||
size_t tokenCursor = firstToken;
|
||||
// make sure we don't run out of the tokens we have...
|
||||
if( lastToken > (tokens.size() - 1) )
|
||||
if( lastToken > (tokens.size() - 1) ) {
|
||||
lastToken = tokens.size() - 1;
|
||||
}
|
||||
|
||||
while ( tokenCursor <= lastToken )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user