-
Notifications
You must be signed in to change notification settings - Fork 17
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
Support of the WASM build #474
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## devel #474 +/- ##
==========================================
+ Coverage 73.67% 73.82% +0.14%
==========================================
Files 30 30
Lines 4251 4279 +28
Branches 968 975 +7
==========================================
+ Hits 3132 3159 +27
- Misses 771 772 +1
Partials 348 348 ☔ View full report in Codecov by Sentry. |
@@ -108,7 +108,7 @@ public: | |||
} | |||
|
|||
if (elem) | |||
--elem->counter_; | |||
--elem->refcount_; |
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.
This seems like quite random fix, how did you find this bug?
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.
It simply does not compile. Maybe it has something to do with the emscripten that is used for the build (but the counter_
is indeed not present there, it is a real error).
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.
Really weird, maybe the function is never used, so the compiler removes it? But it should still not compile normally, weird.
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.
This is great. Thank you for investigating.
No description provided.