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 23
23
import warnings
24
24
import exceptions
25
25
import subprocess
26
+ from pygccxml import utils
26
27
from pygccxml import declarations
27
28
28
29
class LicenseWarning ( exceptions .UserWarning ):
@@ -95,10 +96,13 @@ def parse( self ):
95
96
self .__loaded_symbols = self .load_symbols ()
96
97
result = {}
97
98
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
102
106
return result
103
107
104
108
CCTS = declarations .CALLING_CONVENTION_TYPES
You can’t perform that action at this time.
0 commit comments