mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Import MatcherBase to Catch namespace
This commit is contained in:
parent
a5a013811c
commit
2081caa452
@ -159,6 +159,7 @@ namespace Matchers {
|
||||
} // namespace Matchers
|
||||
|
||||
using namespace Matchers;
|
||||
using Matchers::Impl::MatcherBase;
|
||||
|
||||
} // namespace Catch
|
||||
|
||||
|
@ -25,7 +25,7 @@ namespace Matchers {
|
||||
std::string m_str;
|
||||
};
|
||||
|
||||
struct StringMatcherBase : Impl::MatcherBase<std::string> {
|
||||
struct StringMatcherBase : MatcherBase<std::string> {
|
||||
StringMatcherBase( std::string operation, CasedString const& comparator );
|
||||
virtual std::string describe() const CATCH_OVERRIDE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user