Android classreferenceholder.h: Reorder function declaration keywords
It should be 'JNIEXPORT rettype JNICALL' not 'rettype JNIEXPORT JNICALL'. BUG=webrtc:6660 Review-Url: https://codereview.webrtc.org/2557793003 Cr-Commit-Position: refs/heads/master@{#15467}
This commit is contained in:
@ -33,8 +33,8 @@ jclass FindClass(JNIEnv* jni, const char* name);
|
||||
|
||||
// Convenience macro defining JNI-accessible methods in the org.webrtc package.
|
||||
// Eliminates unnecessary boilerplate and line-wraps, reducing visual clutter.
|
||||
#define JOW(rettype, name) extern "C" rettype JNIEXPORT JNICALL \
|
||||
Java_org_webrtc_##name
|
||||
#define JOW(rettype, name) \
|
||||
extern "C" JNIEXPORT rettype JNICALL Java_org_webrtc_##name
|
||||
|
||||
} // namespace webrtc_jni
|
||||
|
||||
|
||||
Reference in New Issue
Block a user