Reformat clang-format's source files after r185822 and others.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185823 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Format/BreakableToken.cpp b/lib/Format/BreakableToken.cpp
index f01b481..816fd23 100644
--- a/lib/Format/BreakableToken.cpp
+++ b/lib/Format/BreakableToken.cpp
@@ -28,13 +28,13 @@
static const char *const Blanks = " \t\v\f";
static bool IsBlank(char C) {
switch (C) {
- case ' ':
- case '\t':
- case '\v':
- case '\f':
- return true;
- default:
- return false;
+ case ' ':
+ case '\t':
+ case '\v':
+ case '\f':
+ return true;
+ default:
+ return false;
}
}
@@ -388,9 +388,9 @@
}
}
- unsigned WhitespaceOffsetInToken =
- Lines[LineIndex].data() - Tok.TokenText.data() -
- LeadingWhitespace[LineIndex];
+ unsigned WhitespaceOffsetInToken = Lines[LineIndex].data() -
+ Tok.TokenText.data() -
+ LeadingWhitespace[LineIndex];
assert(StartOfLineColumn[LineIndex] >= Prefix.size());
Whitespaces.replaceWhitespaceInToken(
Tok, WhitespaceOffsetInToken, LeadingWhitespace[LineIndex], "", Prefix,