| 841 | //------------------------------------------------------------------------ |
| 842 | template <class T, unsigned S> |
| 843 | void pod_bvector<T, S>::modify_last(const T& val) |
| 844 | { |
| 845 | remove_last(); |
| 846 | add(val); |
| 847 | } |
| 848 | |
| 849 | //------------------------------------------------------------------------ |
| 850 | template <class T, unsigned S> |
no outgoing calls
no test coverage detected