# HG changeset patch # User Sebastien Jodogne # Date 1416392134 -3600 # Node ID 3f62e1269ccae26c390c80a441aaf4b56cbc942a # Parent 4c649dbeb61a66c784494f3af9cdc6f8cb8d5fdc fixes diff -r 4c649dbeb61a -r 3f62e1269cca Core/SQLite/Statement.cpp --- a/Core/SQLite/Statement.cpp Wed Nov 19 11:10:27 2014 +0100 +++ b/Core/SQLite/Statement.cpp Wed Nov 19 11:15:34 2014 +0100 @@ -37,7 +37,6 @@ #if ORTHANC_SQLITE_STANDALONE != 1 #include "../PrecompiledHeaders.h" -#include #endif #include "Statement.h" @@ -48,6 +47,10 @@ #include #include +#if ORTHANC_SQLITE_STANDALONE != 1 +#include +#endif + #if defined(_MSC_VER) #define snprintf _snprintf #endif diff -r 4c649dbeb61a -r 3f62e1269cca Core/SQLite/StatementReference.cpp --- a/Core/SQLite/StatementReference.cpp Wed Nov 19 11:10:27 2014 +0100 +++ b/Core/SQLite/StatementReference.cpp Wed Nov 19 11:15:34 2014 +0100 @@ -37,12 +37,15 @@ #if ORTHANC_SQLITE_STANDALONE != 1 #include "../PrecompiledHeaders.h" -#include #endif #include "StatementReference.h" #include "OrthancSQLiteException.h" +#if ORTHANC_SQLITE_STANDALONE != 1 +#include +#endif + #include #include "sqlite3.h"