diff options
author | François Conzelmann <[email protected]> | 2023-12-06 23:54:56 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-12-06 22:54:56 +0000 |
commit | 4a42344e9748d2b44c55798ddc3fa41448533c4e (patch) | |
tree | f8a06c575a650be05d629555f4e127115dffe470 /src/plugins | |
parent | 5489f9f07a73c6b5b97702731a5092463a01fb5b (diff) | |
download | Hyprland-4a42344e9748d2b44c55798ddc3fa41448533c4e.tar.gz Hyprland-4a42344e9748d2b44c55798ddc3fa41448533c4e.zip |
style/ci: apply clang-format and verify it in ci (#4039)
* style: apply clang-format
* ci: add new clang-format job to CI
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/HookSystem.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/HookSystem.hpp b/src/plugins/HookSystem.hpp index b871a379..00494733 100644 --- a/src/plugins/HookSystem.hpp +++ b/src/plugins/HookSystem.hpp @@ -14,10 +14,10 @@ class CFunctionHook { bool hook(); bool unhook(); - CFunctionHook(const CFunctionHook&) = delete; - CFunctionHook(CFunctionHook&&) = delete; + CFunctionHook(const CFunctionHook&) = delete; + CFunctionHook(CFunctionHook&&) = delete; CFunctionHook& operator=(const CFunctionHook&) = delete; - CFunctionHook& operator=(CFunctionHook&&) = delete; + CFunctionHook& operator=(CFunctionHook&&) = delete; void* m_pOriginal = nullptr; |