[1.5] Remove simple warning about C++ style comments
This commit is contained in:
parent
5d356d6fcb
commit
773bd89130
|
@ -175,7 +175,7 @@ static opj_bool jp2_read_boxhdr(opj_common_ptr cinfo, opj_cio_t *cio, opj_jp2_bo
|
||||||
}
|
}
|
||||||
if (box->length < 0) {
|
if (box->length < 0) {
|
||||||
opj_event_msg(cinfo, EVT_ERROR, "Integer overflow in box->length\n");
|
opj_event_msg(cinfo, EVT_ERROR, "Integer overflow in box->length\n");
|
||||||
return OPJ_FALSE; // TODO: actually check jp2_read_boxhdr's return value
|
return OPJ_FALSE; /* TODO: actually check jp2_read_boxhdr's return value */
|
||||||
}
|
}
|
||||||
|
|
||||||
return OPJ_TRUE;
|
return OPJ_TRUE;
|
||||||
|
|
|
@ -194,7 +194,7 @@ int main(){
|
||||||
|
|
||||||
printf("/* This file was automatically generated by t1_generate_luts.c */\n\n");
|
printf("/* This file was automatically generated by t1_generate_luts.c */\n\n");
|
||||||
|
|
||||||
// lut_ctxno_zc
|
/* lut_ctxno_zc */
|
||||||
for (j = 0; j < 4; ++j) {
|
for (j = 0; j < 4; ++j) {
|
||||||
for (i = 0; i < 256; ++i) {
|
for (i = 0; i < 256; ++i) {
|
||||||
int orient = j;
|
int orient = j;
|
||||||
|
|
Loading…
Reference in New Issue