Skip to content

Commit 0d4a535

Browse files
committed
fix: inline mapSQLiteTypeToColumnType
1 parent 9571e51 commit 0d4a535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/cpp/types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ struct SQLiteExecuteQueryResult {
3232
};
3333

3434
// constexpr function that maps SQLiteColumnType to string literals
35-
ColumnType mapSQLiteTypeToColumnType(const char* type) {
35+
inline ColumnType mapSQLiteTypeToColumnType(const char* type) {
3636
if (strcmp(type, "BOOLEAN")) {
3737
return ColumnType::BOOLEAN;
3838
} else if (strcmp(type, "FLOAT")) {

0 commit comments

Comments
 (0)