style: clang-format

This commit is contained in:
peelz
2025-07-20 22:40:29 -04:00
parent 71b01fe58f
commit b4d95b405c
2 changed files with 8 additions and 10 deletions

View File

@ -69,8 +69,7 @@ void Workspaces::createWorkspace(Json::Value const &workspace_data,
spdlog::debug("Creating workspace {}", workspaceName);
// avoid recreating existing workspaces
auto workspace =
std::ranges::find_if(m_workspaces, [&](std::unique_ptr<Workspace> const &w) {
auto workspace = std::ranges::find_if(m_workspaces, [&](std::unique_ptr<Workspace> const &w) {
if (workspaceId > 0) {
return w->id() == workspaceId;
}

View File

@ -1,4 +1,3 @@
#include <spdlog/spdlog.h>
#include "modules/sni/item.hpp"
#include <gdkmm/general.h>