diff options
author | arades79 <scravers@protonmail.com> | 2023-02-14 19:14:29 -0500 |
---|---|---|
committer | arades79 <scravers@protonmail.com> | 2023-02-14 19:14:29 -0500 |
commit | 98631b45b6012f997081dc76c6908dcba8df729b (patch) | |
tree | aea2f7401fc83aea190218d1be9788c2ff39dd14 /src/core/debugger/gdbstub_arch.cpp | |
parent | 880b6e9795e2a86d8f31f437c9ac7d356e7790a5 (diff) |
remove constexpr from virtual function
Signed-off-by: arades79 <scravers@protonmail.com>
Diffstat (limited to 'src/core/debugger/gdbstub_arch.cpp')
-rw-r--r-- | src/core/debugger/gdbstub_arch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/debugger/gdbstub_arch.cpp b/src/core/debugger/gdbstub_arch.cpp index f3dd517bdd..831c485132 100644 --- a/src/core/debugger/gdbstub_arch.cpp +++ b/src/core/debugger/gdbstub_arch.cpp @@ -41,7 +41,7 @@ static void PutSIMDRegister(std::array<u32, 64>& simd_regs, size_t offset, const // For sample XML files see the GDB source /gdb/features // This XML defines what the registers are for this specific ARM device -constexpr std::string_view GDBStubA64::GetTargetXML() const { +std::string_view GDBStubA64::GetTargetXML() const { return R"(<?xml version="1.0"?> <!DOCTYPE target SYSTEM "gdb-target.dtd"> <target version="1.0"> @@ -267,7 +267,7 @@ u32 GDBStubA64::BreakpointInstruction() const { return 0xd4200000; } -constexpr std::string_view GDBStubA32::GetTargetXML() const { +std::string_view GDBStubA32::GetTargetXML() const { return R"(<?xml version="1.0"?> <!DOCTYPE target SYSTEM "gdb-target.dtd"> <target version="1.0"> |