From a6c426f1c3761660e804441c5bda9263724be181 Mon Sep 17 00:00:00 2001
From: Ferenc Szontágh <szf@fsociety.hu>
Date: Mon, 01 Jul 2024 18:28:48 +0000
Subject: [PATCH] missing return values
---
include/qtl_sqlite.hpp | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/qtl_sqlite.hpp b/include/qtl_sqlite.hpp
index 658c3c9..4246695 100644
--- a/include/qtl_sqlite.hpp
+++ b/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_
+
--
Gitblit v1.9.3