From 43e612122c88c6180d83e21c770de2ba43b0f8b7 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 22 Apr 2020 12:17:47 +0200 Subject: [PATCH] Further fixes for NO_ASSERT builds. --- src/Collections/Dictionary.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Collections/Dictionary.hpp b/src/Collections/Dictionary.hpp index 97031c8..e7b8e6f 100644 --- a/src/Collections/Dictionary.hpp +++ b/src/Collections/Dictionary.hpp @@ -50,7 +50,7 @@ namespace Arbutils::Collections { } return find->second; #else - return _map[key]; + return _map.at(key); #endif }