aboutsummaryrefslogtreecommitdiff
path: root/src/common/DataStores/DB2Meta.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-08-16 20:00:36 +0200
committerShauren <shauren.trinity@gmail.com>2022-08-16 20:00:36 +0200
commit82b119da914e81630120a4bf2f5676812b53b85c (patch)
treeca42a831796b914103f25f3d0b0e0e2fd6287cc2 /src/common/DataStores/DB2Meta.cpp
parent7c76a394a569739e64d5e02d53400a5fced33bd3 (diff)
Core/DataStores: Sprinkle some constexpr on db2 meta
Diffstat (limited to 'src/common/DataStores/DB2Meta.cpp')
-rw-r--r--src/common/DataStores/DB2Meta.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/common/DataStores/DB2Meta.cpp b/src/common/DataStores/DB2Meta.cpp
index 9b35353ce4f..b23dacee34a 100644
--- a/src/common/DataStores/DB2Meta.cpp
+++ b/src/common/DataStores/DB2Meta.cpp
@@ -19,15 +19,6 @@
#include "Common.h"
#include "Errors.h"
-DB2MetaField::DB2MetaField(DBCFormer type, uint8 arraySize, bool isSigned) : Type(type), ArraySize(arraySize), IsSigned(isSigned)
-{
-}
-
-DB2Meta::DB2Meta(uint32 fileDataId, int32 indexField, uint32 fieldCount, uint32 fileFieldCount, uint32 layoutHash, DB2MetaField const* fields, int32 parentIndexField)
- : FileDataId(fileDataId),IndexField(indexField), ParentIndexField(parentIndexField), FieldCount(fieldCount), FileFieldCount(fileFieldCount), LayoutHash(layoutHash), Fields(fields)
-{
-}
-
bool DB2Meta::HasIndexFieldInData() const
{
return IndexField != -1;