Skip to content

Commit 31a0a21

Browse files
committed
refactor: remove comment line
1 parent 23d24f9 commit 31a0a21

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ext/zstdruby/streaming_compress.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ static void
1111
streaming_compress_mark(void *p)
1212
{
1313
struct streaming_compress_t *sc = p;
14-
// rb_gc_mark((VALUE)sc->ctx);
1514
rb_gc_mark(sc->buf);
16-
rb_gc_mark(sc->buf_size);
1715
}
1816

1917
static void

ext/zstdruby/streaming_decompress.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ static void
1010
streaming_decompress_mark(void *p)
1111
{
1212
struct streaming_decompress_t *sd = p;
13-
// rb_gc_mark((VALUE)sd->ctx);
1413
rb_gc_mark(sd->buf);
15-
// rb_gc_mark(sd->buf_size);
1614
}
1715

1816
static void

0 commit comments

Comments
 (0)