MP Options Helper: remove const qualifier from get_options_config
This commit is contained in:
parent
a520791a13
commit
1b37b12849
2 changed files with 2 additions and 2 deletions
|
@ -233,7 +233,7 @@ void tmp_options_helper::display_custom_options(std::string&& type, const config
|
|||
}
|
||||
}
|
||||
|
||||
const config tmp_options_helper::get_options_config()
|
||||
config tmp_options_helper::get_options_config()
|
||||
{
|
||||
config options;
|
||||
for(const auto& source : visible_options_) {
|
||||
|
|
|
@ -36,7 +36,7 @@ public:
|
|||
|
||||
void update_options_list();
|
||||
|
||||
const config get_options_config();
|
||||
config get_options_config();
|
||||
|
||||
private:
|
||||
struct option_source {
|
||||
|
|
Loading…
Add table
Reference in a new issue