remove constexpr from virtual function

Signed-off-by: arades79 <scravers@protonmail.com>
This commit is contained in:
arades79 2023-02-14 19:14:29 -05:00
parent 880b6e9795
commit 98631b45b6
No known key found for this signature in database
GPG key ID: 19158282E56F0021
2 changed files with 5 additions and 5 deletions

View file

@ -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">