| 88 | } |
| 89 | |
| 90 | void push(std::unique_ptr<SettingChangeBase> pSettingChange) { |
| 91 | m_settingChanges.push_back(std::move(pSettingChange)); |
| 92 | } |
| 93 | |
| 94 | private: |
| 95 | using setting_changes = std::vector<std::unique_ptr<SettingChangeBase>>; |
no test coverage detected