From bc34217979c0a692b17de7ffcb524ed2418da967 Mon Sep 17 00:00:00 2001
From: Nicky <none@none>
Date: Wed, 26 Sep 2012 20:02:32 +0200
Subject: [PATCH] Add virtual destructor to LLGLFence.

---
 indra/llrender/llgl.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/indra/llrender/llgl.h b/indra/llrender/llgl.h
index 964495a3abc..d70e764769a 100644
--- a/indra/llrender/llgl.h
+++ b/indra/llrender/llgl.h
@@ -424,6 +424,10 @@ const U32 FENCE_WAIT_TIME_NANOSECONDS = 1000;  //1 ms
 class LLGLFence
 {
 public:
+	virtual ~LLGLFence()
+	{
+	}
+
 	virtual void placeFence() = 0;
 	virtual bool isCompleted() = 0;
 	virtual void wait() = 0;
-- 
GitLab