Is this a memory leak

vtkDebugLeaks has detected LEAKS!
Class “vtkMinimalStandardRandomSequence” has 1 instance still around.
Class “vtkCellArray” has 1 instance still around.
Class “vtkBoxMuellerRandomSequence” has 1 instance still around.
Class “vtkIdList” has 1 instance still around.
Class “vtkMathInternal” has 1 instance still around.
Class “vtkIdTypeArray” has 1 instance still around.
Class “class vtkBuffer<__int64>” has 3 instances still around.
Class “vtkTypeInt64Array” has 2 instances still around.
Class “vtkRenderingFreeTypeObjectFactory” has 1 instance still around.
Class “vtkObjectFactoryCollection” has 1 instance still around.
Class “vtkInteractionStyleObjectFactory” has 1 instance still around.

int main()
{
	for (size_t i = 0; i < 100; i++)
	{
	//auto cor=vtkSmartPointer<vtkCornerAnnotation>::New();
	}
	vtkDebugLeaks::PrintCurrentLeaks();
}
```code is empty.

Please share a complete example, cmake and includes included.

There are a number of global objects that this is likely surfacing. I don’t know that PrintCurrentLeaks is reliable unless called from the static destructor that normally invokes it.