Anyone familiar with the CoderPad environment:
Is there anything special one must do to access `std::unique_ptr`? I'd expect that to be available but it seems to be missing from their C++ environment.
Oop, looks like I've been out of the C++ game for long enough that I forgot some fundamentals. ;)
CoderPad does support `unique_ptr`; you have to `#include <memory>` to pull it in because C++'s std lib is carved up into a bunch of smaller headers.
It's been awhile!
QOTO: Question Others to Teach Ourselves An inclusive, Academic Freedom, instance All cultures welcome. Hate speech and harassment strictly forbidden.
Oop, looks like I've been out of the C++ game for long enough that I forgot some fundamentals. ;)
CoderPad does support `unique_ptr`; you have to `#include <memory>` to pull it in because C++'s std lib is carved up into a bunch of smaller headers.
It's been awhile!