Minor cleanup

This commit is contained in:
Martin Hořeňovský 2017-08-30 15:42:01 +02:00
parent 46e28791ff
commit 255f7d7369
6 changed files with 2 additions and 10 deletions

View File

@ -24,8 +24,6 @@
namespace Catch {
struct IConfig;
struct CaseSensitive { enum Choice {
Yes,
No

View File

@ -12,8 +12,6 @@
namespace Catch {
class TestCase;
class Stream;
struct IResultCapture;
struct IRunner;
struct IConfig;

View File

@ -50,8 +50,8 @@ namespace Catch {
}
public:
BinaryExpr( bool comparisionResult, LhsT lhs, StringRef op, RhsT rhs )
: m_result( comparisionResult ),
BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs )
: m_result( comparisonResult ),
m_lhs( lhs ),
m_op( op ),
m_rhs( rhs )

View File

@ -12,13 +12,11 @@
namespace Catch {
class TestCase;
class AssertionResult;
struct AssertionInfo;
struct SectionInfo;
struct SectionEndInfo;
struct MessageInfo;
class ScopedMessageBuilder;
struct Counts;
struct BenchmarkInfo;
struct BenchmarkStats;

View File

@ -165,7 +165,6 @@ namespace Catch {
size_t iterations;
uint64_t elapsedTimeInNanoseconds;
};
class MultipleReporters;
struct IStreamingReporter {
virtual ~IStreamingReporter() = default;

View File

@ -9,7 +9,6 @@
#define TWOBLUECUBES_CATCH_INTERFACES_RUNNER_H_INCLUDED
namespace Catch {
class TestCase;
struct IRunner {
virtual ~IRunner();