| 93 | |
| 94 | |
| 95 | std::string |
| 96 | Message::details() const |
| 97 | { |
| 98 | std::string details; |
| 99 | for ( Details::const_iterator it = m_details.begin(); it != m_details.end(); ++it ) |
| 100 | { |
| 101 | details += "- "; |
| 102 | details += *it; |
| 103 | details += '\n'; |
| 104 | } |
| 105 | return details; |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void |
no test coverage detected