Split ">>" in "A<B<C> >" in Chromium style.

It needs to be compatible with C++03.

llvm-svn: 173805
This commit is contained in:
Daniel Jasper 2013-01-29 15:19:38 +00:00
parent f05d2f254e
commit 17fdaa40fc
1 changed files with 1 additions and 0 deletions

View File

@ -207,6 +207,7 @@ FormatStyle getGoogleStyle() {
FormatStyle getChromiumStyle() {
FormatStyle ChromiumStyle = getGoogleStyle();
ChromiumStyle.AllowAllParametersOnNextLine = false;
ChromiumStyle.SplitTemplateClosingGreater = true;
return ChromiumStyle;
}