From 7734661d26877be761c37aa8628736b4edda854d Mon Sep 17 00:00:00 2001 From: eelke Date: Thu, 15 Oct 2020 19:12:11 +0200 Subject: [PATCH] missing includes technically it was wrong all the time but it only showed up with newer visual c++ compiler. --- core/KeyStrengthener.cpp | 1 + core/SqlParser.cpp | 1 + pglablib/codebuilder/TypeMappings.h | 1 + pgsql/Pgsql_Transaction.h | 1 + 4 files changed, 4 insertions(+) diff --git a/core/KeyStrengthener.cpp b/core/KeyStrengthener.cpp index 2aa18a7..a1c01b8 100644 --- a/core/KeyStrengthener.cpp +++ b/core/KeyStrengthener.cpp @@ -4,6 +4,7 @@ #include #include #include +#include KeyStrengthener::KeyStrengthener(std::unique_ptr hasher, Botan::secure_vector salt, size_t keysize) : m_hasher (std::move(hasher)) diff --git a/core/SqlParser.cpp b/core/SqlParser.cpp index 38354bd..5b63c68 100644 --- a/core/SqlParser.cpp +++ b/core/SqlParser.cpp @@ -1,5 +1,6 @@ #include "SqlParser.h" #include "SqlAstSelect.h" +#include #include using namespace SqlAst; diff --git a/pglablib/codebuilder/TypeMappings.h b/pglablib/codebuilder/TypeMappings.h index 3ff556d..0c424e9 100644 --- a/pglablib/codebuilder/TypeMappings.h +++ b/pglablib/codebuilder/TypeMappings.h @@ -4,6 +4,7 @@ #include #include #include +#include #include class PgTypeContainer; diff --git a/pgsql/Pgsql_Transaction.h b/pgsql/Pgsql_Transaction.h index dc6ab06..d6a740d 100644 --- a/pgsql/Pgsql_Transaction.h +++ b/pgsql/Pgsql_Transaction.h @@ -4,6 +4,7 @@ #include #include #include "Pgsql_Canceller.h" +#include namespace Pgsql {