summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/options.cpp')
-rw-r--r--src/lib/util/options.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/lib/util/options.cpp b/src/lib/util/options.cpp
index cbc9c817dbf..fd0783ccaae 100644
--- a/src/lib/util/options.cpp
+++ b/src/lib/util/options.cpp
@@ -126,6 +126,15 @@ core_options::entry::entry(std::string &&name, core_options::option_type type, c
//-------------------------------------------------
+// entry - destructor
+//-------------------------------------------------
+
+core_options::entry::~entry()
+{
+}
+
+
+//-------------------------------------------------
// entry::value
//-------------------------------------------------
@@ -328,6 +337,15 @@ core_options::simple_entry::simple_entry(std::vector<std::string> &&names, const
//-------------------------------------------------
+// simple_entry - destructor
+//-------------------------------------------------
+
+core_options::simple_entry::~simple_entry()
+{
+}
+
+
+//-------------------------------------------------
// simple_entry::value
//-------------------------------------------------
@@ -405,6 +423,15 @@ const char *core_options::simple_entry::maximum() const noexcept
//**************************************************************************
//-------------------------------------------------
+// ~core_options - destructor
+//-------------------------------------------------
+
+core_options::~core_options()
+{
+}
+
+
+//-------------------------------------------------
// add_entry - adds an entry
//-------------------------------------------------