diff --git a/cpp/include/RCDB/SQLiteCpp.h b/cpp/include/RCDB/SQLiteCpp.h index e15d0d1..58cd48e 100644 --- a/cpp/include/RCDB/SQLiteCpp.h +++ b/cpp/include/RCDB/SQLiteCpp.h @@ -217,7 +217,7 @@ inline void invoke_with_index(F&& f, const Args& ... args) * @param args one or more args to bind. */ template -void bind(SQLite::Statement& s, const Args& ... args) +void bind(Statement& s, const Args& ... args) { static_assert(sizeof...(args) > 0, "please invoke bind with one or more args"); @@ -2908,4 +2908,4 @@ namespace SQLite } // namespace SQLite -#endif // SQLITE_CPP_HEADER_ \ No newline at end of file +#endif // SQLITE_CPP_HEADER_ diff --git a/cpp/include/RCDB/SqLiteProvider.h b/cpp/include/RCDB/SqLiteProvider.h index 3629230..68116d9 100644 --- a/cpp/include/RCDB/SqLiteProvider.h +++ b/cpp/include/RCDB/SqLiteProvider.h @@ -6,7 +6,7 @@ #define RCDB_CPP_SQLITEPROVIDER_H #include -#include +#include "SQLiteCpp.h" #include #include #include "DataProvider.h"