| 94 | |
| 95 | template <class T, class S> |
| 96 | static Box<T> *boxConstructor(const Box<S> &box) |
| 97 | { |
| 98 | Box<T> *newBox = new Box<T>; |
| 99 | newBox->min = box.min; |
| 100 | newBox->max = box.max; |
| 101 | |
| 102 | return newBox; |
| 103 | } |
| 104 | |
| 105 | template <class T> |
| 106 | static Box<T> * box3TupleConstructor1(const tuple &t) |
nothing calls this directly
no outgoing calls
no test coverage detected