From 01d81981f7c031e93d01555db7a80a103e225a7f Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 25 Jun 2025 11:55:19 -0400 Subject: [PATCH] Fix arm build --- src/parser3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser3.h b/src/parser3.h index 17cbc57..63053d2 100644 --- a/src/parser3.h +++ b/src/parser3.h @@ -251,7 +251,7 @@ scan_string(Parser3 *self, char *&buf, char *bufEnd) { self, buf, bufEnd); } #else -inline PRESERVE_NONE WeaselJsonStatus scan_string(Parser3 *self, char *buf, +inline PRESERVE_NONE WeaselJsonStatus scan_string(Parser3 *self, char *&buf, char *bufEnd) { MUSTTAIL return scan_string_impl>(self, buf, bufEnd); }