| 2947 | |
| 2948 | struct StringHolder : MatcherBase<NSString*>{ |
| 2949 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 2950 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 2951 | StringHolder() { |
| 2952 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected