[A] Added more warnings to the compilation
This commit is contained in:
@@ -667,6 +667,7 @@ fort_row_t *copy_row(fort_row_t *row);
|
||||
FT_INTERNAL
|
||||
fort_row_t *create_row_from_string(const char *str);
|
||||
|
||||
FT_PRINTF_ATTRIBUTE_FORMAT(1, 0)
|
||||
FT_INTERNAL
|
||||
fort_row_t *create_row_from_fmt_string(const char *fmt, va_list *va_args);
|
||||
|
||||
@@ -2302,7 +2303,7 @@ void ft_set_cur_cell(ft_table_t *table, size_t row, size_t col)
|
||||
table->cur_col = col;
|
||||
}
|
||||
|
||||
|
||||
FT_PRINTF_ATTRIBUTE_FORMAT(3, 0)
|
||||
static int ft_row_printf_impl(ft_table_t *table, size_t row, const char *fmt, va_list *va)
|
||||
{
|
||||
#define CREATE_ROW_FROM_FMT_STRING create_row_from_fmt_string
|
||||
|
@@ -588,8 +588,8 @@ public:
|
||||
class table_cell_iterator
|
||||
{
|
||||
public:
|
||||
table_cell_iterator(std::size_t row_idx, std::size_t coll_idx,Table &table)
|
||||
:row_idx_(row_idx), coll_idx_(coll_idx), table_(table) {}
|
||||
table_cell_iterator(std::size_t row_idx, std::size_t coll_idx, Table &tbl)
|
||||
:row_idx_(row_idx), coll_idx_(coll_idx), table_(tbl) {}
|
||||
|
||||
table_cell_iterator& operator=(const char *str)
|
||||
{
|
||||
@@ -607,8 +607,8 @@ public:
|
||||
class table_row_iterator
|
||||
{
|
||||
public:
|
||||
table_row_iterator(std::size_t row_idx, Table &table)
|
||||
:row_idx_(row_idx), table_(table) {}
|
||||
table_row_iterator(std::size_t row_idx, Table &tbl)
|
||||
:row_idx_(row_idx), table_(tbl) {}
|
||||
|
||||
class table_cell_iterator
|
||||
operator[](std::size_t coll_idx)
|
||||
|
Reference in New Issue
Block a user