Fix clang-format

This commit is contained in:
Alex
2026-07-03 23:52:02 +02:00
parent 733c688ded
commit c4c9345fef
4 changed files with 24 additions and 26 deletions
+3 -3
View File
@@ -21,9 +21,9 @@ class CpuGraph : public AGraph {
auto update() -> void override;
private:
static constexpr const char *MODERATE_CLASS = "cpu-moderate";
static constexpr const char *HIGH_CLASS = "cpu-high";
static constexpr const char *INTENSIVE_CLASS = "cpu-intensive";
static constexpr const char* MODERATE_CLASS = "cpu-moderate";
static constexpr const char* HIGH_CLASS = "cpu-high";
static constexpr const char* INTENSIVE_CLASS = "cpu-intensive";
std::vector<std::tuple<size_t, size_t>> prev_times_;
util::SleeperThread thread_;