We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a596a commit c61e172Copy full SHA for c61e172
2 files changed
src/RemoteDatabase.cpp
@@ -14,6 +14,8 @@
14
#include <QTimeZone>
15
#include <json.hpp>
16
17
+#include <iterator>
18
+
19
#include "RemoteDatabase.h"
20
#include "version.h"
21
#include "Settings.h"
src/sql/sqlitetypes.cpp
@@ -3,10 +3,11 @@
3
#include "grammar/Sqlite3Lexer.hpp"
4
#include "grammar/Sqlite3Parser.hpp"
5
6
-#include <sstream>
7
-#include <iostream>
8
#include <clocale> // This include seems to only be necessary for the Windows build
+#include <iostream>
9
#include <numeric>
10
+#include <sstream>
11
12
namespace {
13
bool starts_with_ci(const std::string& str, const std::string& with)
0 commit comments