| 175 | constexpr std::size_t kStacktraceDumpSize = 4096; |
| 176 | |
| 177 | struct decrement_on_destroy { |
| 178 | std::size_t& to_decrement; |
| 179 | |
| 180 | ~decrement_on_destroy() { --to_decrement; } |
| 181 | }; |
| 182 | |
| 183 | #if !BOOST_STACKTRACE_ALWAYS_STORE_IN_PADDING |
| 184 | // Inspired by the coursework by Andrei Nekrashevich in the `libsfe` |
nothing calls this directly
no outgoing calls
no test coverage detected