From 2b28fecf4893e103e99328e5b4a13c607498396d Mon Sep 17 00:00:00 2001
From: Dave Parks <davep@lindenlab.com>
Date: Wed, 5 Oct 2022 10:44:17 -0500
Subject: [PATCH] SL-18190 Fix for mac build

---
 indra/newview/lldrawpoolwater.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/lldrawpoolwater.h b/indra/newview/lldrawpoolwater.h
index 39f25541efe..418430d68a0 100644
--- a/indra/newview/lldrawpoolwater.h
+++ b/indra/newview/lldrawpoolwater.h
@@ -56,7 +56,7 @@ class LLDrawPoolWater final: public LLFacePool
 							LLVertexBuffer::MAP_TEXCOORD0	
 	};
 
-	virtual U32 getVertexDataMask() { return VERTEX_DATA_MASK; }
+	virtual U32 getVertexDataMask() override { return VERTEX_DATA_MASK; }
 
 	LLDrawPoolWater();
 	/*virtual*/ ~LLDrawPoolWater();
@@ -74,7 +74,7 @@ class LLDrawPoolWater final: public LLFacePool
 	void render(S32 pass = 0) override;
 	void prerender() override;
 
-	LLViewerTexture *getDebugTexture();
+	LLViewerTexture *getDebugTexture() override;
 	LLColor3 getDebugColor() const; // For AGP debug display
 
 	void renderReflection(LLFace* face);
-- 
GitLab