mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-09 23:34:23 +00:00
fix linking error
This commit is contained in:
parent
d2ec62779f
commit
d1ccd22c85
1 changed files with 2 additions and 2 deletions
|
|
@ -792,10 +792,10 @@ enum class case_call_t {
|
|||
};
|
||||
|
||||
template <typename T = void>
|
||||
constexpr auto default_result_type_lambda = []() noexcept(std::is_nothrow_default_constructible_v<T>) { return T{}; };
|
||||
inline constexpr auto default_result_type_lambda = []() noexcept(std::is_nothrow_default_constructible_v<T>) { return T{}; };
|
||||
|
||||
template <>
|
||||
constexpr auto default_result_type_lambda<void> = []() noexcept {};
|
||||
inline constexpr auto default_result_type_lambda<void> = []() noexcept {};
|
||||
|
||||
template <auto* Arr, typename Hash>
|
||||
constexpr bool no_duplicate() noexcept {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue