1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

*** empty log message ***

llvm-svn: 3053
This commit is contained in:
Chris Lattner 2002-07-24 20:44:02 +00:00
parent 7b242c7228
commit 1f7accb16b

View File

@ -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;