C++ indenter: Fix 'else' indentation in GNU style.

This commit is contained in:
Christian Kamm
2010-07-06 09:44:04 +02:00
parent fbf2efa5f6
commit 793ef6a694
2 changed files with 9 additions and 0 deletions

View File

@@ -713,6 +713,13 @@ void tst_CodeFormatter::gnuStyle()
<< Line(" {")
<< Line(" fpp;")
<< Line(" }")
<< Line(" else if (b)")
<< Line(" {")
<< Line(" fpp;")
<< Line(" }")
<< Line(" else")
<< Line(" {")
<< Line(" }")
<< Line(" if (b) {")
<< Line(" fpp;")
<< Line(" }")