Skip to content

Commit

Permalink
First release build
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed Mar 12, 2019
1 parent 2e2db23 commit 24f4fed
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file added demo/bin/osx/libgdsqlite.dylib
Binary file not shown.
Binary file added demo/bin/win64/libgdsqlite.dll
Binary file not shown.
Binary file added demo/bin/x11/libgdsqlite.so
Binary file not shown.
4 changes: 2 additions & 2 deletions src/gdsqlite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit 24f4fed

Please sign in to comment.