| 2322 | } |
| 2323 | |
| 2324 | int String::compare( const String& str ) const { |
| 2325 | return mString.compare( str.mString ); |
| 2326 | } |
| 2327 | |
| 2328 | int String::compare( const char* s ) const { |
| 2329 | return compare( String( s ) ); |
no outgoing calls
no test coverage detected