\brief Destructor - frees memory used to hold the current value.
| 637 | |
| 638 | //! \brief Destructor - frees memory used to hold the current value. |
| 639 | ~string() |
| 640 | { |
| 641 | delete[] str_; |
| 642 | str_ = NULL; |
| 643 | } |
| 644 | |
| 645 | //! \brief Queries the length of the string, excluding any added '\0's. |
| 646 | ::size_t size(void) const { return size_; } |
nothing calls this directly
no outgoing calls
no test coverage detected