From 062c20d9020f1d2463be615e13f6a9dabacca97f Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 18 Jan 2025 09:30:03 +0100 Subject: [PATCH] Fix compilation --- src/gdb-stub/gdb_stub.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gdb-stub/gdb_stub.cpp b/src/gdb-stub/gdb_stub.cpp index 5ff29756..53523e8c 100644 --- a/src/gdb-stub/gdb_stub.cpp +++ b/src/gdb-stub/gdb_stub.cpp @@ -1,5 +1,6 @@ #include "gdb_stub.hpp" +#include #include #include "checksum.hpp" @@ -17,6 +18,7 @@ namespace gdb_stub { void rt_assert(const bool condition) { + (void)condition; assert(condition); }