diff options
| author | 2024-02-19 16:00:46 +0100 | |
|---|---|---|
| committer | 2024-02-19 16:00:46 +0100 | |
| commit | 310c1f50beb77fc5c6f9075029973161d4e51a4a (patch) | |
| tree | 43a5699123e4930560fc5016faac7efb15b63f4e /src/core/memory | |
| parent | core/CMakeLists: Sort alphabetically (diff) | |
| download | yuzu-310c1f50beb77fc5c6f9075029973161d4e51a4a.tar.gz yuzu-310c1f50beb77fc5c6f9075029973161d4e51a4a.tar.xz yuzu-310c1f50beb77fc5c6f9075029973161d4e51a4a.zip | |
scope_exit: Make constexpr
Allows the use of the macro in constexpr-contexts.
Also avoids some potential problems when nesting braces inside it.
Diffstat (limited to 'src/core/memory')
| -rw-r--r-- | src/core/memory/dmnt_cheat_vm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory/dmnt_cheat_vm.cpp b/src/core/memory/dmnt_cheat_vm.cpp index f7097d01d..caceeec4f 100644 --- a/src/core/memory/dmnt_cheat_vm.cpp +++ b/src/core/memory/dmnt_cheat_vm.cpp | |||
| @@ -224,12 +224,12 @@ bool DmntCheatVm::DecodeNextOpcode(CheatVmOpcode& out) { | |||
| 224 | // If we've ever seen a decode failure, return false. | 224 | // If we've ever seen a decode failure, return false. |
| 225 | bool valid = decode_success; | 225 | bool valid = decode_success; |
| 226 | CheatVmOpcode opcode = {}; | 226 | CheatVmOpcode opcode = {}; |
| 227 | SCOPE_EXIT({ | 227 | SCOPE_EXIT { |
| 228 | decode_success &= valid; | 228 | decode_success &= valid; |
| 229 | if (valid) { | 229 | if (valid) { |
| 230 | out = opcode; | 230 | out = opcode; |
| 231 | } | 231 | } |
| 232 | }); | 232 | }; |
| 233 | 233 | ||
| 234 | // Helper function for getting instruction dwords. | 234 | // Helper function for getting instruction dwords. |
| 235 | const auto GetNextDword = [&] { | 235 | const auto GetNextDword = [&] { |