Skip to content

Commit 2166267

Browse files
Nicky-Drohvani
authored andcommitted
Replace from virtual with override
1 parent 87e20bd commit 2166267

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

indra/llappearanceutility/llbakingjoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class LLBakingJoint : public virtual LLAvatarJoint
3737
virtual ~LLBakingJoint();
3838

3939
// LLViewerJoint interface
40-
virtual U32 render( F32 pixelArea, bool first_pass = true, bool is_dummy = false );
40+
U32 render( F32 pixelArea, bool first_pass = true, bool is_dummy = false ) override;
4141
};
4242

4343
#endif /* LL_LLBAKINGJOINT_H */

indra/llappearanceutility/llbakingtexture.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class LLBakingTexture : public LLGLTexture
4545
LLBakingTexture(bool usemipmaps);
4646
LLBakingTexture(const U32 width, const U32 height, const U8 components, bool usemipmaps = true);
4747
const LLUUID& getID() const override { return mID; }
48-
virtual S8 getType() const { return BAKING_TEXTURE; }
48+
S8 getType() const override { return BAKING_TEXTURE; }
4949

5050
// Not implemented.
5151
void setKnownDrawSize(S32 width, S32 height) override;

0 commit comments

Comments
 (0)