# By gnzlbg
# Via gnzlbg
* 'master' of https://github.com/gnzlbg/Catch:
  Conditionally removes usage of deprecated features

Conflicts (resolved):
	include/internal/catch_common.h
	include/internal/catch_section.hpp
This commit is contained in:
Phil Nash
2014-04-18 08:49:35 +01:00
16 changed files with 213 additions and 25 deletions

View File

@@ -22,6 +22,12 @@ namespace Catch {
std::string const& name,
std::string const& description = "" );
~Section();
# ifdef CATCH_CPP11_OR_GREATER
Section( Section const& ) = default;
Section( Section && ) = default;
Section& operator = ( Section const& ) = default;
Section& operator = ( Section && ) = default;
# endif
// This indicates whether the section should be executed or not
operator bool();