Skip to content

Commit 7c362e5

Browse files
committed
fix: order of C++ types after new nitro version
1 parent 5b42c38 commit 7c362e5

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
@@ -11,7 +11,7 @@ using namespace margelo::nitro::rnnitrosqlite;
1111

1212
namespace margelo::rnnitrosqlite {
1313

14-
using SQLiteValue = std::variant<std::string, double, bool, std::shared_ptr<ArrayBuffer>, SQLiteNullValue>;
14+
using SQLiteValue = std::variant<bool, std::shared_ptr<ArrayBuffer>, std::string, double, SQLiteNullValue>;
1515
using SQLiteQueryParams = std::vector<SQLiteValue>;
1616
using SQLiteQueryResultRow = std::unordered_map<std::string, SQLiteValue>;
1717
using SQLiteQueryResults = std::vector<SQLiteQueryResultRow>;

0 commit comments

Comments
 (0)