2017-07-20 00:27:28 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil Nash on 19/07/2017.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
2017-09-07 12:24:33 +02:00
|
|
|
#include "catch_matchers.h"
|
2017-07-20 00:27:28 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
namespace Matchers {
|
|
|
|
namespace Impl {
|
|
|
|
|
|
|
|
std::string MatcherUntypedBase::toString() const {
|
|
|
|
if( m_cachedToString.empty() )
|
|
|
|
m_cachedToString = describe();
|
|
|
|
return m_cachedToString;
|
|
|
|
}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
MatcherUntypedBase::~MatcherUntypedBase() = default;
|
|
|
|
|
2017-07-20 00:27:28 +02:00
|
|
|
} // namespace Impl
|
|
|
|
} // namespace Matchers
|
|
|
|
|
|
|
|
using namespace Matchers;
|
|
|
|
using Matchers::Impl::MatcherBase;
|
|
|
|
|
|
|
|
} // namespace Catch
|