Skip to content

Commit

Permalink
Fix crash caused by 4 bytes pointer to member in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiuwen-chen committed Sep 8, 2023
1 parent 218858d commit daf6ff3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cpp/orm/binding/MemberPointer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ void* castMemberPointer(T O::*memberPointer)
T O::*memberp;
void* voidp;
};
voidp = nullptr;
memberp = memberPointer;
return voidp;
}
Expand Down

0 comments on commit daf6ff3

Please sign in to comment.