We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca50db3 commit 1940ffaCopy full SHA for 1940ffa
pygccxml/parser/scanner.py
@@ -339,8 +339,10 @@ def __read_array_type( self, attrs ):
339
size = self.__guess_int_value( attrs.get(XML_AN_MAX, '' ) )
340
if size is None:
341
size = array_t.SIZE_UNKNOWN
342
- msg = 'unable to find out array size from expression "%s"' % attrs[ XML_AN_MAX ]
343
- warnings.warn( msg )
+ #The following warning is pretty useless, as it cant say what the
+ #problematic declaration is.
344
+ #msg = 'unable to find out array size from expression "%s"' % attrs[ XML_AN_MAX ]
345
+ #warnings.warn( msg )
346
return array_t( type_, size + 1 )
347
348
def __read_cv_qualified_type( self, attrs ):
0 commit comments