remove obsolete comment.

llvm-svn: 39726
This commit is contained in:
Chris Lattner 2007-07-10 22:18:03 +00:00
parent a779b3df28
commit 11eef2eb9c
1 changed files with 5 additions and 2 deletions

View File

@ -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) {