Skip to content

Commit 4c70618

Browse files
committed
Fix number of members in array
This was forgotten when the contents of the array changed in b699cde.
1 parent c3c49ff commit 4c70618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flex-table-column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct column_type_lookup
2727
char const *name() const noexcept { return m_name; }
2828
};
2929

30-
static std::array<column_type_lookup, 26> const column_types = {
30+
static std::array<column_type_lookup, 25> const column_types = {
3131
{{"text", table_column_type::text},
3232
{"boolean", table_column_type::boolean},
3333
{"bool", table_column_type::boolean},

0 commit comments

Comments
 (0)