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
commit 3262b375c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

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