Copy constructor.
| 2658 | |
| 2659 | // Copy constructor. |
| 2660 | Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT |
| 2661 | *ss_ << msg.GetString(); |
| 2662 | } |
| 2663 | |
| 2664 | // Constructs a Message from a C-string. |
| 2665 | explicit Message(const char* str) : ss_(new ::std::stringstream) { |
no test coverage detected