We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are implementations of operator= and operator!= in the LLDB API classes.
operator=
operator!=
These are not currently bound in lldb-sys.rs and they are not made visible to Rust via PartialEq impls yet.
lldb-sys.rs
PartialEq
The text was updated successfully, but these errors were encountered:
First step is to write the binding in lldb-sys.rs and get that published. Then, we can add the PartialEq impls here in lldb.rs.
lldb.rs
Sorry, something went wrong.
Fix sigfault on lldb::SBFrame::function_name
790a334
(lldb) bt * thread endoli#1, name = 'crash_analyse', stop reason = signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x00007ffff60ec661 libc.so.6`__strlen_avx2 + 17 frame endoli#1: 0x000055555556b859 crash_analyse`std::ffi::c_str::CStr::from_ptr::h7d6778659191997d at c_str.rs:904 frame endoli#2: 0x000055555555ed45 crash_analyse`lldb::frame::SBFrame::function_name::h6e8217ef78893c79(self=0x00007fffffffe848) at frame.rs:153
No branches or pull requests
There are implementations of
operator=
andoperator!=
in the LLDB API classes.These are not currently bound in
lldb-sys.rs
and they are not made visible to Rust viaPartialEq
impls yet.The text was updated successfully, but these errors were encountered: