diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-08-16 20:00:36 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-08-16 20:00:36 +0200 |
commit | 82b119da914e81630120a4bf2f5676812b53b85c (patch) | |
tree | ca42a831796b914103f25f3d0b0e0e2fd6287cc2 /src/common/DataStores/DB2FileLoader.cpp | |
parent | 7c76a394a569739e64d5e02d53400a5fced33bd3 (diff) |
Core/DataStores: Sprinkle some constexpr on db2 meta
Diffstat (limited to 'src/common/DataStores/DB2FileLoader.cpp')
-rw-r--r-- | src/common/DataStores/DB2FileLoader.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/DataStores/DB2FileLoader.cpp b/src/common/DataStores/DB2FileLoader.cpp index fc5337a452e..c802b96d63b 100644 --- a/src/common/DataStores/DB2FileLoader.cpp +++ b/src/common/DataStores/DB2FileLoader.cpp @@ -109,11 +109,6 @@ struct DB2IndexData std::vector<DB2IndexEntry> Entries; }; -DB2FieldMeta::DB2FieldMeta(bool isSigned, DBCFormer type, char const* name) - : IsSigned(isSigned), Type(type), Name(name) -{ -} - DB2FileLoadInfo::DB2FileLoadInfo(DB2FieldMeta const* fields, std::size_t fieldCount, DB2Meta const* meta) : Fields(fields), FieldCount(fieldCount), Meta(meta) { |