From f2bb7397b342b0c33ac4ea72f0bc52ebcac172f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 4 May 2018 14:57:45 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/astutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index 69ed67d4c..d25219a07 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -365,7 +365,7 @@ bool isOppositeExpression(bool cpp, const Token * const tok1, const Token * cons return false; if (isOppositeCond(true, cpp, tok1, tok2, library, pure)) return true; - if (tok1->str() == "-" && !tok1->astOperand2()) + if (tok1->str() == "-" && !tok1->astOperand2()) return isSameExpression(cpp, true, tok1->astOperand1(), tok2, library, pure); if (tok2->str() == "-" && !tok1->astOperand2()) return isSameExpression(cpp, true, tok2->astOperand1(), tok1, library, pure);