| 594 | // |
| 595 | |
| 596 | BoxList |
| 597 | boxDiff (const Box& b1in, const Box& b2) |
| 598 | { |
| 599 | BL_ASSERT(b1in.sameType(b2)); |
| 600 | BoxList bl_diff(b1in.ixType()); |
| 601 | boxDiff(bl_diff,b1in,b2); |
| 602 | return bl_diff; |
| 603 | } |
| 604 | |
| 605 | void |
| 606 | boxDiff (BoxList& bl_diff, const Box& b1in, const Box& b2) |
no test coverage detected