fix c_pp namespace detection

This commit is contained in:
Alan Hamlett 2015-09-16 15:00:27 -07:00
parent 4d45305650
commit 41d3419a99
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class CppParser(TokenParser):
return self.dependencies
def _process_token(self, token, content):
if self.first(token) == 'Preproc':
if self.partial(token) == 'Preproc':
self._process_preproc(token, content)
else:
self._process_other(token, content)