You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running hash defines a global variable Module with some internal stuff. Probably this comes from emscripten but would be better to avoid this, because of:
possible collision that may happen (also may be fixed by changing Module to something more specific)
to don't expose library internals without reason
in general, to don't define/change global variables should be a good practice
The text was updated successfully, but these errors were encountered:
Running
hash
defines a global variableModule
with some internal stuff. Probably this comes fromemscripten
but would be better to avoid this, because of:Module
to something more specific)The text was updated successfully, but these errors were encountered: