From 176ad609cedd4e2de8b78b1e6fd9e4332cee3b05 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Wed, 22 May 2024 23:43:25 -0500 Subject: [PATCH] Quick fix --- src/utils/error.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/error.hpp b/src/utils/error.hpp index fb82221..0446b0b 100644 --- a/src/utils/error.hpp +++ b/src/utils/error.hpp @@ -128,7 +128,7 @@ namespace detail { const char* signature, source_location location ) { - if(as_bool(condition)) { + if(!as_bool(condition)) { assert_fail(type, args, signature, location, message); } }