Hello,
Question: is there a way to delete or remove a type trait once it has
been defined? And/or redefine it?
Consider, I've got a default type trait, something like this.
template<typename T>
struct throws_exceptions {
static const bool value = true;
};
struct my_object {
//does some work with or without exception
};
template<>
struct throws_exceptions
participants (1)
-
Michael Powell