From 012383f7c5e799dc632fc85e0348e580315f43aa Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Fri, 1 Mar 2013 17:33:45 -0500 Subject: [PATCH] Added missing virtual destructor to ICVarIteratorInternal. --- public/icvar.h | 1 + 1 file changed, 1 insertion(+) diff --git a/public/icvar.h b/public/icvar.h index 6e073e91..ebab8531 100644 --- a/public/icvar.h +++ b/public/icvar.h @@ -157,6 +157,7 @@ protected: class ICVarIteratorInternal { public: + virtual ~ICVarIteratorInternal() {} virtual void SetFirst( void ) = 0; virtual void Next( void ) = 0; virtual bool IsValid( void ) = 0;