1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-31 07:34:46 +02:00

Remove pointless virtual in WildcardPattern

This commit is contained in:
Martin Hořeňovský 2020-11-26 18:35:20 +01:00
parent 3bd5fd6bc5
commit c3e8ae642f
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A

@ -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;