pull/3297/head
Malcolm Tyrrell 2020-06-23 12:08:06 +01:00
parent 9188f56839
commit 2977643352
1 changed files with 2 additions and 3 deletions

View File

@ -52,11 +52,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
namespace
{
/// An exception which is thrown by the testAssertHandler
struct TestAssertException : std::exception
struct TestAssertException
{
TestAssertException(const char* failedExpression, const char* file, int line)
: std::exception("Test Assert Exception")
, m_failedExpression(failedExpression)
: m_failedExpression(failedExpression)
, m_file(file)
, m_line(line)
{