mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-03 14:20:27 +00:00
ENH: remove c++ comments from c code
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user