From f40fb4beaa22b4e53cd8b5319836b361ebfa6c62 Mon Sep 17 00:00:00 2001 From: Daniel Jasper Date: Tue, 29 Jan 2013 15:19:38 +0000 Subject: [PATCH] Split ">>" in "A >" in Chromium style. It needs to be compatible with C++03. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173805 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Format/Format.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index a8599dfbeb..2522d4d5bf 100644 --- a/lib/Format/Format.cpp +++ b/lib/Format/Format.cpp @@ -207,6 +207,7 @@ FormatStyle getGoogleStyle() { FormatStyle getChromiumStyle() { FormatStyle ChromiumStyle = getGoogleStyle(); ChromiumStyle.AllowAllParametersOnNextLine = false; + ChromiumStyle.SplitTemplateClosingGreater = true; return ChromiumStyle; } -- 2.50.1