]> granicus.if.org Git - clang/commitdiff
Add convenience accessors for determining whether template declarations are definitions.
authorJohn McCall <rjmccall@apple.com>
Tue, 31 Aug 2010 22:21:26 +0000 (22:21 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 31 Aug 2010 22:21:26 +0000 (22:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112656 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Decl.h
include/clang/AST/DeclTemplate.h

index 4fdcf681514f479a70c87ad628aecc9db4d45a02..7fb6978d2582afb9506130388dcf3b2f864a5020 100644 (file)
@@ -1886,6 +1886,12 @@ public:
     return const_cast<TagDecl*>(this)->getCanonicalDecl();
   }
 
+  /// isThisDeclarationADefinition() - Return true if this declaration
+  /// defines the type.  Provided for consistency.
+  bool isThisDeclarationADefinition() const {
+    return isDefinition();
+  }
+
   /// isDefinition - Return true if this decl has its body specified.
   bool isDefinition() const {
     return IsDefinition;
index 76d474a8cd90f2a774d70e6bbccf0d7edb1f5cfd..482f73423e99fdb9e44f241c91b5f1edd58326de 100644 (file)
@@ -815,6 +815,12 @@ public:
     return static_cast<FunctionDecl*>(TemplatedDecl);
   }
 
+  /// Returns whether this template declaration defines the primary
+  /// pattern.
+  bool isThisDeclarationADefinition() const {
+    return getTemplatedDecl()->isThisDeclarationADefinition();
+  }
+
   /// \brief Return the specialization with the provided arguments if it exists,
   /// otherwise return the insertion point.
   FunctionDecl *findSpecialization(const TemplateArgument *Args,
@@ -1664,6 +1670,12 @@ public:
     return static_cast<CXXRecordDecl *>(TemplatedDecl);
   }
 
+  /// Returns whether this template declaration defines the primary
+  /// class pattern.
+  bool isThisDeclarationADefinition() const {
+    return getTemplatedDecl()->isThisDeclarationADefinition();
+  }
+
   /// Create a class template node.
   static ClassTemplateDecl *Create(ASTContext &C, DeclContext *DC,
                                    SourceLocation L,