b) You have one or more full or partial class specializations for
specific classes/templates/values:
Basically as above, but if you want to prohibited the default case or
certain specializations, here's a nice, minimalistic helper to do so
This is a perfect example of when *not* to use static_assert. You should
leave
the class undefined:
template
struct serializer_t;
Then the compiler will already give a simple and informative error about the
class being undefined, which is almost the same error you put in the
static_assert.
Futhermore, say I want to know if there is a valid serializer at
compile-time
and if not then choose a different method. So, I create a predicate to
detect
a valid serializer:
TICK_TRAIT(has_serializer)
{
template
auto requires_(Context ctx, const T& x) -> decltype(
has_type(),
Context::_(x, ctx)
);
};
Unfortunately, this won't work because of the hard error, and it won't work
with Concepts Lite either.
`static_assert` can be used to check variants outside of type requirements,
but
in general, it should not be used for type requirements.
--
View this message in context: http://boost.2283326.n4.nabble.com/Re-GSoC-Boost-Hana-Formal-review-request-...
Sent from the Boost - Dev mailing list archive at Nabble.com.