ci: Use clang-format 16 (#4929)

This commit is contained in:
pajlada
2023-10-31 18:24:47 +01:00
committed by GitHub
parent f4726ed7a8
commit 56346874e1
7 changed files with 16 additions and 11 deletions
+2 -2
View File
@@ -189,8 +189,8 @@ QString HotkeyController::categoryName(HotkeyCategory category) const
return categoryData.name;
}
const std::map<HotkeyCategory, HotkeyCategoryData>
&HotkeyController::categories() const
const std::map<HotkeyCategory, HotkeyCategoryData> &
HotkeyController::categories() const
{
return this->hotkeyCategories_;
}
+2 -2
View File
@@ -81,8 +81,8 @@ public:
/**
* @returns a const map with the HotkeyCategory enum as its key, and HotkeyCategoryData as the value.
**/
[[nodiscard]] const std::map<HotkeyCategory, HotkeyCategoryData>
&categories() const;
[[nodiscard]] const std::map<HotkeyCategory, HotkeyCategoryData> &
categories() const;
pajlada::Signals::NoArgSignal onItemsUpdated;