diff --git a/indra/newview/llvograss.h b/indra/newview/llvograss.h
index 86f4ef6ab7db3ae34fe56be4b25b8c4ac5744f91..6e5305e0eda18036b340ce9715998d944a7e50e9 100644
--- a/indra/newview/llvograss.h
+++ b/indra/newview/llvograss.h
@@ -43,7 +43,7 @@ class LLVOGrass final : public LLAlphaObject
 	static void initClass();
 	static void cleanupClass();
 
-	virtual U32 getPartitionType() const;
+	U32 getPartitionType() const override;
 
 	/*virtual*/ U32 processUpdateMessage(LLMessageSystem *mesgsys,
 											void **user_data,
@@ -65,7 +65,7 @@ class LLVOGrass final : public LLAlphaObject
 								LLStrider<LLColor4U>& emissivep,
 								LLStrider<U16>& indicesp);
 
-	void updateFaceSize(S32 idx) { }
+	void updateFaceSize(S32 idx) override { }
 	/*virtual*/ void updateTextures();											
 	/*virtual*/ BOOL updateLOD();
 	/*virtual*/ void setPixelAreaAndAngle(LLAgent &agent); // generate accurate apparent angle and area
diff --git a/indra/newview/llvosurfacepatch.h b/indra/newview/llvosurfacepatch.h
index 3b68911af57e3c50dba3c1a812452ac2317a47a2..fc54aded6a311c634e9f79459fed020c384a527f 100644
--- a/indra/newview/llvosurfacepatch.h
+++ b/indra/newview/llvosurfacepatch.h
@@ -53,13 +53,13 @@ class LLVOSurfacePatch final : public LLStaticViewerObject
 
 	/*virtual*/ void markDead() override;
 
-	virtual U32 getPartitionType() const;
+	virtual U32 getPartitionType() const override;
 
 	/*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline) override;
 	/*virtual*/ void		updateGL() override;
 	/*virtual*/ BOOL        updateGeometry(LLDrawable *drawable) override;
 	/*virtual*/ BOOL		updateLOD() override;
-	/*virtual*/ void		updateFaceSize(S32 idx);
+	/*virtual*/ void		updateFaceSize(S32 idx) override;
 	void getGeometry(LLStrider<LLVector3> &verticesp,
 								LLStrider<LLVector3> &normalsp,
 								LLStrider<LLVector2> &texCoords0p,
diff --git a/indra/newview/llvowater.h b/indra/newview/llvowater.h
index 3a6550e5d715badac874f78d634ad5c096f4d6e6..88f246808e4c66b1a94685739fce898144559a8a 100644
--- a/indra/newview/llvowater.h
+++ b/indra/newview/llvowater.h
@@ -89,7 +89,7 @@ class LLVOVoidWater final : public LLVOWater
 		mRenderType = LLPipeline::RENDER_TYPE_VOIDWATER;
 	}
 
-	/*virtual*/ U32 getPartitionType() const;
+	/*virtual*/ U32 getPartitionType() const override;
 };