mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -228,8 +228,12 @@ public:
|
|||||||
#include "llvm/Type.def"
|
#include "llvm/Type.def"
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class TypeIterator : public std::bidirectional_iterator<const Type,
|
class TypeIterator
|
||||||
ptrdiff_t> {
|
#if __GNUC__ == 3
|
||||||
|
: public std::iterator<std::bidirectional_iterator_tag, const Type> {
|
||||||
|
#else
|
||||||
|
: public std::bidirectional_iterator<const Type, ptrdiff_t> {
|
||||||
|
#endif
|
||||||
const Type * const Ty;
|
const Type * const Ty;
|
||||||
unsigned Idx;
|
unsigned Idx;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user