From 59bea00737daee4816d4bb0069c186858535625c Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Thu, 8 Jul 2010 16:52:57 +0000 Subject: [PATCH] remove unneeded parens llvm-svn: 107881 --- llvm/include/llvm/Support/CFG.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/CFG.h b/llvm/include/llvm/Support/CFG.h index f07c719f194d..9ba71fcca8a5 100644 --- a/llvm/include/llvm/Support/CFG.h +++ b/llvm/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!");