Skip to content

Commit 1838277

Browse files
committed
bug 432893 handling * in ODL properties
The `*` was not handled in the type of ODL properties
1 parent 47bd622 commit 1838277

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scanner.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3908,7 +3908,7 @@ NONLopt [^\n]*
39083908
}
39093909
<IDLAttribute>. {
39103910
}
3911-
<IDLPropName>{BN}*{ID}{BN}* {
3911+
<IDLPropName>{BN}*{ID}({BN}*[*]*{BN}*)? {
39123912
// return type (probably HRESULT) - skip it
39133913
39143914
if (yyextra->odlProp)

0 commit comments

Comments
 (0)