|
Description
|
> FYI...
>
> The Sun version of lint is complaining about:
>
> typedef jint (JNICALL *jvmtiReservedCallback)();
>
> being an old-style declaration, wants it to be:
>
> typedef jint (JNICALL *jvmtiReservedCallback)(void);
>
Or since it is never called, you could change it to typedef jint (JNICALL *jvmtiReservedCallback)(void*);
and both C++ and C would be happy.
Posted Date : 2005-09-14 15:03:06.0
|