| 24 | |
| 25 | template <class T, class ALLOCATOR> |
| 26 | Buffer<T,ALLOCATOR>::Buffer(const ALLOCATOR& allocator) : |
| 27 | _buffer(allocator), |
| 28 | _isClosed(false) |
| 29 | {} |
| 30 | |
| 31 | template <class T, class ALLOCATOR> |
| 32 | template <class V> |
nothing calls this directly
no outgoing calls
no test coverage detected