| 3 | namespace dp |
| 4 | { |
| 5 | AttributeBufferMutator::~AttributeBufferMutator() |
| 6 | { |
| 7 | SharedBufferManager & mng = SharedBufferManager::instance(); |
| 8 | for (size_t i = 0; i < m_array.size(); ++i) |
| 9 | { |
| 10 | TBufferNode & node = m_array[i]; |
| 11 | mng.freeSharedBuffer(node.second, node.first); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | void AttributeBufferMutator::AddMutation(BindingInfo const & info, MutateNode const & node) |
| 16 | { |
nothing calls this directly
no test coverage detected