linux and mac compile fixes.

Removed "friend MyAvatar" from Rig and JointState.
This was only there for debugging, but I accidentally committed it.
This commit is contained in:
Anthony J. Thibault 2015-09-04 16:17:35 -07:00
parent 69e463bbfd
commit bb5d061d78
2 changed files with 0 additions and 5 deletions

View file

@ -26,8 +26,6 @@ class AngularConstraint;
class JointState {
public:
friend class MyAvatar;
JointState() {}
JointState(const JointState& other) { copyState(other); }
JointState(const FBXJoint& joint);

View file

@ -50,9 +50,6 @@ class Rig;
typedef std::shared_ptr<Rig> RigPointer;
class Rig : public QObject, public std::enable_shared_from_this<Rig> {
friend MyAvatar;
public:
struct HeadParameters {