forked from OSchip/llvm-project
Split ">>" in "A<B<C> >" in Chromium style.
It needs to be compatible with C++03. llvm-svn: 173805
This commit is contained in:
parent
f05d2f254e
commit
17fdaa40fc
|
@ -207,6 +207,7 @@ FormatStyle getGoogleStyle() {
|
|||
FormatStyle getChromiumStyle() {
|
||||
FormatStyle ChromiumStyle = getGoogleStyle();
|
||||
ChromiumStyle.AllowAllParametersOnNextLine = false;
|
||||
ChromiumStyle.SplitTemplateClosingGreater = true;
|
||||
return ChromiumStyle;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue