]> granicus.if.org Git - clang/commitdiff
Improve comments (Thanks Fariborz).
authorMike Stump <mrs@apple.com>
Sat, 25 Jul 2009 22:12:02 +0000 (22:12 +0000)
committerMike Stump <mrs@apple.com>
Sat, 25 Jul 2009 22:12:02 +0000 (22:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77090 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h

index 8985051ad5bc2756b7d19ff4c5d508113c70b572..f43ab0bc7871b8f2304d23e595114a41c2c061a3 100644 (file)
@@ -216,7 +216,8 @@ public:
     return getObjCGCAttr() == Strong;
   }
 
-  /// getNoReturnAttr() - Return the noreturn attribute of this type.
+  /// getNoReturnAttr - Returns true if the type has the noreturn attribute,
+  /// false otherwise.
   bool getNoReturnAttr() const;
 };
 
@@ -2082,7 +2083,8 @@ inline QualType::GCAttrTypes QualType::getObjCGCAttr() const {
   return GCNone;
 }
 
-/// getNoReturnAttr - Return the noreturn attribute of this type.
+  /// getNoReturnAttr - Returns true if the type has the noreturn attribute,
+  /// false otherwise.
 inline bool QualType::getNoReturnAttr() const {
   QualType CT = getTypePtr()->getCanonicalTypeInternal();
   if (const PointerType *PT = getTypePtr()->getAsPointerType()) {