aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/PrintfFormatString.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-07-20 20:04:36 +0000
committerTed Kremenek <kremenek@apple.com>2010-07-20 20:04:36 +0000
commit7fdba13847f01cfcdc7c9261b13e99e3cbecb5fc (patch)
tree95b754f053137bfe74c4fbe5de248de177dca645 /lib/Analysis/PrintfFormatString.cpp
parentcfdcd3066521ee0fa9f303f3863c726943db37e5 (diff)
Cleanup whitespace in switch statement. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108905 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PrintfFormatString.cpp')
-rw-r--r--lib/Analysis/PrintfFormatString.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/Analysis/PrintfFormatString.cpp b/lib/Analysis/PrintfFormatString.cpp
index 2aeb53f52e..49d10009b1 100644
--- a/lib/Analysis/PrintfFormatString.cpp
+++ b/lib/Analysis/PrintfFormatString.cpp
@@ -250,15 +250,16 @@ const char *ConversionSpecifier::toString() const {
case GArg: return "G";
case aArg: return "a";
case AArg: return "A";
- case cArg: return "c";
- case sArg: return "s";
- case pArg: return "p";
- case nArg: return "n";
- case PercentArg: return "%";
+ case cArg: return "c";
+ case sArg: return "s";
+ case pArg: return "p";
+ case nArg: return "n";
+ case PercentArg: return "%";
+ case ScanListArg: return "[";
case InvalidSpecifier: return NULL;
// MacOS X unicode extensions.
- case CArg: return "C";
+ case CArg: return "C";
case SArg: return "S";
// Objective-C specific specifiers.