mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +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:
parent
a1cb4737b0
commit
7f5e6cd751
@ -228,8 +228,12 @@ public:
|
||||
#include "llvm/Type.def"
|
||||
|
||||
private:
|
||||
class TypeIterator : public std::bidirectional_iterator<const Type,
|
||||
ptrdiff_t> {
|
||||
class TypeIterator
|
||||
#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;
|
||||
unsigned Idx;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user