diff options
| -rw-r--r-- | clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp b/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp index 04c95f62ad6..50727a55fc7 100644 --- a/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp +++ b/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp @@ -83,7 +83,7 @@ bool LexicallyOrderedDeclVisitor::VisitNamedDecl(const NamedDecl *D) { OS << ND->getNameAsString(); else OS << "???"; - if (isa<DeclContext>(D) or isa<TemplateDecl>(D)) + if (isa<DeclContext>(D) || isa<TemplateDecl>(D)) OS << "/"; } if (EmitDeclIndices) |

