Skip to content

Commit ce96fef

Browse files
Leander SchultenLeander Schulten
authored andcommitted
format
1 parent b01f29a commit ce96fef

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

lib/importproject.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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() == "==")

0 commit comments

Comments
 (0)