From 6f639dd6c1864dba966a558ef3bf4313a940f33d Mon Sep 17 00:00:00 2001 From: jangko Date: Fri, 29 Dec 2023 12:36:09 +0700 Subject: [PATCH] Restore accidentally deleted raises pragma --- json_serialization/lexer.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/json_serialization/lexer.nim b/json_serialization/lexer.nim index 042a7e2..20b6854 100644 --- a/json_serialization/lexer.nim +++ b/json_serialization/lexer.nim @@ -72,6 +72,8 @@ type tokenStart: int depthLimit: int +{.push gcsafe, raises: [].} + # ------------------------------------------------------------------------------ # Private helpers # ------------------------------------------------------------------------------