Copy constructor.
| 3166 | |
| 3167 | // Copy constructor. |
| 3168 | Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT |
| 3169 | *ss_ << msg.GetString(); |
| 3170 | } |
| 3171 | |
| 3172 | // Constructs a Message from a C-string. |
| 3173 | explicit Message(const char* str) : ss_(new ::std::stringstream) { |
no test coverage detected