| 4029 | |
| 4030 | struct StringHolder : MatcherBase<NSString*>{ |
| 4031 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 4032 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 4033 | StringHolder() { |
| 4034 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected