Add suggestion by clang-format

This commit is contained in:
Felix Glinka 2024-06-21 16:43:21 +02:00
parent c4d769a586
commit 136b207a12
1 changed files with 1 additions and 3 deletions

View File

@ -11,9 +11,7 @@ struct Profile {
std::string name;
std::string driver;
Profile(std::string n, std::string d)
: name(std::move(n)), driver(std::move(d)){
}
Profile(std::string n, std::string d) : name(std::move(n)), driver(std::move(d)) {}
};
class PowerProfilesDaemon : public ALabel {