| 4360 | |
| 4361 | struct StringHolder : MatcherBase<NSString*>{ |
| 4362 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 4363 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 4364 | StringHolder() { |
| 4365 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected