Commit 1b788e66 authored by Dominik Charousset's avatar Dominik Charousset

fixed compiler error regarding auto

parent d4365f40
...@@ -64,7 +64,7 @@ struct type_to_ptype_impl_helper : wrapped_ptype<pt_null> { }; ...@@ -64,7 +64,7 @@ struct type_to_ptype_impl_helper : wrapped_ptype<pt_null> { };
template<typename T> template<typename T>
struct type_to_ptype_impl_helper<true, T> { struct type_to_ptype_impl_helper<true, T> {
static constexpr auto ptype = type_to_ptype_int< static constexpr primitive_type ptype = type_to_ptype_int<
std::numeric_limits<T>::is_integer, std::numeric_limits<T>::is_integer,
std::numeric_limits<T>::is_signed, std::numeric_limits<T>::is_signed,
sizeof(T) sizeof(T)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment