From 82b119da914e81630120a4bf2f5676812b53b85c Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 16 Aug 2022 20:00:36 +0200 Subject: Core/DataStores: Sprinkle some constexpr on db2 meta --- src/common/DataStores/DB2Meta.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/common/DataStores/DB2Meta.cpp') 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; -- cgit v1.2.3