From: <mor...@us...> - 2010-12-21 08:19:39
|
Revision: 3876 http://ecell.svn.sourceforge.net/ecell/?rev=3876&view=rev Author: moriyoshi Date: 2010-12-21 08:19:32 +0000 (Tue, 21 Dec 2010) Log Message: ----------- * Remove unnecessary const. Modified Paths: -------------- ecell3/trunk/ecell/dm/PythonProcessBase.hpp Modified: ecell3/trunk/ecell/dm/PythonProcessBase.hpp =================================================================== --- ecell3/trunk/ecell/dm/PythonProcessBase.hpp 2010-11-25 07:36:14 UTC (rev 3875) +++ ecell3/trunk/ecell/dm/PythonProcessBase.hpp 2010-12-21 08:19:32 UTC (rev 3876) @@ -155,7 +155,7 @@ // extract 'this' Process's methods and attributes boost::python::object aPySelfProcess( - boost::python::ptr( dynamic_cast< libecs::Process* const >( this ) ) ); + boost::python::ptr( dynamic_cast< libecs::Process* >( this ) ) ); theGlobalNamespace[ "self" ] = aPySelfProcess; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |