diff options
author | 2020-01-31 14:53:46 +1100 | |
---|---|---|
committer | 2020-01-31 14:53:46 +1100 | |
commit | 3536bbdd7167b3982deca3e91960658ac620fdf1 (patch) | |
tree | 2c7ebf9e8c7a0736ae68a9231de1e2420f0c5da5 /src/lib/util/options.cpp | |
parent | a984b33ada3bf472333e178a68fdb160faf3151f (diff) |
there are reasons for things being the way they were (nw)
Diffstat (limited to 'src/lib/util/options.cpp')
-rw-r--r-- | src/lib/util/options.cpp | 27 |
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 //------------------------------------------------- |