Modify the box such that it is considered to be empty
| 108 | |
| 109 | /// Modify the box such that it is considered to be empty |
| 110 | static void makeEmpty( T &box ) |
| 111 | { |
| 112 | box.makeEmpty(); |
| 113 | |
| 114 | assert( isEmpty(box) ); |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | template<> |
no outgoing calls
no test coverage detected