clang-format: Remove ChromiumStyle.MacroBlockBegin.

We prefer setting these in our .clang-format file as the macros change over
time.  (Also, the code was setting MacroBlockBegin twice and didn't set
MacroBlockEnd, so it wasn't doing what it tried to do anyways.)

llvm-svn: 248205
This commit is contained in:
Nico Weber 2015-09-21 20:06:42 +00:00
parent 1564f3c4ec
commit d1a9125cdd
1 changed files with 0 additions and 2 deletions

View File

@ -473,8 +473,6 @@ FormatStyle getChromiumStyle(FormatStyle::LanguageKind Language) {
ChromiumStyle.BinPackParameters = false;
ChromiumStyle.DerivePointerAlignment = false;
}
ChromiumStyle.MacroBlockBegin = "^IPC_BEGIN_MESSAGE_MAP$";
ChromiumStyle.MacroBlockBegin = "^IPC_END_MESSAGE_MAP$";
return ChromiumStyle;
}