File tree Expand file tree Collapse file tree 1 file changed +0
-1
lines changed
examples/core/vsgallocator Expand file tree Collapse file tree 1 file changed +0
-1
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ int main(int argc, char** argv)
8080 if (arguments.read (" --custom" )) vsg::Allocator::instance ().reset (new CustomAllocator (std::move (vsg::Allocator::instance ())));
8181 if (int mt; arguments.read ({" --memory-tracking" , " --mt" }, mt)) vsg::Allocator::instance ()->setMemoryTracking (mt);
8282 if (int type; arguments.read (" --allocator" , type)) vsg::Allocator::instance ()->allocatorType = vsg::AllocatorType (type);
83- if (int type; arguments.read (" --blocks" , type)) vsg::Allocator::instance ()->memoryBlocksAllocatorType = vsg::AllocatorType (type);
8483 if (size_t objectsBlockSize; arguments.read (" --objects" , objectsBlockSize)) vsg::Allocator::instance ()->setBlockSize (vsg::ALLOCATOR_AFFINITY_OBJECTS, objectsBlockSize);
8584 if (size_t nodesBlockSize; arguments.read (" --nodes" , nodesBlockSize)) vsg::Allocator::instance ()->setBlockSize (vsg::ALLOCATOR_AFFINITY_NODES, nodesBlockSize);
8685 if (size_t dataBlockSize; arguments.read (" --data" , dataBlockSize)) vsg::Allocator::instance ()->setBlockSize (vsg::ALLOCATOR_AFFINITY_DATA, dataBlockSize);
You can’t perform that action at this time.
0 commit comments