Skip to content
Snippets Groups Projects
Commit b839597d authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix warning

parent ffa6e4b2
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ class LLViewerJoint : ...@@ -51,7 +51,7 @@ class LLViewerJoint :
LLViewerJoint(const std::string &name, LLJoint *parent = NULL); LLViewerJoint(const std::string &name, LLJoint *parent = NULL);
virtual ~LLViewerJoint(); virtual ~LLViewerJoint();
LLViewerJoint* asViewerJoint() final { return static_cast<LLViewerJoint*>(this); } LLViewerJoint* asViewerJoint() override { return static_cast<LLViewerJoint*>(this); }
// Render character hierarchy. // Render character hierarchy.
// Traverses the entire joint hierarchy, setting up // Traverses the entire joint hierarchy, setting up
......
...@@ -41,7 +41,7 @@ class LLViewerTexLayerSet; ...@@ -41,7 +41,7 @@ class LLViewerTexLayerSet;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// class LLViewerJointMesh // class LLViewerJointMesh
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LLViewerJointMesh : public LLAvatarJointMesh, public LLViewerJoint class LLViewerJointMesh final : public LLAvatarJointMesh, public LLViewerJoint
{ {
public: public:
// Constructor // Constructor
...@@ -50,6 +50,8 @@ class LLViewerJointMesh : public LLAvatarJointMesh, public LLViewerJoint ...@@ -50,6 +50,8 @@ class LLViewerJointMesh : public LLAvatarJointMesh, public LLViewerJoint
// Destructor // Destructor
virtual ~LLViewerJointMesh(); virtual ~LLViewerJointMesh();
LLViewerJoint* asViewerJoint() override { return static_cast<LLViewerJoint*>(this); }
// Render time method to upload batches of joint matrices // Render time method to upload batches of joint matrices
void uploadJointMatrices(); void uploadJointMatrices();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment