Segmentation Fault In Recurisve Structure With Smart Pointer
A singly linked list implemented with smart pointer, which has a reference to next, can easily cause Stack Overflow at its destruction because the destructor of the next, and the next, and the next, are called recursively.
Here's the code.
#in… more »