From fdb165bed6e1ae4f49e95258de0ac8233338a92d Mon Sep 17 00:00:00 2001
From: Ferenc Szontágh <szf@fsociety.hu>
Date: Tue, 02 Jul 2024 09:33:45 +0000
Subject: [PATCH] added missing return value
---
include/qtl_sqlite.hpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/qtl_sqlite.hpp b/include/qtl_sqlite.hpp
index 4246695..3ef4767 100644
--- a/include/qtl_sqlite.hpp
+++ b/include/qtl_sqlite.hpp
@@ -949,6 +949,7 @@
iblobstream &operator=(iblobstream &&src)
{
m_buffer.operator=(std::move(src.m_buffer));
+ return *this;
}
bool is_open() const { return m_buffer.is_open(); }
--
Gitblit v1.9.3