[Mobies-commit] [commit] r4212 - UDM/trunk/include

endre at redhat3.isis.vanderbilt.edu endre at redhat3.isis.vanderbilt.edu
Sun Dec 8 04:50:17 CST 2013


Author: endre
Date: Sun Dec  8 04:50:17 2013
New Revision: 4212

Log:
Windows does not like 
virtual Udm::ObjectImpl::~ObjectImpl() {}; 

to be executed, although it is normal. 
 
G++ on MacOS X requires a virtual destructor for base classes.

Modified:
   UDM/trunk/include/UdmBase.h

Modified: UDM/trunk/include/UdmBase.h
==============================================================================
--- UDM/trunk/include/UdmBase.h	Sun Dec  8 03:37:26 2013	(r4211)
+++ UDM/trunk/include/UdmBase.h	Sun Dec  8 04:50:17 2013	(r4212)
@@ -305,7 +305,7 @@
 		virtual ObjectImpl *clone() = 0;
 		virtual void release() = 0;
 		virtual DataNetwork *__getdn() = 0;
-		virtual ~ObjectImpl() {};
+		//virtual ~ObjectImpl() {};
 
 	// --- type
 


More information about the Mobies-commit mailing list