We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A15-1-3
When defining a function template which throws an exception, A15-1-3 warning is triggered, meaning that the exception is not unique.
template <typename T> void false_positive() { throw std::runtime_error{"message"}; // Triggers A15-1-3 warning }
Status