aboutsummaryrefslogtreecommitdiff
path: root/src/base.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2019-08-13 14:03:51 +0100
committerGravatar Peter Powell2019-08-13 15:02:25 +0100
commit703ba72071b970caaa7554b1e58a13def57694dc (patch)
tree6db8b7595071d6114397350ebd8611e63056779f /src/base.cpp
parentUpdate the mailmap with a bunch of new names. (diff)
Convert LocalExtItem to a typedef and deprecate it.
Diffstat (limited to 'src/base.cpp')
-rw-r--r--src/base.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/base.cpp b/src/base.cpp
index afd561ff2..b4ea09bc9 100644
--- a/src/base.cpp
+++ b/src/base.cpp
@@ -284,15 +284,6 @@ void ExtensionItem::unserialize(SerializeFormat format, Extensible* container, c
}
}
-LocalExtItem::LocalExtItem(const std::string& Key, ExtensibleType exttype, Module* mod)
- : ExtensionItem(Key, exttype, mod)
-{
-}
-
-LocalExtItem::~LocalExtItem()
-{
-}
-
LocalStringExt::LocalStringExt(const std::string& Key, ExtensibleType exttype, Module* Owner)
: SimpleExtItem<std::string>(Key, exttype, Owner)
{
@@ -313,7 +304,7 @@ void LocalStringExt::FromInternal(Extensible* container, const std::string& valu
}
LocalIntExt::LocalIntExt(const std::string& Key, ExtensibleType exttype, Module* mod)
- : LocalExtItem(Key, exttype, mod)
+ : ExtensionItem(Key, exttype, mod)
{
}