From: Craig Topper Date: Sun, 30 Jun 2013 22:44:02 +0000 (+0000) Subject: Make string pointer const. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf1e216a2aa8ba3cc50cf046f5d057948b234a1f;p=clang Make string pointer const. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185296 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/BreakableToken.cpp b/lib/Format/BreakableToken.cpp index e340f4f2e3..d48c3cbcac 100644 --- a/lib/Format/BreakableToken.cpp +++ b/lib/Format/BreakableToken.cpp @@ -26,7 +26,7 @@ namespace clang { namespace format { namespace { -static const char *Blanks = " \t\v\f"; +static const char *const Blanks = " \t\v\f"; static bool IsBlank(char C) { switch (C) { case ' ':