Skip to content

Commit

Permalink
Fix bug in binary operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkskeller committed Oct 8, 2024
1 parent 3319206 commit acc4990
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Compiler/GC/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,9 @@ def get_type(cls, n):
:py:obj:`v` and the columns by calling :py:obj:`elements`.
"""
class sbitvecn(cls, _structure):
@staticmethod
def get_type(n):
return cls.get_type(n)
@classmethod
def malloc(cls, size, creator_tape=None):
return sbit.malloc(
Expand Down

0 comments on commit acc4990

Please sign in to comment.