The default c'tor constructs a NULL string.
| 3040 | |
| 3041 | // The default c'tor constructs a NULL string. |
| 3042 | String() : c_str_(NULL), length_(0) {} |
| 3043 | |
| 3044 | // Constructs a String by cloning a 0-terminated C string. |
| 3045 | String(const char* a_c_str) { // NOLINT |
no outgoing calls
no test coverage detected