Skip to content

Commit 54e04e6

Browse files
committed
Do not narrow the type size; appeases clang-tidy.
1 parent 63b5a9e commit 54e04e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/CppInterOp/CppInterOp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class JitCall {
115115
// FIXME: Figure out how to unify the wrapper signatures.
116116
// FIXME: Hide these implementation details by moving wrapper generation in
117117
// this class.
118-
using GenericCall = void (*)(void*, int, void**, void*);
118+
using GenericCall = void (*)(void*, size_t, void**, void*);
119119
using DestructorCall = void (*)(void*, unsigned long, int);
120120

121121
private:

0 commit comments

Comments
 (0)