MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / ~IoBufferPool

Method ~IoBufferPool

libcppcryptfs/file/iobufferpool.cpp:69–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67
68
69IoBufferPool::~IoBufferPool()
70{
71#if 0
72 char buf[64];
73 sprintf_s(buf, "num iobuffers = %d\n", static_cast<int>(m_buffers.size()));
74 OutputDebugStringA(buf);
75#endif
76 for (IoBuffer* pBuf : m_buffers) {
77 delete pBuf;
78 }
79}
80
81
82IoBuffer * IoBufferPool::GetIoBuffer(size_t buffer_size, size_t ivbuffer_size)

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected