From 3520868fcffb6e3405014cd47973bfa757487a40 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Fri, 23 Aug 2013 17:45:43 +0000 Subject: [PATCH] Use CharInfo.h routines in TextComment::isWhitespaceNoCache git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189115 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/Comment.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/AST/Comment.cpp b/lib/AST/Comment.cpp index a16a023e95..79cabdb776 100644 --- a/lib/AST/Comment.cpp +++ b/lib/AST/Comment.cpp @@ -12,6 +12,7 @@ #include "clang/AST/Decl.h" #include "clang/AST/DeclObjC.h" #include "clang/AST/DeclTemplate.h" +#include "clang/Basic/CharInfo.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" @@ -94,9 +95,7 @@ Comment::child_iterator Comment::child_end() const { bool TextComment::isWhitespaceNoCache() const { for (StringRef::const_iterator I = Text.begin(), E = Text.end(); I != E; ++I) { - const char C = *I; - if (C != ' ' && C != '\n' && C != '\r' && - C != '\t' && C != '\f' && C != '\v') + if (!clang::isWhitespace(*I)) return false; } return true; -- 2.40.0