Skip to content

Commit a59d349

Browse files
authored
Fix to EXP ddi table handling in header generation
Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
1 parent 9ad5ca8 commit a59d349

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/templates/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def is_class(obj):
2828
@staticmethod
2929
def is_experimental(obj):
3030
try:
31-
return True if re.search("Exp$", obj['name']) else False
31+
return True if re.search("Exp[0-9]*$", obj['name']) else False
3232
except:
3333
return False
3434

0 commit comments

Comments
 (0)