From 9d741f89e2ff92d063629401716ebe4d0e25a37b Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 1 Jul 2023 11:12:14 +0200 Subject: [PATCH] fix: lint --- include/modules/hyprland/backend.hpp | 1 + include/modules/sway/ipc/client.hpp | 2 +- src/modules/network.cpp | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/modules/hyprland/backend.hpp b/include/modules/hyprland/backend.hpp index 179c82f0..e23b1582 100644 --- a/include/modules/hyprland/backend.hpp +++ b/include/modules/hyprland/backend.hpp @@ -5,6 +5,7 @@ #include #include #include + #include "util/json.hpp" namespace waybar::modules::hyprland { diff --git a/include/modules/sway/ipc/client.hpp b/include/modules/sway/ipc/client.hpp index 1ab02925..a9a3e4e9 100644 --- a/include/modules/sway/ipc/client.hpp +++ b/include/modules/sway/ipc/client.hpp @@ -7,8 +7,8 @@ #include #include -#include #include +#include #include #include "ipc.hpp" diff --git a/src/modules/network.cpp b/src/modules/network.cpp index d9005ddd..e3d0f358 100644 --- a/src/modules/network.cpp +++ b/src/modules/network.cpp @@ -94,7 +94,8 @@ waybar::modules::Network::Network(const std::string &id, const Json::Value &conf #ifdef WANT_RFKILL rfkill_{RFKILL_TYPE_WLAN}, #endif - frequency_(0.0), { + frequency_(0.0), +{ // Start with some "text" in the module's label_. update() will then // update it. Since the text should be different, update() will be able