mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-01 01:30:36 +00:00
Declare iterator as public since it is defined as such (gcc-3.4 fix)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13090 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
107fb18d89
commit
afa9235f07
@ -38,7 +38,6 @@ class BitSetVector {
|
|||||||
// Types used internal to the representation
|
// Types used internal to the representation
|
||||||
typedef std::bitset<BITSET_WORDSIZE> bitword;
|
typedef std::bitset<BITSET_WORDSIZE> bitword;
|
||||||
typedef bitword::reference reference;
|
typedef bitword::reference reference;
|
||||||
class iterator;
|
|
||||||
|
|
||||||
// Data used in the representation
|
// Data used in the representation
|
||||||
std::vector<bitword> bitsetVec;
|
std::vector<bitword> bitsetVec;
|
||||||
@ -67,6 +66,7 @@ private:
|
|||||||
BitSetVector(); // do not implement!
|
BitSetVector(); // do not implement!
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
class iterator;
|
||||||
///
|
///
|
||||||
/// Constructor: create a set of the maximum size maxSetSize.
|
/// Constructor: create a set of the maximum size maxSetSize.
|
||||||
/// The set is initialized to empty.
|
/// The set is initialized to empty.
|
||||||
|
@ -38,7 +38,6 @@ class BitSetVector {
|
|||||||
// Types used internal to the representation
|
// Types used internal to the representation
|
||||||
typedef std::bitset<BITSET_WORDSIZE> bitword;
|
typedef std::bitset<BITSET_WORDSIZE> bitword;
|
||||||
typedef bitword::reference reference;
|
typedef bitword::reference reference;
|
||||||
class iterator;
|
|
||||||
|
|
||||||
// Data used in the representation
|
// Data used in the representation
|
||||||
std::vector<bitword> bitsetVec;
|
std::vector<bitword> bitsetVec;
|
||||||
@ -67,6 +66,7 @@ private:
|
|||||||
BitSetVector(); // do not implement!
|
BitSetVector(); // do not implement!
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
class iterator;
|
||||||
///
|
///
|
||||||
/// Constructor: create a set of the maximum size maxSetSize.
|
/// Constructor: create a set of the maximum size maxSetSize.
|
||||||
/// The set is initialized to empty.
|
/// The set is initialized to empty.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user