[pygccxml-commit] source/pyplusplus/code_creators smart_pointers.py,1.6,1.7
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-04-12 07:40:43
|
Update of /cvsroot/pygccxml/source/pyplusplus/code_creators In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20656/pyplusplus/code_creators Modified Files: smart_pointers.py Log Message: Documentation improvments Index: smart_pointers.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/code_creators/smart_pointers.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** smart_pointers.py 6 Apr 2006 06:15:58 -0000 1.6 --- smart_pointers.py 12 Apr 2006 07:40:34 -0000 1.7 *************** *** 100,102 **** from_arg = self._instantiate_smart_ptr( self.source ) to_arg = self._instantiate_smart_ptr( self.target ) ! return templates.join(implicitly_convertible, [ from_arg, to_arg ] ) + '();' \ No newline at end of file --- 100,104 ---- from_arg = self._instantiate_smart_ptr( self.source ) to_arg = self._instantiate_smart_ptr( self.target ) ! return templates.join(implicitly_convertible, [ from_arg, to_arg ] ) + '();' ! ! \ No newline at end of file |