| 492 | |
| 493 | template<typename T> |
| 494 | void Value<T>::GetListIfExists(FEXCore::Config::ConfigOption Option, DefaultValues::Type::StringArrayType* List) { |
| 495 | auto Value = FEXCore::Config::All(Option); |
| 496 | List->clear(); |
| 497 | if (Value) { |
| 498 | *List = **Value; |
| 499 | } |
| 500 | } |
| 501 | template void Value<DefaultValues::Type::StringArrayType>::GetListIfExists(FEXCore::Config::ConfigOption Option, |
| 502 | DefaultValues::Type::StringArrayType* List); |
| 503 | } // namespace FEXCore::Config |