From 60f67177a110704a55d4f4b34130953ef5521ee6 Mon Sep 17 00:00:00 2001 From: Noah Watkins Date: Tue, 26 Mar 2024 11:05:43 -0700 Subject: [PATCH] json: remove default template parameter Signed-off-by: Noah Watkins --- src/v/json/json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v/json/json.h b/src/v/json/json.h index 12135ad053c9..261ccdeb67af 100644 --- a/src/v/json/json.h +++ b/src/v/json/json.h @@ -89,7 +89,7 @@ void rjson_serialize( w.EndArray(); } -template +template void rjson_serialize( json::Writer& w, const ss::chunked_fifo& v) {