[svn] GpgEX - r13 - trunk/src

svn author marcus cvs at cvs.gnupg.org
Wed Sep 5 16:42:12 CEST 2007


Author: marcus
Date: 2007-09-05 16:41:42 +0200 (Wed, 05 Sep 2007)
New Revision: 13

Modified:
   trunk/src/ChangeLog
   trunk/src/gpgex.h
Log:
2007-09-05  Marcus Brinkmann  <marcus at g10code.de>

	* gpgex.h (class gpgex_t): Make destructor virtual to silence
	compiler warning.


Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog	2007-09-05 14:36:45 UTC (rev 12)
+++ trunk/src/ChangeLog	2007-09-05 14:41:42 UTC (rev 13)
@@ -1,5 +1,8 @@
 2007-09-05  Marcus Brinkmann  <marcus at g10code.de>
 
+	* gpgex.h (class gpgex_t): Make destructor virtual to silence
+	compiler warning.
+
 	* Makefile.am (ICON_NAMES, ICON_SIZES, ICONS): New variables.
 	(gpgex_SOURCES): Add $(ICONS).
 

Modified: trunk/src/gpgex.h
===================================================================
--- trunk/src/gpgex.h	2007-09-05 14:36:45 UTC (rev 12)
+++ trunk/src/gpgex.h	2007-09-05 14:41:42 UTC (rev 13)
@@ -119,7 +119,8 @@
       (void) TRACE_SUC ();
     }
 
-  ~gpgex_t (void)
+  /* The "virtual" fixes a compile time warning.  */
+  virtual ~gpgex_t (void)
     {
       TRACE_BEG (DEBUG_INIT, "gpgex_t::~gpgex_t", this);
 




More information about the Gnupg-commits mailing list