Copy constructor.
| 8592 | |
| 8593 | // Copy constructor. |
| 8594 | Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT |
| 8595 | *ss_ << msg.GetString(); |
| 8596 | } |
| 8597 | |
| 8598 | // Constructs a Message from a C-string. |
| 8599 | explicit Message(const char* str) : ss_(new ::std::stringstream) { |
no outgoing calls
no test coverage detected