diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-18 08:50:48 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-18 08:50:48 +0000 |
commit | ac4e3794c60fc194fb2bd9764aa81d4cae530ecc (patch) | |
tree | a147eb4dd96580c83cdc1174413eb283b6b88d52 | |
parent | 1e4bc099882626059f14d687ed7a1a5518b7f3c2 (diff) |
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76299 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index 4c190f134a..dc34c42034 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -318,7 +318,7 @@ public: return const_cast<Decl*>(this)->getCanonicalDecl(); } - /// \brief Whether this particular Decl is a primary one. + /// \brief Whether this particular Decl is a canonical one. bool isCanonicalDecl() const { return getCanonicalDecl() == this; } protected: |