| 669 | //------------------------------------------------------------------------ |
| 670 | template<class T, unsigned S> |
| 671 | void pod_bvector<T, S>::modify_last(const T& val) |
| 672 | { |
| 673 | remove_last(); |
| 674 | add(val); |
| 675 | } |
| 676 | |
| 677 | |
| 678 | //------------------------------------------------------------------------ |
no outgoing calls
no test coverage detected