summaryrefslogtreecommitdiff
path: root/include/clang/AST
diff options
context:
space:
mode:
authorTim Shen <timshen91@gmail.com>2016-08-31 16:48:13 +0000
committerTim Shen <timshen91@gmail.com>2016-08-31 16:48:13 +0000
commit2d834ba1950fb6fc8ede32e070f4dec90b3e148b (patch)
treea139e19430e7d40ed7cb825eb4d13be70bc9c427 /include/clang/AST
parentb74f276c3f18aa6a557962d0fc6c826a9776fb45 (diff)
downloadclang-2d834ba1950fb6fc8ede32e070f4dec90b3e148b.tar.gz
s/static inline/static/ for headers I have changed in r279475. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@280257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST')
-rw-r--r--include/clang/AST/StmtGraphTraits.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/AST/StmtGraphTraits.h b/include/clang/AST/StmtGraphTraits.h
index 11084be40c..92eb64430f 100644
--- a/include/clang/AST/StmtGraphTraits.h
+++ b/include/clang/AST/StmtGraphTraits.h
@@ -31,12 +31,12 @@ template <> struct GraphTraits<clang::Stmt*> {
static NodeRef getEntryNode(clang::Stmt *S) { return S; }
- static inline ChildIteratorType child_begin(NodeRef N) {
+ static ChildIteratorType child_begin(NodeRef N) {
if (N) return N->child_begin();
else return ChildIteratorType();
}
- static inline ChildIteratorType child_end(NodeRef N) {
+ static ChildIteratorType child_end(NodeRef N) {
if (N) return N->child_end();
else return ChildIteratorType();
}
@@ -58,12 +58,12 @@ template <> struct GraphTraits<const clang::Stmt*> {
static NodeRef getEntryNode(const clang::Stmt *S) { return S; }
- static inline ChildIteratorType child_begin(NodeRef N) {
+ static ChildIteratorType child_begin(NodeRef N) {
if (N) return N->child_begin();
else return ChildIteratorType();
}
- static inline ChildIteratorType child_end(NodeRef N) {
+ static ChildIteratorType child_end(NodeRef N) {
if (N) return N->child_end();
else return ChildIteratorType();
}