| 130 | } |
| 131 | |
| 132 | Settings::Settings(std::wstring_view ini_filepath) |
| 133 | : m_ini_filepath(ini_filepath) { |
| 134 | settings_changed.connect([this] { on_settings_changed(); }); |
| 135 | } |
| 136 | |
| 137 | const std::wregex *Settings::get_ignore_regexp() const { |
| 138 | return std::get_if<std::wregex> (&data.ignore_regexp); |
nothing calls this directly
no test coverage detected