From: Daniel Jasper Date: Tue, 29 Jan 2013 15:19:38 +0000 (+0000) Subject: Split ">>" in "A >" in Chromium style. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f40fb4beaa22b4e53cd8b5319836b361ebfa6c62;p=clang 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 --- 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; }