243 | + {
244 | + typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, memusage::AccountingAllocator<int>> container_type;
245 | + container_type container1({}, 2, std::hash<int>(), std::equal_to<int>(), memusage::AccountingAllocator<int>(dummy)); // container1 is accounted for in 'dummy'
246 | + container1.insert(6);
247 | + {
248 | + container_type container2(1, std::hash<int>(), std::equal_to<int>(), memusage::AccountingAllocator<int>(total)); // container2 is accounted for in 'total'
65fc229fabbc7889baca9c50ee35507543a6682e
~nit - dedicated constructors could be used:~