j
k
j a
j l
you could try to add an indirection. template <class T, bool B> struct foobar_aux; template <class T> struct foobar : foobar_aux<T, ::boost::is_integral<T>::value> {};
you could try to add an indirection.
template <class T, bool B> struct foobar_aux;
template <class T> struct foobar : foobar_aux<T, ::boost::is_integral<T>::value> {};
Yes, this looks to be the right solution. Thanks! Frédéric
Back to the thread
Back to the list