diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-09-28 12:58:08 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-10-10 16:16:01 +0100 |
commit | b26383bc6ca6e2e821919d2636e69098cbcf137c (patch) | |
tree | 2ceabdfefe2defb7cd8cd434d65bfe51cf060339 /Userland/Libraries/LibCards/CardStack.h | |
parent | 21a818ab50248139e30f77aa8378be7c92e29caf (diff) | |
download | serenity-b26383bc6ca6e2e821919d2636e69098cbcf137c.zip |
LibCards: Fix some minor clang-tidy issues
Diffstat (limited to 'Userland/Libraries/LibCards/CardStack.h')
-rw-r--r-- | Userland/Libraries/LibCards/CardStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCards/CardStack.h b/Userland/Libraries/LibCards/CardStack.h index 9c96513f06..6ccca07fbd 100644 --- a/Userland/Libraries/LibCards/CardStack.h +++ b/Userland/Libraries/LibCards/CardStack.h @@ -62,7 +62,7 @@ private: uint8_t shift_y_upside_down { 0 }; }; - constexpr StackRules rules_for_type(Type stack_type) + static constexpr StackRules rules_for_type(Type stack_type) { switch (stack_type) { case Type::Foundation: |