Skip to content

Commit

Permalink
Define JNI64 not only in case of __x86_64__ but in general for any _L…
Browse files Browse the repository at this point in the history
…P64 platform.
  • Loading branch information
Felix von Ferey committed Aug 10, 2015
1 parent d83f39c commit 57e5b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtjni-generator/src/main/resources/hawtjni.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern "C" {
extern int IS_JNI_1_2;

#ifndef JNI64
#if __x86_64__
#if defined(_LP64)
#define JNI64
#endif
#endif
Expand Down

0 comments on commit 57e5b32

Please sign in to comment.