Closed surma closed 2 months ago
Name | Link |
---|---|
Latest commit | 4869470bd65bec7c2f340671d1853beb273c62ee |
Latest deploy log | https://app.netlify.com/sites/wasmphobia/deploys/66f7e219ee59bb00085394b4 |
Deploy Preview | https://deploy-preview-11--wasmphobia.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Also opened a PR for upstream fix: https://github.com/gimli-rs/cpp_demangle/pull/296
Fixes(?) #10
cpp_demangle
has aDisplay
implementation that treats demangling errors as printing errors. So an invalid C++ function name will cause a full-blown panic.This PR moves from
.to_string()
to.demangle()?.to_string()
, which prevents that code path.