From 97c2d50f17c5839247e97227b25c93ed84c3ee08 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 15 Jul 2023 08:06:42 -0400 Subject: [PATCH] Don't assert that context exists in contextGet(). --- src/context.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/context.cpp b/src/context.cpp index 532bcbd0..ffb57ec9 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -48,7 +48,6 @@ Context::~Context() { static thread_local Context* threadContext = NULL; Context* contextGet() { - assert(threadContext); return threadContext; }