Skip to content
Snippets Groups Projects
Commit 3566e94c authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[CLANG-TIDY] readability-redundant-control-flow

parent 3a5e9bde
No related merge requests found
......@@ -37,7 +37,8 @@ readability-container-size-empty,
readability-delete-null-pointer,
readability-deleted-default,
readability-misleading-indentation,
readability-misplaced-array-index
readability-misplaced-array-index,
readability-redundant-control-flow
'
WarningsAsErrors: '*'
......
......@@ -428,7 +428,6 @@ void Config::extractBlock( const char* filename, std::stringstream& input, Block
error_ << " Missing '}' for " << block.getKey()
<< " block starting in line " << lineNumber << "\n";
stateFlag_ = false;
return;
}
//**********************************************************************************************************************
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment