| 4753 | |
| 4754 | struct StringHolder : MatcherBase<NSString*>{ |
| 4755 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
| 4756 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
| 4757 | StringHolder() { |
| 4758 | arcSafeRelease( m_substr ); |
nothing calls this directly
no test coverage detected