fix: formatted with clang

This commit is contained in:
Guilherme Daher
2026-08-12 17:06:44 -03:00
parent 5ef2da41be
commit e92f280a94
+6 -5
View File
@@ -169,11 +169,12 @@ class Workspaces : public AModule, public EventHandler {
enum class SortMethod { ID, NAME, NUMBER, SPECIAL_CENTERED, DEFAULT }; enum class SortMethod { ID, NAME, NUMBER, SPECIAL_CENTERED, DEFAULT };
SortMethod m_sortBy = SortMethod::DEFAULT; SortMethod m_sortBy = SortMethod::DEFAULT;
static inline const std::map<std::string, SortMethod> m_sortMap = {{"ID", SortMethod::ID}, static inline const std::map<std::string, SortMethod> m_sortMap = {
{"NAME", SortMethod::NAME}, {"ID", SortMethod::ID},
{"NUMBER", SortMethod::NUMBER}, {"NAME", SortMethod::NAME},
{"SPECIAL-CENTERED", SortMethod::SPECIAL_CENTERED}, {"NUMBER", SortMethod::NUMBER},
{"DEFAULT", SortMethod::DEFAULT}}; {"SPECIAL-CENTERED", SortMethod::SPECIAL_CENTERED},
{"DEFAULT", SortMethod::DEFAULT}};
std::string m_formatBefore; std::string m_formatBefore;
std::string m_formatAfter; std::string m_formatAfter;