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 e340f4f..d48c3cb 100644
--- a/lib/Format/BreakableToken.cpp
+++ b/lib/Format/BreakableToken.cpp
@@ -26,7 +26,7 @@
 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 ' ':