summaryrefslogtreecommitdiff
path: root/src/resources/db/itemdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/db/itemdb.cpp')
-rw-r--r--src/resources/db/itemdb.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp
index 09a5ce08f..939568f29 100644
--- a/src/resources/db/itemdb.cpp
+++ b/src/resources/db/itemdb.cpp
@@ -67,6 +67,24 @@ namespace
{
struct FieldType
{
+/*
+ FieldType() :
+ name(nullptr),
+ description(nullptr),
+ sign(false)
+ { }
+*/
+
+ FieldType(const char *const name0,
+ const char *const description0,
+ const bool sign0) :
+ name(name0),
+ description(description0),
+ sign(sign0)
+ { }
+
+ A_DELETE_COPY(FieldType)
+
const char *name;
const char *description;
const bool sign;