missing includes

technically it was wrong all the time but it only showed up with newer visual c++ compiler.
This commit is contained in:
eelke 2020-10-15 19:12:11 +02:00
parent dea76e17c5
commit 7734661d26
4 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@
#include <QSqlError> #include <QSqlError>
#include <QSqlQuery> #include <QSqlQuery>
#include <QVariant> #include <QVariant>
#include <stdexcept>
KeyStrengthener::KeyStrengthener(std::unique_ptr<Botan::PasswordHash> hasher, Botan::secure_vector<uint8_t> salt, size_t keysize) KeyStrengthener::KeyStrengthener(std::unique_ptr<Botan::PasswordHash> hasher, Botan::secure_vector<uint8_t> salt, size_t keysize)
: m_hasher (std::move(hasher)) : m_hasher (std::move(hasher))

View file

@ -1,5 +1,6 @@
#include "SqlParser.h" #include "SqlParser.h"
#include "SqlAstSelect.h" #include "SqlAstSelect.h"
#include <stdexcept>
#include <unordered_map> #include <unordered_map>
using namespace SqlAst; using namespace SqlAst;

View file

@ -4,6 +4,7 @@
#include <Pgsql_declare.h> #include <Pgsql_declare.h>
#include <QString> #include <QString>
#include <initializer_list> #include <initializer_list>
#include <memory>
#include <unordered_map> #include <unordered_map>
class PgTypeContainer; class PgTypeContainer;

View file

@ -4,6 +4,7 @@
#include <QString> #include <QString>
#include <string> #include <string>
#include "Pgsql_Canceller.h" #include "Pgsql_Canceller.h"
#include <memory>
namespace Pgsql { namespace Pgsql {