mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-14 17:35:39 +02:00
Merge branch 'master' of https://github.com/gnzlbg/Catch
# 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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user