14 #if __cplusplus >= 202002L
15 # include <source_location>
41 uint_least32_t
line() const noexcept {
return line_; }
58 #if defined(_MSC_FULL_VER)
59 # define IODA_FUNCSIG __FUNCSIG__
62 # define IODA_FUNCSIG __PRETTY_FUNCTION__
82 #if __cplusplus >= 202002L
83 using std::source_location;
84 # define ioda_Here() ::std::source_location::current()
86 using detail::compat::source_location::source_location;
87 # define ioda_Here() ::ioda::source_location(__LINE__, 0, __FILE__, IODA_FUNCSIG)
This is a placeholder implementation for std::source_location, which is part of C++20.
uint_least32_t column() const noexcept
static source_location current() noexcept
Determine current source location.
source_location(uint_least32_t line, uint_least32_t column, const char *file, const char *func)
const char * function_name() const noexcept
const char * file_name() const noexcept
source_location() noexcept
Default constructor. Implementation-defined behavior.
uint_least32_t line() const noexcept
const char * function_name_