]> granicus.if.org Git - clang/commitdiff
Fix a couple of comments.
authorEli Friedman <eli.friedman@gmail.com>
Fri, 6 May 2011 17:34:05 +0000 (17:34 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Fri, 6 May 2011 17:34:05 +0000 (17:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130994 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h

index c1c60c0c2e307531a84dcfb7e6fb63d4d8d3e43f..814d12b2f01f7d9955ec1fa2cab9341f0c8d9e48 100644 (file)
@@ -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,