Update of /cvsroot/pygccxml/source/pygccxml/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22365/pygccxml/parser
Modified Files:
linker.py
Log Message:
fixing name of casting operator. Now it's name is equal to 'operator ' + return_type.decl_string
Index: linker.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pygccxml/parser/linker.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** linker.py 19 Jan 2006 05:25:59 -0000 1.11
--- linker.py 2 Mar 2006 05:51:39 -0000 1.12
***************
*** 85,88 ****
--- 85,89 ----
def visit_casting_operator( self ):
self.__link_calldef()
+ self.__inst.name = 'operator ' + self.__inst.return_type.decl_string
def visit_free_function( self ):
|