mirror of
https://github.com/polybar/polybar.git
synced 2026-03-31 12:37:15 +00:00
fix(restack): Add missing virtual dstructor to wm_restacker.
This commit is contained in:
@ -15,6 +15,7 @@ namespace restack {
|
||||
|
||||
struct wm_restacker {
|
||||
virtual void operator()(connection& conn, const bar_settings& opts, const logger& log) const = 0;
|
||||
virtual ~wm_restacker() = default;
|
||||
};
|
||||
|
||||
using restacker_map = std::unordered_map<std::string, std::unique_ptr<wm_restacker>>;
|
||||
|
||||
Reference in New Issue
Block a user