Skip to content

Commit

Permalink
Prepare for update (#2552)
Browse files Browse the repository at this point in the history
* Bindings(chore): Fix DeprecationWarning

* Version(upgrade): update bindings const

* Fix(chore): Fix ARMCC_Invalid is not defined
  • Loading branch information
kabeor authored Nov 24, 2024
1 parent fc59da4 commit b295cf5
Show file tree
Hide file tree
Showing 8 changed files with 2,205 additions and 2,109 deletions.
2 changes: 1 addition & 1 deletion bindings/const_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def gen(lang):

if line.startswith('#define '):
line = line[8:] #cut off define
xline = re.split(r'\s+', line, 1) #split to at most 2 express
xline = re.split(r'\s+', line, maxsplit=1) #split to at most 2 express
if len(xline) != 2:
continue
if '(' in xline[0] or ')' in xline[0]: #does it look like a function
Expand Down
1,166 changes: 597 additions & 569 deletions bindings/java/capstone/Arm_const.java

Large diffs are not rendered by default.

Loading

0 comments on commit b295cf5

Please sign in to comment.