Update of /cvsroot/pygccxml/source/pygccxml/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7764/pygccxml/parser
Modified Files:
source_reader.py
Log Message:
fixing big bug that existed from the begining. files should be a list and not a dictionary.
Many thanks to Matthias
Index: source_reader.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pygccxml/parser/source_reader.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** source_reader.py 2 Mar 2006 05:53:14 -0000 1.25
--- source_reader.py 5 Mar 2006 06:26:13 -0000 1.26
***************
*** 239,242 ****
if decl.location:
decl.location.file_name = self.__produce_full_file( decl.location.file_name )
! return (decls, files)
--- 239,242 ----
if decl.location:
decl.location.file_name = self.__produce_full_file( decl.location.file_name )
! return ( decls, files.values() )
|