From: Ivan Maidanski Date: Sun, 18 Mar 2012 08:59:47 +0000 (+0400) Subject: mark.c: Replace C++ style comments with C ones in GC_is_marked X-Git-Tag: gc7_3alpha2~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8225857c226edfe75b79d6da41384d30a48cc7e2;p=gc mark.c: Replace C++ style comments with C ones in GC_is_marked --- diff --git a/mark.c b/mark.c index 1bf9f4e4..8786e568 100644 --- a/mark.c +++ b/mark.c @@ -230,7 +230,7 @@ GC_API int GC_CALL GC_is_marked(const void *p) hdr * hhdr = HDR(h); word bit_no = MARK_BIT_NO((ptr_t)p - (ptr_t)h, hhdr -> hb_sz); - return (int)mark_bit_from_hdr(hhdr, bit_no); // 0 or 1 + return (int)mark_bit_from_hdr(hhdr, bit_no); /* 0 or 1 */ } /*