My program contains the following statement: auto newChildNode = new Node();
In debugging I have found that this pointer evaluates to null, what could cause this? I should have plenty of memory, my only other idea is some sort of heap corruption.
faissaloo via Digitalmars-d-learn Fri, 10 May 2019 03:15:43 -0700
My program contains the following statement: auto newChildNode = new Node();
In debugging I have found that this pointer evaluates to null, what could cause this? I should have plenty of memory, my only other idea is some sort of heap corruption.