Import MatcherBase to Catch namespace

This commit is contained in:
Phil Nash 2017-02-14 09:15:08 +00:00
parent a5a013811c
commit 2081caa452
2 changed files with 2 additions and 1 deletions

View File

@ -159,6 +159,7 @@ namespace Matchers {
} // namespace Matchers
using namespace Matchers;
using Matchers::Impl::MatcherBase;
} // namespace Catch

View File

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