Skip to content

Commit

Permalink
json: remove default template parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
  • Loading branch information
dotnwat committed Mar 26, 2024
1 parent 20dcf97 commit 60f6717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/json/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void rjson_serialize(
w.EndArray();
}

template<typename T, size_t chunk_size = 128>
template<typename T, size_t chunk_size>
void rjson_serialize(
json::Writer<json::StringBuffer>& w,
const ss::chunked_fifo<T, chunk_size>& v) {
Expand Down

0 comments on commit 60f6717

Please sign in to comment.