You can find the documentation at http://apolukhin.github.io/stacktrace/index.html and the github repo at https://github.com/apolukhin/stacktrace.
I wonder if basic_stacktrace, currently
template <class Allocator>
class basic_stacktrace {
boost::container::vector impl_;
/*...*/
};
would be better of as
template < class Container = std::vector<frame> >
class basic_stacktrace {
static_assert( std::is_same