ivanseidel / LinkedList

🔗 A fully implemented LinkedList made to work with general Microcontrollers and Arduino projects
MIT License
347 stars 120 forks source link

Disable copying. #62

Open pvginkel opened 1 year ago

pvginkel commented 1 year ago

Deleted the copy constructor and the copy operator because it's not supported. The default copy constructor and operator give you a copy, but when one of them is deleted, that also deletes the memory the other instance is pointing to.