Skip to content

Commit 0a014ee

Browse files
committed
fix: missing HybridObject base constructor call
1 parent e50582b commit 0a014ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/cpp/specs/HybridNativeQueryResult.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace margelo::nitro::rnnitrosqlite {
1111
class HybridNativeQueryResult : public HybridNativeQueryResultSpec {
1212
public:
1313
HybridNativeQueryResult() : HybridObject(TAG) {}
14-
HybridNativeQueryResult(SQLiteExecuteQueryResult&& result): _result(std::move(result)) {}
14+
HybridNativeQueryResult(SQLiteExecuteQueryResult&& result): HybridObject(TAG), _result(std::move(result)) {}
1515

1616
private:
1717
SQLiteExecuteQueryResult _result;

0 commit comments

Comments
 (0)