| 825 | //------------------------------------------------------------------------ |
| 826 | template <class T, unsigned S> |
| 827 | inline void pod_bvector<T, S>::add(const T& val) |
| 828 | { |
| 829 | *data_ptr() = val; |
| 830 | ++m_size; |
| 831 | } |
| 832 | |
| 833 | //------------------------------------------------------------------------ |
| 834 | template <class T, unsigned S> |
no outgoing calls
no test coverage detected