Fix compiler warnings

Fix base classes without virtual destructors and missing initialisors.
This commit is contained in:
Wichert Akkerman
2011-09-23 10:03:52 +02:00
parent 98a21bce5d
commit 6d18d4b189
5 changed files with 26 additions and 4 deletions

View File

@@ -42,7 +42,11 @@ namespace Catch
///////////////////////////////////////////////////////////////////////
TestCaseInfo
()
: m_test( NULL )
: m_test( NULL ),
m_name(),
m_description(),
m_filename(),
m_line( 0 )
{
}