Fix a missing-braces warning for initialization of subobject

This commit is contained in:
Stephan Witt 2015-10-24 21:10:36 +02:00
parent 2a3b54d57b
commit 23a3148c02

View File

@ -75,7 +75,7 @@ void TexRow::RowEntryList::append(RowEntryList const & row)
TexRow::TextEntry const TexRow::text_none = { -1, 0 };
TexRow::RowEntry const TexRow::row_none = { false, TexRow::text_none };
TexRow::RowEntry const TexRow::row_none = { false, { TexRow::text_none } };
bool TexRow::isNone(TextEntry const & t)