added missing config.hpp include

Added everywhere, where macros from the config.hpp are used.
This commit is contained in:
silverqx
2022-11-06 14:40:20 +01:00
parent f15cf21691
commit ce45f247e0
7 changed files with 11 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ TINY_SYSTEM_HEADER
#include <memory>
#include <optional>
#include "orm/config.hpp"
#include "orm/macros/export.hpp"
#include "orm/types/log.hpp"
+2
View File
@@ -5,6 +5,8 @@
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/config.hpp"
#if !defined(LOG_EXECUTED_QUERY) && !defined(TINYORM_NO_DEBUG)
# include "orm/utils/query.hpp"
#endif
@@ -5,6 +5,8 @@
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/config.hpp"
#ifdef TINYORM_DEBUG
# include <QDebug>
#endif
@@ -5,6 +5,8 @@
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/config.hpp"
#ifdef TINY_NO_INCOMPLETE_UNORDERED_MAP
# include <map>
#else
+1
View File
@@ -1,5 +1,6 @@
#include "orm/libraryinfo.hpp"
#include "orm/config.hpp"
#include "orm/macros/archdetect.hpp"
#include "orm/macros/compilerdetect.hpp"
#include "orm/version.hpp"
+2
View File
@@ -2,6 +2,8 @@
#include <QString>
#include "orm/config.hpp"
#if !defined(__clang__) && \
!defined(TINYORM_NO_DEBUG) && defined(_MSC_VER) && !defined(Q_OS_WINRT)
# include <qt_windows.h>
@@ -9,6 +9,7 @@
#include <orm/constants.hpp>
#include <orm/utils/type.hpp>
#include "tom/config.hpp"
#include "tom/commands/stubs/integratestubs.hpp"
#include "tom/exceptions/runtimeerror.hpp"