Ferenc Szontágh
2024-07-01 a6c426f1c3761660e804441c5bda9263724be181
missing return values
1 files modified
3 ■■■■■ changed files
include/qtl_sqlite.hpp 3 ●●●●● patch | view | raw | blame | history
include/qtl_sqlite.hpp
@@ -1007,6 +1007,7 @@
            oblobstream &operator=(oblobstream &&src)
            {
                m_buffer.operator=(std::move(src.m_buffer));
                return *this;
            }
            bool is_open() const { return m_buffer.is_open(); }
@@ -1065,6 +1066,7 @@
            blobstream &operator=(blobstream &&src)
            {
                m_buffer.operator=(std::move(src.m_buffer));
                return *this;
            }
            bool is_open() const { return m_buffer.is_open(); }
@@ -1132,3 +1134,4 @@
}
#endif //_QTL_SQLITE_H_