Tagged Questions
3
votes
1answer
65 views
Substitution failure is not an error (SFINAE) for enum
Is there a way to use Substitution failure is not an error (SFINAE) for enum?
template <typename T>
struct Traits
{
}
template <>
struct Traits<A>
{
};
template <>
struct ...
2
votes
2answers
240 views
How can I have optional default constructor?
This class:
template <class T>
struct A {
A() : t(T()) {
}
A(const T& t_) : t(t_) {
}
T t;
};
won't compile if T doesn't have default constructor.
This one:
template ...
0
votes
2answers
144 views
Declare module name of classes for logging
I currently am adding some features to our logging-library. One of these is the possibility to declare a module-name for a class that automatically gets preprended to any log-messages writing from ...