diff options
| author | Eric Christopher <echristo@gmail.com> | 2013-09-04 15:58:55 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2013-09-04 15:58:55 +0000 |
| commit | aef3869f95b865ffa191f3fee2772384510a9b1d (patch) | |
| tree | 469707c1016c85e094d6062fa28061270d0326cc | |
| parent | fac3a018d1f7260a70b9def030ef5a3866d1901e (diff) | |
| download | bcm5719-llvm-aef3869f95b865ffa191f3fee2772384510a9b1d.tar.gz bcm5719-llvm-aef3869f95b865ffa191f3fee2772384510a9b1d.zip | |
More unused warning silencing.
llvm-svn: 189951
| -rw-r--r-- | clang/include/clang/ASTMatchers/ASTMatchers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index 2734aa2b36d..0551355c58b 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/include/clang/ASTMatchers/ASTMatchers.h @@ -1625,7 +1625,7 @@ internal::Matcher<T> findAll(const internal::Matcher<T> &Matcher) { /// Usable as: Any Matcher const internal::ArgumentAdaptingMatcherFunc< internal::HasParentMatcher, internal::TypeList<Decl, Stmt>, - internal::TypeList<Decl, Stmt> > hasParent = {}; + internal::TypeList<Decl, Stmt> > LLVM_ATTRIBUTE_UNUSED hasParent = {}; /// \brief Matches AST nodes that have an ancestor that matches the provided /// matcher. @@ -1640,7 +1640,7 @@ const internal::ArgumentAdaptingMatcherFunc< /// Usable as: Any Matcher const internal::ArgumentAdaptingMatcherFunc< internal::HasAncestorMatcher, internal::TypeList<Decl, Stmt>, - internal::TypeList<Decl, Stmt> > hasAncestor = {}; + internal::TypeList<Decl, Stmt> > LLVM_ATTRIBUTE_UNUSED hasAncestor = {}; /// \brief Matches if the provided matcher does not match. /// |

