We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4bc6ff commit f89cc5dCopy full SHA for f89cc5d
tools/genv8constants.py
@@ -84,10 +84,10 @@ def out_define():
84
# 6-character margin, 2-characters + 1 space for each field
85
idx = 6 + i * 3;
86
octetstr = line[idx:idx+3]
87
- if not numpattern.match(octetstr):
+ if curr_octet > octets:
88
break;
89
90
- if curr_octet > octets:
+ if not numpattern.match(octetstr):
91
92
93
curr_val += int('0x%s' % octetstr, 16) << (curr_octet * 8);
0 commit comments