diff --git a/Vendor/SQLiteCpp/include/SQLiteCpp/Statement.h b/Vendor/SQLiteCpp/include/SQLiteCpp/Statement.h index 2f3adf7..6576d1f 100644 --- a/Vendor/SQLiteCpp/include/SQLiteCpp/Statement.h +++ b/Vendor/SQLiteCpp/include/SQLiteCpp/Statement.h @@ -134,7 +134,7 @@ class SQLITECPP_API Statement /** * @brief Bind a 64bits int value to a parameter "?", "?NNN", ":VVV", "@VVV" or "$VVV" in the SQL prepared statement (aIndex >= 1) */ - void bind(const int aIndex, const int64_t aValue); + void bind(const int aIndex, const long long int aValue); /** * @brief Bind a double (64bits float) value to a parameter "?", "?NNN", ":VVV", "@VVV" or "$VVV" in the SQL prepared statement (aIndex >= 1) */ @@ -208,7 +208,7 @@ class SQLITECPP_API Statement /** * @brief Bind a 64bits int value to a named parameter "?NNN", ":VVV", "@VVV" or "$VVV" in the SQL prepared statement (aIndex >= 1) */ - void bind(const char* apName, const int64_t aValue) + void bind(const char* apName, const long long int aValue) { bind(getIndex(apName), aValue); } diff --git a/Vendor/SQLiteCpp/src/Statement.cpp b/Vendor/SQLiteCpp/src/Statement.cpp index 96f25d0..07f8e5d 100644 --- a/Vendor/SQLiteCpp/src/Statement.cpp +++ b/Vendor/SQLiteCpp/src/Statement.cpp @@ -95,7 +95,7 @@ void Statement::bind(const int aIndex, const uint32_t aValue) } // Bind a 64bits int value to a parameter "?", "?NNN", ":VVV", "@VVV" or "$VVV" in the SQL prepared statement -void Statement::bind(const int aIndex, const int64_t aValue) +void Statement::bind(const int aIndex, const long long int aValue) { const int ret = sqlite3_bind_int64(getPreparedStatement(), aIndex, aValue); check(ret);