Skip to content

Commit

Permalink
Do not expose constant USE_VARARGS_SHIFT only used for JNA Java -> C …
Browse files Browse the repository at this point in the history
…communication
  • Loading branch information
matthiasblaesing committed Oct 5, 2023
1 parent edc3314 commit 12b7306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/sun/jna/Function.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public interface PostCallRead {
public static final int USE_VARARGS = 0xFF;
/** Offset of USE_VARARGS in call flags */
@java.lang.annotation.Native
public static final int USE_VARARGS_SHIFT = 7;
private static final int USE_VARARGS_SHIFT = 7;

static final Integer INTEGER_TRUE = Integer.valueOf(-1);
static final Integer INTEGER_FALSE = Integer.valueOf(0);
Expand Down

0 comments on commit 12b7306

Please sign in to comment.