[F] Fixed compiler warnings
This commit is contained in:
parent
806cfb5950
commit
63c01a7419
@ -203,8 +203,6 @@ public:
|
|||||||
template <typename T, typename ...Ts>
|
template <typename T, typename ...Ts>
|
||||||
bool write_ln(const T &arg, const Ts &...args)
|
bool write_ln(const T &arg, const Ts &...args)
|
||||||
{
|
{
|
||||||
if (sizeof...(args) == 0)
|
|
||||||
return write_ln(arg);
|
|
||||||
return write(arg) && write_ln(args...);
|
return write(arg) && write_ln(args...);
|
||||||
}
|
}
|
||||||
#else /* __cpp_variadic_templates */
|
#else /* __cpp_variadic_templates */
|
||||||
@ -546,7 +544,7 @@ public:
|
|||||||
Table &table_;
|
Table &table_;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct table_row_iterator
|
class table_row_iterator
|
||||||
operator[](std::size_t row_idx)
|
operator[](std::size_t row_idx)
|
||||||
{
|
{
|
||||||
return table_row_iterator(row_idx, *this);
|
return table_row_iterator(row_idx, *this);
|
||||||
|
Loading…
Reference in New Issue
Block a user