mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Added missing #include for assert to fix build failure
This commit is contained in:
parent
a1fbfea659
commit
f276a0588c
2
README
2
README
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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> {
|
||||
|
@ -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> {
|
||||
|
Loading…
Reference in New Issue
Block a user