[abi] Switched to C++17

This commit is contained in:
kobalicek
2025-05-24 15:53:19 +02:00
parent cecc73f297
commit 356dddbc55
125 changed files with 7518 additions and 3345 deletions

View File

@@ -10,7 +10,7 @@
namespace {
ASMJIT_MAYBE_UNUSED
[[maybe_unused]]
static inline const char* asmjitArchAsString(asmjit::Arch arch) noexcept {
switch (arch) {
case asmjit::Arch::kX86 : return "X86";
@@ -38,7 +38,7 @@ static inline const char* asmjitArchAsString(asmjit::Arch arch) noexcept {
}
}
ASMJIT_MAYBE_UNUSED
[[maybe_unused]]
static inline void printIndented(const char* str, size_t indent) noexcept {
const char* start = str;
while (*str) {