MP Options Helper: remove const qualifier from get_options_config

This commit is contained in:
Charles Dang 2016-10-25 23:40:28 +11:00
parent a520791a13
commit 1b37b12849
2 changed files with 2 additions and 2 deletions

View file

@ -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_) {

View file

@ -36,7 +36,7 @@ public:
void update_options_list();
const config get_options_config();
config get_options_config();
private:
struct option_source {