NcEngine
SourceLocation.h
1#pragma once
2
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
9#else
10 namespace nc::detail
11 {
13 {
14 static constexpr auto msg = "source_location not implemented on this compiler";
15 static constexpr auto current() noexcept { return PlaceholderSourceLocation{}; }
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; }
20 };
21 } // namespace nc::detail
22
23 #define NC_SOURCE_LOCATION nc::detail::PlaceholderSourceLocation
24#endif
25
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