Commit ec6b9096 authored by neverlord's avatar neverlord

removed needless parenthesis

parent d29a0da5
......@@ -60,7 +60,7 @@ struct types_array_impl
// all types are builtin, perform lookup on constuction
uniform_type_info const* data[sizeof...(T)];
types_array_impl()
: data({ta_util<cppa_tinf,util::is_builtin<T>::value,T>::get()...})
: data{ta_util<cppa_tinf,util::is_builtin<T>::value,T>::get()...}
{
}
inline size_t size() const { return 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