From cf1e216a2aa8ba3cc50cf046f5d057948b234a1f Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sun, 30 Jun 2013 22:44:02 +0000 Subject: [PATCH] Make string pointer const. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185296 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Format/BreakableToken.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ' ': -- 2.50.1