Mercurial > hg > orthanc
changeset 1474:3b68924ffb24
fix path to sqlite
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 01 Aug 2015 19:52:22 +0200 |
parents | 0631b56c35eb |
children | 3a5b8ed2d859 |
files | Core/SQLite/Connection.cpp Core/SQLite/FunctionContext.cpp Core/SQLite/Statement.cpp |
diffstat | 3 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Core/SQLite/Connection.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/Connection.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -44,13 +44,14 @@ #include <memory> #include <cassert> -#include <sqlite3.h> #include <string.h> #if ORTHANC_SQLITE_STANDALONE != 1 #include <glog/logging.h> #endif +#include "sqlite3.h" + namespace Orthanc {
--- a/Core/SQLite/FunctionContext.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/FunctionContext.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -39,9 +39,10 @@ #include "FunctionContext.h" #include "OrthancSQLiteException.h" -#include <sqlite3.h> #include <string> +#include "sqlite3.h" + namespace Orthanc { namespace SQLite
--- a/Core/SQLite/Statement.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/Statement.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -42,7 +42,6 @@ #include "Statement.h" #include "Connection.h" -#include <sqlite3.h> #include <string.h> #include <stdio.h> #include <algorithm> @@ -51,6 +50,8 @@ #include <glog/logging.h> #endif +#include "sqlite3.h" + #if defined(_MSC_VER) #define snprintf _snprintf #endif