diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-05-06 17:34:05 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-05-06 17:34:05 +0000 |
commit | 2b23ce981dadfcc305d4c89705313e7433630d71 (patch) | |
tree | 8528e02db4595b8c5188e3bab389df34e7b7c497 | |
parent | 49a94b1c7cf661b1d45247ef39e70c7330219045 (diff) | |
download | bcm5719-llvm-2b23ce981dadfcc305d4c89705313e7433630d71.tar.gz bcm5719-llvm-2b23ce981dadfcc305d4c89705313e7433630d71.zip |
Fix a couple of comments.
llvm-svn: 130994
-rw-r--r-- | clang/include/clang/AST/Type.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h index c1c60c0c2e3..814d12b2f01 100644 --- a/clang/include/clang/AST/Type.h +++ b/clang/include/clang/AST/Type.h @@ -1418,14 +1418,12 @@ public: /// isSignedIntegerType - Return true if this is an integer type that is /// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..], - /// an enum decl which has a signed representation, or a vector of signed - /// integer element type. + /// or an enum decl which has a signed representation. bool isSignedIntegerType() const; /// isUnsignedIntegerType - Return true if this is an integer type that is - /// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum - /// decl which has an unsigned representation, or a vector of unsigned integer - /// element type. + /// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], + /// or an enum decl which has an unsigned representation. bool isUnsignedIntegerType() const; /// isConstantSizeType - Return true if this is not a variable sized type, |