Skip to content

Commit

Permalink
pre-v1.0i-update
Browse files Browse the repository at this point in the history
  • Loading branch information
dakka committed Apr 18, 2024
1 parent d8c06c8 commit d90e73c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions include/fix8/conjure_enum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,11 +613,6 @@ class conjure_type final
else
return {};
}
static constexpr auto _type_name() noexcept
{
constexpr auto result { _get_name() };
return fixed_string<result.size()>(result);
}

public:
conjure_type() = delete;
Expand All @@ -628,7 +623,7 @@ class conjure_type final
conjure_type& operator=(conjure_type&&) = delete;

static consteval const char *tpeek() noexcept { return std::source_location::current().function_name(); }
static constexpr auto name { _type_name() };
static constexpr auto name { get_name() };
};

//-----------------------------------------------------------------------------------------
Expand Down

0 comments on commit d90e73c

Please sign in to comment.