fix: lint

This commit is contained in:
Alex
2023-10-17 19:29:06 +02:00
parent 4d7eb3bd15
commit 208928ded5
3 changed files with 4 additions and 3 deletions

View File

@ -21,7 +21,8 @@ class CpuUsage : public ALabel {
auto update() -> void override;
// This is a static member because it is also used by the cpu module.
static std::tuple<std::vector<uint16_t>, std::string> getCpuUsage(std::vector<std::tuple<size_t, size_t>>&);
static std::tuple<std::vector<uint16_t>, std::string> getCpuUsage(
std::vector<std::tuple<size_t, size_t>>&);
private:
static std::vector<std::tuple<size_t, size_t>> parseCpuinfo();

View File

@ -24,7 +24,6 @@ class Load : public ALabel {
static std::tuple<double, double, double> getLoad();
private:
util::SleeperThread thread_;
};