friend foo --> friend class foo

This commit is contained in:
Andrew Meadows 2014-06-23 13:59:44 -07:00
parent 415dfd98aa
commit e2204ab78e

View file

@ -71,7 +71,7 @@ protected:
private:
// PhysicsSimulation is a friend so that it can set the protected _simulation backpointer
friend PhysicsSimulation;
friend class PhysicsSimulation;
PhysicsSimulation* _simulation;
};