From: Gabor Greif Date: Thu, 8 Jul 2010 16:52:57 +0000 (+0000) Subject: remove unneeded parens X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dba3e15625db58fca295b2f46eaafef60cd5f23c;p=oota-llvm.git remove unneeded parens git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107881 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index f07c719f194..9ba71fcca8a 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -53,7 +53,7 @@ public: assert(!It.atEnd() && "pred_iterator out of range!"); return cast(*It)->getParent(); } - inline pointer *operator->() const { return &(operator*()); } + inline pointer *operator->() const { return &operator*(); } inline Self& operator++() { // Preincrement assert(!It.atEnd() && "pred_iterator out of range!");