Merge pull request #676 from therocode/master

Fixed incorrect indentation #676
This commit is contained in:
Christophe 2017-08-31 12:57:21 +02:00 committed by GitHub
commit 13ccb5154f

View File

@ -409,7 +409,7 @@ namespace detail
if(0 != i) if(0 != i)
os << fmt.space; os << fmt.space;
os << column(ml, i) << ((cols-1 != i) ? fmt.space : fmt.delim_right) << fmt.space << ((0 != i) ? fmt.space : fmt.delim_left) << column(mr, i); os << column(ml, i) << ((cols-1 != i) ? fmt.space : fmt.delim_right) << fmt.space << ((0 != i) ? fmt.space : fmt.delim_left) << column(mr, i);
if(cols-1 != i) if(cols-1 != i)
os << fmt.newline; os << fmt.newline;