using ::std
This commit is contained in:
parent
6211191084
commit
908126e420
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ inline constexpr bool IsLexeme(const char s) noexcept {
|
|||
|
||||
} // namespace detail
|
||||
|
||||
inline constexpr const char* Nameof(const char* name, const std::size_t length, const std::size_t) noexcept {
|
||||
inline constexpr const char* Nameof(const char* name, const ::std::size_t length, const ::std::size_t) noexcept {
|
||||
return length == 0 ? name : detail::IsLexeme(name[length - 1])
|
||||
? &name[length]
|
||||
: Nameof(name, length - 1, 0);
|
||||
|
|
Loading…
Reference in a new issue