File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 2323import warnings
2424import exceptions
2525import subprocess
26+ from pygccxml import utils
2627from pygccxml import declarations
2728
2829class LicenseWarning ( exceptions .UserWarning ):
@@ -95,10 +96,13 @@ def parse( self ):
9596 self .__loaded_symbols = self .load_symbols ()
9697 result = {}
9798 for smbl in self .__loaded_symbols :
98- decorated , decl = self .merge ( smbl )
99- if decl :
100- decl .decorated_name = decorated
101- result [ decorated ] = decl
99+ try :
100+ decorated , decl = self .merge ( smbl )
101+ if decl :
102+ decl .decorated_name = decorated
103+ result [ decorated ] = decl
104+ except declarations .matcher .declaration_not_found_t :
105+ pass
102106 return result
103107
104108CCTS = declarations .CALLING_CONVENTION_TYPES
You can’t perform that action at this time.
0 commit comments