diff options
author | 2016-04-03 18:54:04 +0200 | |
---|---|---|
committer | 2016-04-03 18:54:04 +0200 | |
commit | 1aa8a350d3b4e5dedd5ad5d19294570e64a9dc1b (patch) | |
tree | be8610334b82dddfd969fcffc264de5c8a0b83e7 /src/lib/util/options.cpp | |
parent | 37f39ecf3cc38737b79f030be67debba687be962 (diff) |
fix: inline not allowed. (nw)
Diffstat (limited to 'src/lib/util/options.cpp')
-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; |