File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -668,7 +668,7 @@ namespace {
668668 private:
669669
670670 static std::string executeOp1 (const Token* tok, const ProjectConfiguration &p) {
671- return execute (tok->astOperand1 (), p);
671+ return execute (tok->astOperand1 (), p);
672672 }
673673
674674 static std::string executeOp2 (const Token* tok, const ProjectConfiguration &p) {
@@ -678,7 +678,9 @@ namespace {
678678 static std::string execute (const Token* tok, const ProjectConfiguration &p) {
679679 if (!tok)
680680 throw std::runtime_error (" Missing operator" );
681- auto boolResult = [](bool b) -> std::string { return b ? " True" : " False" ; };
681+ auto boolResult = [](bool b) -> std::string {
682+ return b ? " True" : " False" ;
683+ };
682684 if (tok->isUnaryOp (" !" ))
683685 return boolResult (executeOp1 (tok, p) == " False" );
684686 if (tok->str () == " ==" )
You can’t perform that action at this time.
0 commit comments