Revision: 1119
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1119&view=rev
Author: roman_yakovenko
Date: 2007-11-04 00:23:15 -0700 (Sun, 04 Nov 2007)
Log Message:
-----------
adding list of valid numeric suffix letters
Modified Paths:
--------------
pygccxml_dev/pygccxml/parser/scanner.py
Modified: pygccxml_dev/pygccxml/parser/scanner.py
===================================================================
--- pygccxml_dev/pygccxml/parser/scanner.py 2007-11-03 21:15:57 UTC (rev 1118)
+++ pygccxml_dev/pygccxml/parser/scanner.py 2007-11-04 07:23:15 UTC (rev 1119)
@@ -74,6 +74,8 @@
XML_NN_UNION = "Union"
XML_NN_VARIABLE = "Variable"
+NUMERIC_SUFFIX_LETTERS = 'UuLlFf'
+
class scanner_t( xml.sax.handler.ContentHandler ):
def __init__(self, gccxml_file, decl_factory, *args ):
xml.sax.handler.ContentHandler.__init__(self, *args )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|