Added missing #include for assert to fix build failure

This commit is contained in:
Phil Nash 2012-12-02 00:05:51 +00:00
parent a1fbfea659
commit f276a0588c
4 changed files with 9 additions and 5 deletions

2
README
View File

@ -1,4 +1,4 @@
CATCH v0.9 build 7 (integration branch)
CATCH v0.9 build 8 (integration branch)
---------------------------------------------
CATCH is an automated test framework for C, C++ and Objective-C.

View File

@ -13,7 +13,7 @@
namespace Catch {
// These numbers are maintained by a script
Version libraryVersion( 0, 9, 7, "integration" );
Version libraryVersion( 0, 9, 8, "integration" );
}
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED

View File

@ -13,6 +13,8 @@
#include "../internal/catch_reporter_registrars.hpp"
#include "../internal/catch_xmlwriter.hpp"
#include <assert.h>
namespace Catch {
class JunitReporter : public SharedImpl<IReporter> {

View File

@ -1,6 +1,6 @@
/*
* CATCH v0.9 build 7 (integration branch)
* Generated: 2012-12-01 23:56:31.861593
* CATCH v0.9 build 8 (integration branch)
* Generated: 2012-12-02 00:05:11.160560
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -5580,7 +5580,7 @@ namespace Catch {
namespace Catch {
// These numbers are maintained by a script
Version libraryVersion( 0, 9, 7, "integration" );
Version libraryVersion( 0, 9, 8, "integration" );
}
// #included from: ../reporters/catch_reporter_basic.hpp
@ -6325,6 +6325,8 @@ namespace Catch {
// #included from: ../reporters/catch_reporter_junit.hpp
#define TWOBLUECUBES_CATCH_REPORTER_JUNIT_HPP_INCLUDED
#include <assert.h>
namespace Catch {
class JunitReporter : public SharedImpl<IReporter> {