Fix #104
This commit is contained in:
parent
78c8b14ee8
commit
e815a8e1d2
|
@ -22,5 +22,5 @@ file instead, and output will be written to ```stdout```.
|
|||
* ```--braces=otbs```: Use ["The One True Brace Style"](https://en.wikipedia.org/wiki/Indent_style#Variant:_1TBS), placing open braces on
|
||||
the same line as the previous token.
|
||||
* ```--braces=allman```: Use ["Allman Style"](https://en.wikipedia.org/wiki/Indent_style#Allman_style),
|
||||
placing opening braces on their own line. This is the default
|
||||
* ```--tabs```: Use tabs for indentation instead of spaces
|
||||
placing opening braces on their own line. This is the default.
|
||||
* ```--tabs```: Use tabs for indentation instead of spaces.
|
||||
|
|
|
@ -519,7 +519,7 @@ private:
|
|||
if (!justAddedExtraNewline && !peekBackIsOneOf(false, tok!"{",
|
||||
tok!"}", tok!";", tok!";"))
|
||||
{
|
||||
if (config.braceStyle == BraceStyle.otbs)
|
||||
if (config.braceStyle != BraceStyle.allman)
|
||||
{
|
||||
if (!astInformation.structInitStartLocations.canFindIndex(tokens[index].index)
|
||||
&& !astInformation.funLitStartLocations.canFindIndex(
|
||||
|
|
Loading…
Reference in New Issue