Skip to content

Commit

Permalink
Rename SuccessorsMixin to SuccessorsEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Jan 28, 2025
1 parent 79a24fe commit a574ef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion angr_platforms/bf/engine_bf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
l = logging.getLogger(__name__)


class BFMixin(angr.engines.SuccessorsMixin):
class BFMixin(angr.engines.SuccessorsEngine):
"""
This is a SimEngine mixin for executing BrainFuck. Oh yeah, you're not hallucinating.
"""
Expand Down
2 changes: 1 addition & 1 deletion angr_platforms/ct64/ct64_engine.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import angr
import claripy

class CT64KMixin(angr.engines.SuccessorsMixin):
class CT64KMixin(angr.engines.SuccessorsEngine):
def process_successors(self, successors, **kwargs):
state = self.state
if state.arch.name != 'CT64K':
Expand Down

0 comments on commit a574ef9

Please sign in to comment.