forked from OSchip/llvm-project
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:
parent
1564f3c4ec
commit
d1a9125cdd
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue