| 195 | } |
| 196 | |
| 197 | void StatusVector::ImplStatusVector::append(const StatusVector& v) throw() |
| 198 | { |
| 199 | ImplStatusVector newVector(getKind(), getCode()); |
| 200 | |
| 201 | if (newVector.appendErrors(this)) |
| 202 | { |
| 203 | if (newVector.appendErrors(v.implementation)) |
| 204 | { |
| 205 | if (newVector.appendWarnings(this)) |
| 206 | newVector.appendWarnings(v.implementation); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | *this = newVector; |
| 211 | } |
| 212 | |
| 213 | void StatusVector::ImplStatusVector::prepend(const StatusVector& v) throw() |
| 214 | { |
no test coverage detected