* Replace the current value with another value. * @param value the value to replace with. */
| 29 | * @param value the value to replace with. |
| 30 | */ |
| 31 | void IniItem::SetValue(std::string_view value) |
| 32 | { |
| 33 | this->value.emplace(value); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Construct a new in-memory group of an Ini file. |
no outgoing calls
no test coverage detected