3#if __has_include(<source_location>)
4 #include <source_location>
5 #define NC_SOURCE_LOCATION std::source_location
6#elif __has_include(<experimental/source_location>)
7 #include <experimental/source_location>
8 #define NC_SOURCE_LOCATION std::experimental::source_location
14 static constexpr auto msg =
"source_location not implemented on this compiler";
16 constexpr auto file_name()
const noexcept {
return msg; }
17 constexpr auto function_name()
const noexcept {
return msg; }
18 constexpr auto line()
const noexcept {
return 0; }
19 constexpr auto column()
const noexcept {
return 0; }
23 #define NC_SOURCE_LOCATION nc::detail::PlaceholderSourceLocation
26#define NC_SOURCE_LOCATION_CURRENT NC_SOURCE_LOCATION::current()
27#define NC_SOURCE_FILE NC_SOURCE_LOCATION_CURRENT.file_name()
28#define NC_SOURCE_FUNCTION NC_SOURCE_LOCATION_CURRENT.function_name()
29#define NC_SOURCE_LINE NC_SOURCE_LOCATION_CURRENT.line()
30#define NC_SOURCE_COLUMN NC_SOURCE_LOCATION_CURRENT.column()
Definition: SourceLocation.h:13