backward-cpp icon indicating copy to clipboard operation
backward-cpp copied to clipboard

A beautiful stack trace pretty printer for C++

Results 110 backward-cpp issues
Sort by recently updated
recently updated
newest added

https://github.com/bombela/backward-cpp/blob/647eccde8e87d7669be1be8c661e26f1a78a3244/backward.hpp#L1640-L1642 This causes a warning with Clang that unqualified calls to `std::move` are being performed. I haven't looked into the code much but it should probably be a matter of...

the code in https://github.com/bombela/backward-cpp/blob/master/backward.hpp#L1023 raise syntax error for missing a ';'.

It would be nice, that by default, the line printed by print_source_loc() has the same aspect than those generated by most compilers. That is: [filename]:[line] May code editors accept this...

See issue #315 . For example, this allows quick navigation in VIM with the `gF` key when hovering over a code location in a stack trace.

There is a segmatation fault in the dynamic library which my program called, And my program build with backward-cpp (#define BACKWARD_HAS_DW 1) . But the segmatation fault do not print...

Hi, really like this library a lot. I'm working off the latest commit. My project is fairly large although not excessive, the executable is 127 MB. For BFD I'm seeing...

Any chance of getting a new tagged release? Package managers update on release tags and there's been some new features since 2021. I can make my own version for vcpkg,...

It allows to use some ostream-like objects. Closes #312.

Current, `backward` loads a stack trace into a [`std::vector`](https://github.com/bombela/backward-cpp/blob/65a769ffe77cf9d759d801bc792ac56af8e911a3/backward.hpp#L800) that is [resized inside `load_here`](https://github.com/bombela/backward-cpp/blob/65a769ffe77cf9d759d801bc792ac56af8e911a3/backward.hpp#L878-L880). I'm working on optimizing some of our code involving stack traces and I'd like to be...