get rid of few warnings

This commit is contained in:
2022-01-16 15:04:34 +01:00
parent a1eb0eecbb
commit 44b615959c
6 changed files with 8 additions and 9 deletions

View File

@@ -52,7 +52,7 @@ int ColBooleanValue::compare(ColValue &other) const {
return m_bool == other.getBoolValue() ? 0 : m_bool && !other.getBoolValue() ? -1 : 1; // true first
}
Row::Row(const Row &other) : m_columns(other.m_columns.size()), m_visible(other.m_visible) {
Row::Row(const Row &other) : m_visible(other.m_visible), m_columns(other.m_columns.size()) {
for (int i = 0; i < other.m_columns.size(); i++) {
if (other[i].isNull())
continue; // for null NOP