* Minor aesthetic alignment of iterator declarations
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 17 May 2004 22:25:12 +0000 (22:25 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 17 May 2004 22:25:12 +0000 (22:25 +0000)
* 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

index 0e12cab223a9b9df6b6eb377f4deaa575a171e91..931b1162c83e10b2c23004a002e43d0d8949b69c 100644 (file)
@@ -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_iterator> const_reverse_iterator;
   typedef std::reverse_iterator<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();