From 4b67de5f83a656f894d419c1ad4e7282d67aa9c3 Mon Sep 17 00:00:00 2001 From: dzaima Date: Sun, 26 Nov 2023 22:16:44 +0200 Subject: [PATCH] don't need these comments they're present in h.h, and trivial to determine from source anyway --- src/load.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/load.c b/src/load.c index 11ce60fa..dbb23bc1 100644 --- a/src/load.c +++ b/src/load.c @@ -175,12 +175,8 @@ B compObj_c2(B t, B w, B x) { #if FORMATTER B load_fmt, load_repr; -B bqn_fmt(B x) { // consumes - return c1G(load_fmt, x); -} -B bqn_repr(B x) { // consumes - return c1G(load_repr, x); -} +B bqn_fmt(B x) { return c1G(load_fmt, x); } +B bqn_repr(B x) { return c1G(load_repr, x); } #else B bqn_fmt(B x) { return x; } B bqn_repr(B x) { return x; }