Skip to content

Commit 032d64f

Browse files
committed
fix: std::nullopt not callable
1 parent 4825191 commit 032d64f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/cpp/operations.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ SQLiteExecuteQueryResult sqliteExecute(const std::string& dbName, const std::str
145145
ColumnType column_declared_type;
146146
SQLiteQueryResultRow row;
147147
SQLiteQueryResults results;
148-
std::optional<SQLiteQueryTableMetadata> metadata = std::nullopt();
148+
std::optional<SQLiteQueryTableMetadata> metadata = std::nullopt;
149149

150150
while (isConsuming) {
151151
result = sqlite3_step(statement);

0 commit comments

Comments
 (0)