From 920b553ebf21c8d6386644e0114c1fe9fe573d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 2 May 2018 12:58:10 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/astutils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index 326b19343..7117b8acf 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -363,11 +363,11 @@ bool isOppositeExpression(bool cpp, const Token * const tok1, const Token * cons { if (!tok1 || !tok2) return false; - if(isOppositeCond(true, cpp, tok1, tok2, library, pure)) + if (isOppositeCond(true, cpp, tok1, tok2, library, pure)) return true; - if(tok1->str() == "-") + if (tok1->str() == "-") return isSameExpression(cpp, true, tok1->astOperand1(), tok2, library, pure); - if(tok2->str() == "-") + if (tok2->str() == "-") return isSameExpression(cpp, true, tok2->astOperand1(), tok1, library, pure); return false; }