diff --git a/demo/bin/osx/libgdsqlite.dylib b/demo/bin/osx/libgdsqlite.dylib new file mode 100644 index 0000000..3f7ed6c Binary files /dev/null and b/demo/bin/osx/libgdsqlite.dylib differ diff --git a/demo/bin/win64/libgdsqlite.dll b/demo/bin/win64/libgdsqlite.dll new file mode 100644 index 0000000..c4cc43d Binary files /dev/null and b/demo/bin/win64/libgdsqlite.dll differ diff --git a/demo/bin/x11/libgdsqlite.so b/demo/bin/x11/libgdsqlite.so new file mode 100644 index 0000000..f968256 Binary files /dev/null and b/demo/bin/x11/libgdsqlite.so differ diff --git a/src/gdsqlite.cpp b/src/gdsqlite.cpp index 17fc39f..bfa330d 100644 --- a/src/gdsqlite.cpp +++ b/src/gdsqlite.cpp @@ -56,7 +56,7 @@ bool SQLite::open_db() /* Find the real path */ path = ProjectSettings::get_singleton()->globalize_path(path.strip_edges()); - /* C++ Garbage collector deletes CharString object when not assigned explicitely */ + /* CharString object goes out-of-scope when not assigned explicitely */ const CharString dummy_path = path.utf8(); const char *char_path = dummy_path.get_data(); @@ -137,7 +137,7 @@ bool SQLite::query(String p_query) { Godot::print(p_query); } - /* C++ Garbage collector deletes CharString object when not assigned explicitely */ + /* CharString object goes out-of-scope when not assigned explicitely */ const CharString dummy = p_query.utf8(); sql = dummy.get_data();