diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-02-11 14:33:35 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-11 14:33:35 +0100 |
commit | cbcd149ce508dfe8ff508391f9e32b7dc2cfbe5c (patch) | |
tree | a0b8f575b1fba587e90781e43b4f94f4bbc7a812 /src/common/DataStores/DB2FileLoader.cpp | |
parent | 5b02c53fc568edd96ab557a8dd4d0195bcc9ec8c (diff) |
Core/Misc: Explicitly include required headers instead of relying on them to be included by other headers
Diffstat (limited to 'src/common/DataStores/DB2FileLoader.cpp')
-rw-r--r-- | src/common/DataStores/DB2FileLoader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/DataStores/DB2FileLoader.cpp b/src/common/DataStores/DB2FileLoader.cpp index 71475a2a2d9..fc5337a452e 100644 --- a/src/common/DataStores/DB2FileLoader.cpp +++ b/src/common/DataStores/DB2FileLoader.cpp @@ -20,8 +20,10 @@ #include "DB2Meta.h" #include "Errors.h" #include "Log.h" +#include <limits> #include <sstream> #include <system_error> +#include <cstring> enum class DB2ColumnCompression : uint32 { |