fix gitea workflows
Build on RHEL9 docker image / build (push) Successful in 4m14s
Build on RHEL8 docker image / build (push) Successful in 5m18s
Run Simulator Tests on local RHEL9 / build (push) Successful in 18m34s
Run Simulator Tests on local RHEL8 / build (push) Successful in 22m5s

This commit is contained in:
2026-07-07 11:10:23 +02:00
parent b1f598fba0
commit 8486aec226
4 changed files with 8 additions and 8 deletions
@@ -40,9 +40,11 @@ template <typename DataType> class VirtualMemoryModel {
public:
// IPcore_base_address is not used for virtual memory model but kept for
// compatibility with HardwareMemoryModel interface
VirtualMemoryModel([[maybe_unused]] const uint32_t IPcore_base_address,
VirtualMemoryModel(const uint32_t IPcore_base_address,
const size_t size_memory_space_)
: size_memory_space(size_memory_space_) {}
: size_memory_space(size_memory_space_) {
(void)IPcore_base_address; // suppress unused parameter warning
}
~VirtualMemoryModel() = default;