mirror of
https://github.com/catchorg/Catch2.git
synced 2025-01-16 07:08:01 +00:00
Compare commits
4 Commits
677adf8ade
...
130bf835b5
Author | SHA1 | Date | |
---|---|---|---|
|
130bf835b5 | ||
|
c3e8ae642f | ||
|
3bd5fd6bc5 | ||
|
f36e059453 |
@ -121,7 +121,8 @@ new design.
|
||||
* Event Listener interface has changed
|
||||
* `TestEventListenerBase` was renamed to `EventListenerBase`
|
||||
* `EventListenerBase` now directly derives from `IStreamingReporter`, instead of deriving from `StreamingReporterBase`
|
||||
|
||||
* `GENERATE` decays its arguments (#2012, #2040)
|
||||
* This means that `str` in `auto str = GENERATE("aa", "bb", "cc");` is inferred to `char const*` rather than `const char[2]`.
|
||||
|
||||
|
||||
### Improvements
|
||||
|
@ -25,8 +25,7 @@ namespace Catch
|
||||
public:
|
||||
|
||||
WildcardPattern( std::string const& pattern, CaseSensitive caseSensitivity );
|
||||
virtual ~WildcardPattern() = default;
|
||||
virtual bool matches( std::string const& str ) const;
|
||||
bool matches( std::string const& str ) const;
|
||||
|
||||
private:
|
||||
std::string normaliseString( std::string const& str ) const;
|
||||
|
@ -12,7 +12,6 @@
|
||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||
|
||||
#include <iosfwd>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user