| 71 | |
| 72 | |
| 73 | void StrPair::Reset() |
| 74 | { |
| 75 | if ( _flags & NEEDS_DELETE ) { |
| 76 | delete [] _start; |
| 77 | } |
| 78 | _flags = 0; |
| 79 | _start = 0; |
| 80 | _end = 0; |
| 81 | } |
| 82 | |
| 83 | |
| 84 | void StrPair::SetStr( const char* str, int flags ) |
nothing calls this directly
no outgoing calls
no test coverage detected