| 376 | |
| 377 | |
| 378 | void ERR_append_status(FbStatusVector* status_vector, const Arg::StatusVector& v) |
| 379 | { |
| 380 | /************************************** |
| 381 | * |
| 382 | * E R R _ a p p e n d _ s t a t u s |
| 383 | * |
| 384 | ************************************** |
| 385 | * |
| 386 | * Functional description |
| 387 | * Append the given status vector with the passed arguments. |
| 388 | * |
| 389 | **************************************/ |
| 390 | // First build a status vector with the passed one |
| 391 | Arg::StatusVector passed(status_vector); |
| 392 | |
| 393 | // Now append the newly vector to the passed one |
| 394 | passed.append(v); |
| 395 | |
| 396 | // Return the result |
| 397 | passed.copyTo(status_vector); |
| 398 | } |
| 399 | |
| 400 | |
| 401 | void ERR_build_status(FbStatusVector* status_vector, const Arg::StatusVector& v) |
no test coverage detected