-
Notifications
You must be signed in to change notification settings - Fork 576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RJS-2771: Upgrade to Realm Core v14.4.0 #6569
Conversation
@@ -239,6 +239,9 @@ function convertPrimToJsi(addon: JsiAddon, type: string, expr: string): string { | |||
case "uint64_t": | |||
return `bigIntFromU64(_env, ${expr})`; | |||
|
|||
case "std::chrono::milliseconds": | |||
return `bigIntFromU64(_env, std::chrono::milliseconds(${expr}).count())`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking more about this change. We should have been able to ignore this primitive all together, by simply not including it in the js_opt_in_spec.yml
. Did bindgen fail if you didn't put this code in? If not - perhaps we should extend the "opt-in" feature to include primitives? What do you think @elle-j?
What, How & Why?
This closes #6568, #6554, and #6558
☑️ ToDos
Compatibility
label is updated or copied from previous entryCOMPATIBILITY.md
package.json
s (if updating internal packages)Breaking
label has been applied or is not necessary