derived class not over writing base class function - using vectorsOkay, turns out this has already been answered, silly me should've researched this more before posti...
derived class not over writing base class function - using vectorsHello Everyone. So I have a base class, lets call it base. In base I have a virtual function cal...
Set value of unique_ptrOkay fixed my own problem, I thought it wasn't working cause when I went: [code] std::cout << Block...
Set value of unique_ptrOkay so say I have this. [code] std::unique_ptr<int> Blocks[10]; Blocks[0] = std::unique_ptr<int> ...
how to delete unique_ptrI was wondering how I would go about deleting just a single member in a unique_ptr array here is ...