| 3307 | template<typename MatcherT> |
| 3308 | struct StringHolder : MatcherImpl<MatcherT, NSString*>{ |
| 3309 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 3310 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 3311 | StringHolder() { |
| 3312 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected