diff options
author | Levi Behunin <l3ehunin@gmail.com> | 2023-01-29 13:54:13 -0700 |
---|---|---|
committer | Behunin <l3ehunin@gmail.com> | 2023-01-29 17:49:42 -0700 |
commit | d5fc56db4bdebcf4f45e39e9c9d0f40229de8cea (patch) | |
tree | 4bbcaee76bde35ddc6eff9a1c639866cf278b353 /src/input_common/helpers/joycon_protocol/common_protocol.h | |
parent | 3aab57452153c3dfa8591809bc09797da03b44dc (diff) |
Move to Clang Format 15
Depends on https://github.com/yuzu-emu/build-environments/pull/69
clang-15 primary run
Diffstat (limited to 'src/input_common/helpers/joycon_protocol/common_protocol.h')
-rw-r--r-- | src/input_common/helpers/joycon_protocol/common_protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/helpers/joycon_protocol/common_protocol.h b/src/input_common/helpers/joycon_protocol/common_protocol.h index 75d3f20a46..188f6ecfa6 100644 --- a/src/input_common/helpers/joycon_protocol/common_protocol.h +++ b/src/input_common/helpers/joycon_protocol/common_protocol.h @@ -107,8 +107,8 @@ public: * @returns output object containing the responce */ template <typename Output> - requires std::is_trivially_copyable_v<Output> DriverResult ReadSPI(SpiAddress addr, - Output& output) { + requires std::is_trivially_copyable_v<Output> + DriverResult ReadSPI(SpiAddress addr, Output& output) { std::array<u8, sizeof(Output)> buffer; output = {}; |