fixed some query record tests

This commit is contained in:
2025-09-30 22:30:34 +02:00
parent b40fcf0d67
commit 5d2d6d4a30
2 changed files with 36 additions and 3 deletions
+3 -1
View File
@@ -130,7 +130,9 @@ public:
public:
explicit query_result(std::unique_ptr<query_result_impl> &&impl)
: impl_(std::move(impl))
, creator_([this]{ return detail::create_prototype<Type>(impl_->prototype()); } ) {}
, creator_([this] {
return detail::create_prototype<Type>(impl_->prototype());
}) {}
query_result(std::unique_ptr<query_result_impl> &&impl, creator_func&& creator)
: impl_(std::move(impl))