- fixes
This commit is contained in:
Phil Nash 2014-04-23 18:19:49 +01:00
parent 1a6f2a0a80
commit 174049532e
3 changed files with 20 additions and 16 deletions

View File

@ -1,6 +1,6 @@
![catch logo](catch-logo-small.png) ![catch logo](catch-logo-small.png)
*v1.0 build 40 (master branch)* *v1.0 build 41 (master branch)*
Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch) Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch)

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* CATCH v1.0 build 40 (master branch) * CATCH v1.0 build 41 (master branch)
* Generated: 2014-04-23 07:07:39.268798 * Generated: 2014-04-23 18:19:30.301111
* ---------------------------------------------------------- * ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly * This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -56,11 +56,13 @@
#ifdef __clang__ #ifdef __clang__
#if __has_feature(cxx_nullptr) # if __has_feature(cxx_nullptr)
# define CATCH_CONFIG_CPP11_NULLPTR
# endif
#define CATCH_CONFIG_CPP11_NULLPTR # if __has_feature(cxx_noexcept)
# define CATCH_CONFIG_CPP11_NOEXCEPT
#endif # endif
#endif // __clang__ #endif // __clang__
@ -151,13 +153,10 @@
#endif #endif
// noexcept support: // noexcept support:
#ifdef CATCH_CPP11_OR_GREATER #if defined(CATCH_CONFIG_CPP11_NOEXCEPT) && !defined(CATCH_NOEXCEPT)
# if (__has_feature(cxx_noexcept)) # define CATCH_NOEXCEPT noexcept
# define CATCH_NOEXCEPT noexcept # define CATCH_NOEXCEPT_IS(x) noexcept(x)
# define CATCH_NOEXCEPT_IS(x) noexcept(x) #else
# endif
#endif
#ifndef CATCH_NO_EXCEPT
# define CATCH_NOEXCEPT throw() # define CATCH_NOEXCEPT throw()
# define CATCH_NOEXCEPT_IS(x) # define CATCH_NOEXCEPT_IS(x)
#endif #endif
@ -617,6 +616,7 @@ namespace Catch {
#include <iomanip> #include <iomanip>
#include <limits> #include <limits>
#include <vector> #include <vector>
#include <cstddef>
#ifdef __OBJC__ #ifdef __OBJC__
// #included from: catch_objc_arc.hpp // #included from: catch_objc_arc.hpp
@ -992,6 +992,8 @@ namespace Catch {
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch #pragma warning(disable:4389) // '==' : signed/unsigned mismatch
#endif #endif
#include <cstddef>
namespace Catch { namespace Catch {
namespace Internal { namespace Internal {
@ -6652,7 +6654,7 @@ namespace Catch {
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 1, 0, 40, "master" ); Version libraryVersion( 1, 0, 41, "master" );
} }
// #included from: catch_message.hpp // #included from: catch_message.hpp
@ -7984,6 +7986,8 @@ namespace Catch {
// #included from: ../reporters/catch_reporter_console.hpp // #included from: ../reporters/catch_reporter_console.hpp
#define TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED #define TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED
#include <cstring>
namespace Catch { namespace Catch {
struct ConsoleReporter : StreamingReporterBase { struct ConsoleReporter : StreamingReporterBase {