From 9a684ae93db292e2ee06202b82167d8efeca7d5c Mon Sep 17 00:00:00 2001 From: cat Date: Mon, 9 Mar 2026 20:30:27 +0200 Subject: [PATCH] Added a pointless throw to stop GCC complaining --- headers/Containers/Hashmap.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/Containers/Hashmap.hpp b/headers/Containers/Hashmap.hpp index 58b6229..e47e1f0 100644 --- a/headers/Containers/Hashmap.hpp +++ b/headers/Containers/Hashmap.hpp @@ -101,6 +101,7 @@ public: Systems::Logging::Log("Trying to access a non-existant key! Throwing...", "Hashmap", Systems::Logging::LogLevel::Error); + throw; } [[nodiscard("Discarding an expensive operation!")]]