TODO: constexpr nameoftype

This commit is contained in:
Neargye 2018-08-06 20:24:50 +05:00
parent 654c74d5db
commit 8c4d52963a
2 changed files with 4 additions and 3 deletions

View file

@ -208,7 +208,7 @@ template <typename T,
inline NAMEOF_CONSTEXPR14 detail::cstring Nameof(T&&, const char*, std::size_t, bool) = delete;
template <typename T>
inline constexpr detail::cstring NameofTypeRaw() noexcept {
inline detail::cstring NameofTypeRaw() noexcept {
#if defined(__clang__)
return {__PRETTY_FUNCTION__ + (sizeof("detail::cstring nameof::NameofTypeRaw() [T = ") - 1),
(sizeof(__PRETTY_FUNCTION__) - 1) - (sizeof("detail::cstring nameof::NameofTypeRaw() [T = ") - 1) - (sizeof("]") - 1)};
@ -224,7 +224,7 @@ inline constexpr detail::cstring NameofTypeRaw() noexcept {
}
template <typename T, typename D = typename detail::Decay<T>::type>
inline NAMEOF_CONSTEXPR14 detail::cstring NameofType() noexcept {
inline detail::cstring NameofType() noexcept {
const auto raw_type_name = NameofTypeRaw<D>();
return detail::NameofBase(raw_type_name.begin(), raw_type_name.length(), false);
}

View file

@ -113,7 +113,7 @@ TEST_CASE("constexpr") {
constexpr auto cx6 = NAMEOF_RAW(__cplusplus);
static_assert(cx6 == "__cplusplus", "");
}
#if 0
SECTION("NAMEOF_TYPE") {
SomeClass<int> a;
@ -144,6 +144,7 @@ TEST_CASE("constexpr") {
static_assert(cx3 == "SomeClass<int>", "");
#endif
}
#endif
}
#endif