Copy constructor.
| 3762 | |
| 3763 | // Copy constructor. |
| 3764 | Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT |
| 3765 | *ss_ << msg.GetString(); |
| 3766 | } |
| 3767 | |
| 3768 | // Constructs a Message from a C-string. |
| 3769 | explicit Message(const char* str) : ss_(new ::std::stringstream) { |
no test coverage detected