Merge pull request #3377 from fglinka/master

Fix build error on Ubuntu 22.04
This commit is contained in:
Alexis Rouillard
2024-07-01 09:21:56 +02:00
committed by GitHub

View File

@ -10,6 +10,8 @@ namespace waybar::modules {
struct Profile { struct Profile {
std::string name; std::string name;
std::string driver; std::string driver;
Profile(std::string n, std::string d) : name(std::move(n)), driver(std::move(d)) {}
}; };
class PowerProfilesDaemon : public ALabel { class PowerProfilesDaemon : public ALabel {