Skip to content
Snippets Groups Projects
Commit f9645126 authored by Sergey Linev's avatar Sergey Linev
Browse files

[sqlite] always use sqlite includes - also with cling

Old CINT was not able to parse them correctly
parent 5398d2d8
No related branches found
No related tags found
No related merge requests found
......@@ -14,12 +14,7 @@
#include "TSQLResult.h"
#if !defined(__CINT__)
#include <sqlite3.h>
#else
struct sqlite3_stmt;
#endif
class TSQLiteResult : public TSQLResult {
......
......@@ -14,12 +14,12 @@
#include "TSQLRow.h"
struct sqlite3_stmt;
#include <sqlite3.h>
class TSQLiteRow : public TSQLRow {
private:
sqlite3_stmt *fResult{nullptr}; // current result set
sqlite3_stmt *fResult{nullptr}; ///<! current result set
Bool_t IsValid(Int_t field);
public:
......
......@@ -14,11 +14,7 @@
#include "TSQLServer.h"
#if !defined(__CINT__)
#include <sqlite3.h>
#else
struct sqlite3;
#endif
class TSQLiteServer : public TSQLServer {
......
......@@ -21,7 +21,6 @@ struct SQLite3_Stmt_t {
sqlite3_stmt *fRes;
};
class TSQLiteStatement : public TSQLStatement {
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment