diff options
Diffstat (limited to 'tools/generate_operator_out.py')
-rwxr-xr-x | tools/generate_operator_out.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate_operator_out.py b/tools/generate_operator_out.py index 921ae68bcb..a886b989a1 100755 --- a/tools/generate_operator_out.py +++ b/tools/generate_operator_out.py @@ -65,7 +65,7 @@ def ProcessFile(filename): continue # Is this the start or end of a namespace? - m = re.search(r'^namespace (\S+) \{', raw_line) + m = re.search(r'^namespace (\S+) (HIDDEN |EXPORT )?\{', raw_line) if m: namespaces.append(m.group(1)) continue |