diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-14 21:30:58 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-14 21:30:58 (GMT) |
commit | ff4886fa533f141a91e6f6768e4505bb17d94aaf (patch) | |
tree | 0cdfd7a7b87ebbdefd6ce20042cd4392b8f82018 /Utilities | |
parent | 78275f1d4b704385632b127b65abd36198e65ece (diff) | |
download | CMake-ff4886fa533f141a91e6f6768e4505bb17d94aaf.zip CMake-ff4886fa533f141a91e6f6768e4505bb17d94aaf.tar.gz CMake-ff4886fa533f141a91e6f6768e4505bb17d94aaf.tar.bz2 |
ENH: remove c++ comments from c code
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcompress/cmcompress.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Utilities/cmcompress/cmcompress.c b/Utilities/cmcompress/cmcompress.c index 9417de5..e6d4c28 100644 --- a/Utilities/cmcompress/cmcompress.c +++ b/Utilities/cmcompress/cmcompress.c @@ -465,8 +465,6 @@ int output(struct cmcompress_stream* cdata, code_int code) do { if ( cdata->output_stream(cdata, bp, 1) != 1 ) - //putchar(*bp++); - //if (ferror(stdout)) { return 0; } @@ -489,7 +487,6 @@ int output(struct cmcompress_stream* cdata, code_int code) if ( cdata->offset > 0 ) { if ( cdata->output_stream(cdata, buf, cdata->n_bits) != cdata->n_bits ) - //if( fwrite( buf, 1, cdata->n_bits, stdout ) != cdata->n_bits) { return 0; } @@ -532,7 +529,6 @@ int output(struct cmcompress_stream* cdata, code_int code) { cdata->offset = (cdata->offset + 7) / 8; if ( cdata->output_stream(cdata, buf, cdata->offset ) != cdata->offset ) - //if( fwrite( buf, 1, cdata->offset, stdout ) != cdata->offset ) { return 0; } |