[libc++][NFC] Consistently reindent test cases for stringbuf

This commit is contained in:
Louis Dionne 2021-09-09 15:16:03 -04:00
parent 05eaa2b42f
commit 53438979fe
2 changed files with 8 additions and 6 deletions

View File

@ -38,9 +38,10 @@ struct testbuf
int main(int, char**)
{
{ // sanity check
testbuf<char> tb("");
tb.overflow();
// sanity check
{
testbuf<char> tb("");
tb.overflow();
}
{
testbuf<char> sb("abc");

View File

@ -36,9 +36,10 @@ struct testbuf
int main(int, char**)
{
{ // sanity check
testbuf<char> tb("");
tb.pbackfail();
// sanity check
{
testbuf<char> tb("");
tb.pbackfail();
}
{
testbuf<char> sb("123", std::ios_base::in);