You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2017/11/14 21:26:40 UTC

[trafficserver] branch master updated: TsLuaConfig: Fix virtual destructor issue.

This is an automated email from the ASF dual-hosted git repository.

amc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a53cf1  TsLuaConfig: Fix virtual destructor issue.
8a53cf1 is described below

commit 8a53cf1d2667ddd5c68bf843c1d25469cb1be48c
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Tue Nov 14 13:17:18 2017 -0600

    TsLuaConfig: Fix virtual destructor issue.
---
 lib/tsconfig/TsConfigLua.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/tsconfig/TsConfigLua.h b/lib/tsconfig/TsConfigLua.h
index db79f99..fb3b90d 100644
--- a/lib/tsconfig/TsConfigLua.h
+++ b/lib/tsconfig/TsConfigLua.h
@@ -97,7 +97,7 @@ public:
   TsConfigBase(TsConfigDescriptor const& d) : descriptor(d) {}
   TsConfigDescriptor const& descriptor; ///< Static schema data.
   Source source = Source::NONE; ///< Where the instance data came from.
-  ~TsConfigBase()
+  virtual ~TsConfigBase()
   {}
   /// Load the instance data from the Lua stack.
   virtual ts::Errata loader(lua_State* s) = 0;

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].