diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-07-10 22:18:03 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-07-10 22:18:03 +0000 |
| commit | 11eef2eb9c7cf2eee11580333562b74a238bbf0a (patch) | |
| tree | f91310dc41971fe72b3ec6b113a5e89351b5b935 | |
| parent | a779b3df28d7710520a71b7bd38b2742ae852ded (diff) | |
| download | bcm5719-llvm-11eef2eb9c7cf2eee11580333562b74a238bbf0a.tar.gz bcm5719-llvm-11eef2eb9c7cf2eee11580333562b74a238bbf0a.zip | |
remove obsolete comment.
llvm-svn: 39726
| -rw-r--r-- | clang/include/clang/AST/Type.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h index 640c9883f8f..93969b26847 100644 --- a/clang/include/clang/AST/Type.h +++ b/clang/include/clang/AST/Type.h @@ -297,8 +297,7 @@ public: Long, LongLong, - Float, Double, LongDouble//, -// FloatComplex, DoubleComplex, LongDoubleComplex + Float, Double, LongDouble }; private: Kind TypeKind; @@ -561,6 +560,10 @@ public: bool isVariadic() const { return getSubClassData(); } + typedef const QualType *arg_type_iterator; + arg_type_iterator arg_type_begin() const { return ArgInfo; } + arg_type_iterator arg_type_end() const { return ArgInfo+NumArgs; } + virtual void getAsStringInternal(std::string &InnerString) const; static bool classof(const Type *T) { |

