| 450 | |
| 451 | #if defined(_WIN32) && !defined(__CYGWIN__) |
| 452 | void Replace(std::string const& value) |
| 453 | { |
| 454 | this->Expression.replace( |
| 455 | this->RegistryFormat.start(), |
| 456 | this->RegistryFormat.end() - this->RegistryFormat.start(), value); |
| 457 | } |
| 458 | |
| 459 | cm::string_view GetRootKey() const { return this->RootKey; } |
| 460 |
no test coverage detected