fix c_pp namespace detection
This commit is contained in:
parent
4d45305650
commit
41d3419a99
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class CppParser(TokenParser):
|
||||||
return self.dependencies
|
return self.dependencies
|
||||||
|
|
||||||
def _process_token(self, token, content):
|
def _process_token(self, token, content):
|
||||||
if self.first(token) == 'Preproc':
|
if self.partial(token) == 'Preproc':
|
||||||
self._process_preproc(token, content)
|
self._process_preproc(token, content)
|
||||||
else:
|
else:
|
||||||
self._process_other(token, content)
|
self._process_other(token, content)
|
||||||
|
|
Loading…
Reference in a new issue