Skip to content

Commit

Permalink
Merge pull request #47 from SpringMT/refactor/remove-comment
Browse files Browse the repository at this point in the history
refactor: remove comment line
  • Loading branch information
SpringMT authored Jun 23, 2022
2 parents 23d24f9 + 31a0a21 commit 21c6713
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions ext/zstdruby/streaming_compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ static void
streaming_compress_mark(void *p)
{
struct streaming_compress_t *sc = p;
// rb_gc_mark((VALUE)sc->ctx);
rb_gc_mark(sc->buf);
rb_gc_mark(sc->buf_size);
}

static void
Expand Down
2 changes: 0 additions & 2 deletions ext/zstdruby/streaming_decompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ static void
streaming_decompress_mark(void *p)
{
struct streaming_decompress_t *sd = p;
// rb_gc_mark((VALUE)sd->ctx);
rb_gc_mark(sd->buf);
// rb_gc_mark(sd->buf_size);
}

static void
Expand Down

0 comments on commit 21c6713

Please sign in to comment.