User profile: Og The Trog

User info
User name:Og The Trog
History
Joined:
Number of posts:15
Latest posts:

derived class not over writing base class function - using vectors
Okay, 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 vectors
Hello Everyone. So I have a base class, lets call it base. In base I have a virtual function cal...

Set value of unique_ptr
Okay fixed my own problem, I thought it wasn't working cause when I went: [code] std::cout << Block...

Set value of unique_ptr
Okay so say I have this. [code] std::unique_ptr<int> Blocks[10]; Blocks[0] = std::unique_ptr<int> ...

how to delete unique_ptr
I was wondering how I would go about deleting just a single member in a unique_ptr array here is ...