Is there a way to make static_assert's string being dynamically customized and then displayed?
What I mean is something like:
//pseudo code
static_assert(Check_Range<T>::value, "Value of " + typeof(T) + " type is not so good ;)");
|
Is there a way to make static_assert's string being dynamically customized and then displayed?
|
||||
|
|
|
The standard specifies the second argument of A compiler could extend the standard and allow const-expressions of approporiate type in this position, but I have no idea if any compiler does. |
|||
|
|
|
No, there is not. However this does not matter so much, because Have a look at this synthetic example in ideone:
The compiler does not only emits the diagnostic, but it also emits the full stack:
If you know Python or Java and how they print the stack in case of exception, it should be familiar. In fact, though, it's even better, because you not only get the call stack, but you also get the arguments values (types here)! Therefore, dynamic messages are not as necessary :) |
|||||||
|