From: Daniel Jasper Date: Tue, 29 Jan 2013 15:19:38 +0000 (+0000) Subject: Split ">>" in "A >" in Chromium style. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=17fdaa40fc57baa4cad1d2e5144858d17e12982a;p=platform%2Fupstream%2Fllvm.git Split ">>" in "A >" in Chromium style. It needs to be compatible with C++03. llvm-svn: 173805 --- diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index a8599df..2522d4d5 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; }