| 611 | #undef INSTANTIATE_INT_TYPE |
| 612 | |
| 613 | bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strValue) |
| 614 | { |
| 615 | LOCK(cs_args); |
| 616 | if (!GetSetting_(strArg).isNull()) return false; |
| 617 | m_settings.forced_settings[SettingName(strArg)] = strValue; |
| 618 | return true; |
| 619 | } |
| 620 | |
| 621 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 622 | { |