Replace C++ style comments by C ones

This commit is contained in:
Even Rouault 2017-09-19 18:22:07 +02:00
parent ce199f42e7
commit d415723fd9
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ opj_image_t* OPJ_CALLCONV opj_image_create(OPJ_UINT32 numcmpts,
comp->sgnd = cmptparms[compno].sgnd;
if (comp->h != 0 &&
(OPJ_SIZE_T)comp->w > SIZE_MAX / comp->h / sizeof(OPJ_INT32)) {
// TODO event manager
/* TODO event manager */
opj_image_destroy(image);
return NULL;
}

View File

@ -168,8 +168,8 @@ static OPJ_BOOL opj_sparse_array_int32_read_or_write(
+
(x - x0) * buf_col_stride;
if (x_incr == 4) {
// Same code as general branch, but the compiler
// can have an efficient memcpy()
/* Same code as general branch, but the compiler */
/* can have an efficient memcpy() */
for (j = 0; j < y_incr; j++) {
memcpy(dest_ptr, src_ptr, sizeof(OPJ_INT32) * x_incr);
dest_ptr += buf_line_stride;