From 07f7574ba3c9981edd9f6b3ad98565daae47eecb Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Wed, 21 Apr 2004 16:10:40 +0000 Subject: [PATCH] Declare iterator as public since it is defined as such (gcc-3.4 fix) llvm-svn: 13090 --- llvm/include/Support/BitSetVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/Support/BitSetVector.h b/llvm/include/Support/BitSetVector.h index 72f55b38c4fb..276af0a68a68 100644 --- a/llvm/include/Support/BitSetVector.h +++ b/llvm/include/Support/BitSetVector.h @@ -38,7 +38,6 @@ class BitSetVector { // Types used internal to the representation typedef std::bitset bitword; typedef bitword::reference reference; - class iterator; // Data used in the representation std::vector bitsetVec; @@ -67,6 +66,7 @@ private: BitSetVector(); // do not implement! public: + class iterator; /// /// Constructor: create a set of the maximum size maxSetSize. /// The set is initialized to empty. -- GitLab