Skip to content

Commit

Permalink
dev build 2
Browse files Browse the repository at this point in the history
  • Loading branch information
philsquared committed Nov 6, 2015
1 parent d10b73f commit 9235676
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![catch logo](catch-logo-small.png)

*v1.3.0-develop.1*
*v1.3.0-develop.2*

Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch)

Expand Down
2 changes: 1 addition & 1 deletion include/internal/catch_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace Catch {
return os;
}

Version libraryVersion( 1, 3, 0, "develop", 1 );
Version libraryVersion( 1, 3, 0, "develop", 2 );

}

Expand Down
11 changes: 6 additions & 5 deletions single_include/catch.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Catch v1.3.0-develop.1
* Generated: 2015-11-05 18:47:08.462966
* Catch v1.3.0-develop.2
* Generated: 2015-11-06 18:05:44.676531
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
Expand Down Expand Up @@ -862,7 +862,8 @@ namespace Matchers {

namespace Generic {
template<typename ExpressionT>
struct Not : public MatcherImpl<Not<ExpressionT>, ExpressionT> {
class Not : public MatcherImpl<Not<ExpressionT>, ExpressionT> {
public:
explicit Not( Matcher<ExpressionT> const& matcher ) : m_matcher(matcher.clone()) {}
Not( Not const& other ) : m_matcher( other.m_matcher ) {}

Expand All @@ -873,7 +874,7 @@ namespace Matchers {
virtual std::string toString() const CATCH_OVERRIDE {
return "not " + m_matcher->toString();
}

private:
Ptr< Matcher<ExpressionT> > m_matcher;
};

Expand Down Expand Up @@ -7238,7 +7239,7 @@ namespace Catch {
return os;
}

Version libraryVersion( 1, 3, 0, "develop", 1 );
Version libraryVersion( 1, 3, 0, "develop", 2 );

}

Expand Down

0 comments on commit 9235676

Please sign in to comment.