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
The V8 Javascript/WASM engine attempts to print a __intcap using the ostream insertion operator (operator<<). In CheriABI overload resolution fails for __intcap (uintptr_t/intptr_t) as this type is no longer the same width as size_t. Adding overloads to the standard C++ library obviates the need for disruptive workarounds across the code base.
The text was updated successfully, but these errors were encountered:
The V8 Javascript/WASM engine attempts to print a
__intcap
using theostream
insertion operator (operator<<
). In CheriABI overload resolution fails for__intcap
(uintptr_t
/intptr_t
) as this type is no longer the same width assize_t
. Adding overloads to the standard C++ library obviates the need for disruptive workarounds across the code base.The text was updated successfully, but these errors were encountered: