From 17fdaa40fc57baa4cad1d2e5144858d17e12982a 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. llvm-svn: 173805 --- clang/lib/Format/Format.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index a8599dfbeb66..2522d4d5bffb 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -207,6 +207,7 @@ FormatStyle getGoogleStyle() { FormatStyle getChromiumStyle() { FormatStyle ChromiumStyle = getGoogleStyle(); ChromiumStyle.AllowAllParametersOnNextLine = false; + ChromiumStyle.SplitTemplateClosingGreater = true; return ChromiumStyle; }