diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-24 00:01:24 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-24 00:01:24 +0000 |
commit | dd28e7930ccae5dd67f62d6a4221a3112dd93ec8 (patch) | |
tree | 67b55b58263b2e7aecf7529b0b5867acf7e4c262 /clang/lib/Sema/SemaAccess.cpp | |
parent | 156d92037aab183f8db6b4aac8267612e3f3ec63 (diff) | |
download | bcm5719-llvm-dd28e7930ccae5dd67f62d6a4221a3112dd93ec8.tar.gz bcm5719-llvm-dd28e7930ccae5dd67f62d6a4221a3112dd93ec8.zip |
Fix a few -Wdocumentation warnings.
llvm-svn: 162506
Diffstat (limited to 'clang/lib/Sema/SemaAccess.cpp')
-rw-r--r-- | clang/lib/Sema/SemaAccess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaAccess.cpp b/clang/lib/Sema/SemaAccess.cpp index 3481171c773..ed72a5600b7 100644 --- a/clang/lib/Sema/SemaAccess.cpp +++ b/clang/lib/Sema/SemaAccess.cpp @@ -1791,7 +1791,7 @@ void Sema::CheckLookupAccess(const LookupResult &R) { /// specifiers into account, but no member access expressions and such. /// /// \param Decl the declaration to check if it can be accessed -/// \param Class the class/context from which to start the search +/// \param Ctx the class/context from which to start the search /// \return true if the Decl is accessible from the Class, false otherwise. bool Sema::IsSimplyAccessible(NamedDecl *Decl, DeclContext *Ctx) { if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx)) { |