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

[CLANG-TIDY] readability-container-size-empty

parent 88f6c39c
Branches
Tags
No related merge requests found
...@@ -134,7 +134,7 @@ namespace python_coupling { ...@@ -134,7 +134,7 @@ namespace python_coupling {
if ( lineCounter == 1 && commandComplete ) if ( lineCounter == 1 && commandComplete )
return true; return true;
if ( strTrimmedLine.size() == 0 && isCompleteCommand(result) ) // multiline commands have to end with empty line if ( strTrimmedLine.empty() && isCompleteCommand(result) ) // multiline commands have to end with empty line
return true; return true;
} }
......
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