From c61e172afe5f387c21f69255debac71e748e9093 Mon Sep 17 00:00:00 2001 From: Martin Kleusberg Date: Tue, 7 May 2019 21:53:09 +0200 Subject: [PATCH] Attempt to fix the build on some platforms - again See issue #1879. --- src/RemoteDatabase.cpp | 2 ++ src/sql/sqlitetypes.cpp | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/RemoteDatabase.cpp b/src/RemoteDatabase.cpp index 1d7656c4..79b9842d 100644 --- a/src/RemoteDatabase.cpp +++ b/src/RemoteDatabase.cpp @@ -14,6 +14,8 @@ #include #include +#include + #include "RemoteDatabase.h" #include "version.h" #include "Settings.h" diff --git a/src/sql/sqlitetypes.cpp b/src/sql/sqlitetypes.cpp index 585efc01..444a4551 100644 --- a/src/sql/sqlitetypes.cpp +++ b/src/sql/sqlitetypes.cpp @@ -3,10 +3,11 @@ #include "grammar/Sqlite3Lexer.hpp" #include "grammar/Sqlite3Parser.hpp" -#include -#include #include // This include seems to only be necessary for the Windows build +#include +#include #include +#include namespace { bool starts_with_ci(const std::string& str, const std::string& with)