commit | cf1e216a2aa8ba3cc50cf046f5d057948b234a1f | [log] [tgz] |
---|---|---|
author | Craig Topper <craig.topper@gmail.com> | Sun Jun 30 22:44:02 2013 +0000 |
committer | Craig Topper <craig.topper@gmail.com> | Sun Jun 30 22:44:02 2013 +0000 |
tree | b94e84f8b00ec3245f735c673c37f8c22040e380 | |
parent | 83f81d712616130e62487f76522702fb8bca5002 [diff] [blame] |
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 ' ':