File indexing completed on 2025-01-18 09:52:31
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_STACKTRACE_DETAIL_FRAME_NOOP_IPP
0008 #define BOOST_STACKTRACE_DETAIL_FRAME_NOOP_IPP
0009
0010 #include <boost/config.hpp>
0011 #ifdef BOOST_HAS_PRAGMA_ONCE
0012 # pragma once
0013 #endif
0014
0015 #include <boost/stacktrace/frame.hpp>
0016
0017 namespace boost { namespace stacktrace { namespace detail {
0018
0019 std::string to_string(const frame* , std::size_t ) {
0020 return std::string();
0021 }
0022
0023 }
0024
0025 std::string frame::name() const {
0026 return std::string();
0027 }
0028
0029 std::string frame::source_file() const {
0030 return std::string();
0031 }
0032
0033 std::size_t frame::source_line() const {
0034 return 0;
0035 }
0036
0037 std::string to_string(const frame& ) {
0038 return std::string();
0039 }
0040
0041
0042 }}
0043
0044 #endif