Parse identifiers from library headers: Python port of d9eee3b417
Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
parent
56e3a5caa6
commit
17220988dc
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ class NameCheck(object):
|
||||||
all_macros = self.parse_macros(
|
all_macros = self.parse_macros(
|
||||||
m_headers + p_headers + t_headers + l_headers + d_headers)
|
m_headers + p_headers + t_headers + l_headers + d_headers)
|
||||||
enum_consts = self.parse_enum_consts(m_headers + t_headers)
|
enum_consts = self.parse_enum_consts(m_headers + t_headers)
|
||||||
identifiers = self.parse_identifiers(m_headers + p_headers + t_headers)
|
identifiers = self.parse_identifiers(m_headers + p_headers + t_headers + l_headers)
|
||||||
symbols = self.parse_symbols()
|
symbols = self.parse_symbols()
|
||||||
mbed_names = self.parse_MBED_names(
|
mbed_names = self.parse_MBED_names(
|
||||||
m_headers + p_headers + t_headers + l_headers + libraries)
|
m_headers + p_headers + t_headers + l_headers + libraries)
|
||||||
|
|
Loading…
Reference in a new issue