You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The HP-UX compiler issues the following warning when compiling source file src/lib/openjp2/dwt.c:
cc: "dwt.c", line 798: warning 562: Redeclaration of "opj_v4dwt_decode" with a different storage class specifier: "opj_v4dwt_decode" will have internal linkage.
cc: "t2.c", line 1341: warning 562: Redeclaration of "opj_t2_init_seg" with a different storage class specifier: "opj_t2_init_seg" will have internal linkage.
smuehlst
pushed a commit
to smuehlst/openjpeg
that referenced
this issue
Oct 19, 2015
HP compiler warns:
cc: "dwt.c", line 798: warning 562: Redeclaration of "opj_v4dwt_decode"
with a different storage class specifier: "opj_v4dwt_decode" will have
internal linkage.
cc: "t2.c", line 1341: warning 562: Redeclaration of "opj_t2_init_seg"
with a different storage class specifier: "opj_t2_init_seg" will have
internal linkage.
The HP-UX compiler issues the following warning when compiling source file src/lib/openjp2/dwt.c:
The forward declaration looks like this:
While the actual function signature looks like this:
The actual function should also be declated as
static
.The text was updated successfully, but these errors were encountered: