diff options
-rw-r--r-- | src/lib/util/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/options.cpp b/src/lib/util/options.cpp index 58d8e86ca6a..c6aee563a63 100644 --- a/src/lib/util/options.cpp +++ b/src/lib/util/options.cpp @@ -837,7 +837,7 @@ bool core_options::validate_and_set_data(core_options::entry &curentry, const ch return true; } -inline core_options::entry *core_options::get_entry(const char *name) const +core_options::entry *core_options::get_entry(const char *name) const { auto curentry = m_entrymap.find(name); return (curentry != m_entrymap.end()) ? curentry->second : nullptr; |