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 577f86e commit d8c06c8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include/fix8/conjure_enum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -609,10 +609,9 @@ class conjure_type final
constexpr std::string_view result { from.substr(ep + get_spec<0,1>().size()) };
if constexpr (constexpr auto lc { result.find_first_of(get_spec<1,1>()) }; lc != std::string_view::npos)
return result.substr(0, lc);
else
return {};
}
return {};
else
return {};
}
static constexpr auto _type_name() noexcept
{
Expand Down

0 comments on commit d8c06c8

Please sign in to comment.