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

@@ -38,6 +38,7 @@ namespace Catch
void operator = ( const NonCopyable& );
protected:
NonCopyable(){}
virtual ~NonCopyable() {}
};
typedef char NoType;