| 4938 | |
| 4939 | struct StringHolder : MatcherBase<NSString*>{ |
| 4940 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 4941 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 4942 | StringHolder() { |
| 4943 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected