From f40ae3cc9d7e00e8be72cc0596386af6c6925e8d Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 17 May 2004 22:25:12 +0000 Subject: [PATCH] * Minor aesthetic alignment of iterator declarations * Removed redundant function comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13592 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/BasicBlock.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 0e12cab223a..931b1162c83 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -61,8 +61,8 @@ private : public: /// Instruction iterators... - typedef InstListType::iterator iterator; - typedef InstListType::const_iterator const_iterator; + typedef InstListType::iterator iterator; + typedef InstListType::const_iterator const_iterator; typedef std::reverse_iterator const_reverse_iterator; typedef std::reverse_iterator reverse_iterator; @@ -70,9 +70,6 @@ public: /// is automatically inserted at either the end of the function (if /// InsertBefore is null), or before the specified basic block. /// - /// BasicBlock ctor - If the InsertBefore parameter is specified, the basic - /// block is automatically inserted right before the specified block. - /// BasicBlock(const std::string &Name = "", Function *Parent = 0, BasicBlock *InsertBefore = 0); ~BasicBlock();