Assuming I have two classes, the base containing a private member variable and the other class being derived from base, what is stopping me from accessing that private variable as a member inside of the derived class?

g++ gives me:

'int base::variable' is private
within this context