Commit d29a0da5 authored by neverlord's avatar neverlord

removed needless parenthesis

parent bcafa1b9
......@@ -79,7 +79,7 @@ struct types_array_impl<false, T...>
// non-builtin types at runtime
mutable std::atomic<uniform_type_info const*> data[sizeof...(T)];
types_array_impl()
: tinfo_data({ta_util<std_tinf,util::is_builtin<T>::value,T>::get()...})
: tinfo_data{ta_util<std_tinf,util::is_builtin<T>::value,T>::get()...}
{
bool static_init[sizeof...(T)] = { !std::is_same<T,anything>::value
&& util::is_builtin<T>::value ... };
......
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