| 4886 | |
| 4887 | struct StringHolder : MatcherBase<NSString*>{ |
| 4888 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 4889 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 4890 | StringHolder() { |
| 4891 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected