Add suggestion by clang-format
This commit is contained in:
parent
c4d769a586
commit
136b207a12
|
@ -11,9 +11,7 @@ struct Profile {
|
||||||
std::string name;
|
std::string name;
|
||||||
std::string driver;
|
std::string driver;
|
||||||
|
|
||||||
Profile(std::string n, std::string d)
|
Profile(std::string n, std::string d) : name(std::move(n)), driver(std::move(d)) {}
|
||||||
: name(std::move(n)), driver(std::move(d)){
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class PowerProfilesDaemon : public ALabel {
|
class PowerProfilesDaemon : public ALabel {
|
||||||
|
|
Loading…
Reference in New Issue