summaryrefslogtreecommitdiff
path: root/tools/generate_operator_out.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/generate_operator_out.py')
-rwxr-xr-xtools/generate_operator_out.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate_operator_out.py b/tools/generate_operator_out.py
index f1491d827f..f3de61c134 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