Added a couple more unimplemented assignment operators to silence VS2013 warnings

This commit is contained in:
philsquared
2017-02-21 09:10:44 +00:00
parent 44632c3d71
commit ca66dd243c
2 changed files with 5 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ namespace Matchers {
protected:
virtual std::string describe() const = 0;
mutable std::string m_cachedToString;
private:
MatcherUntypedBase& operator = (MatcherUntypedBase const&);
};
template<typename ArgT>