From d1a9125cdd9b82f76b5032f879b6cb9aeeb99329 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Mon, 21 Sep 2015 20:06:42 +0000 Subject: 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 --- clang/lib/Format/Format.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'clang/lib/Format') diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 55f90801ee7..ae313c57dce 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -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; } -- cgit v1.2.3