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 311aec6 commit 53843a7Copy full SHA for 53843a7
pygccxml/declarations/enumeration.py
@@ -47,7 +47,7 @@ def __eq__(self, other):
47
return self.values == other.values
48
49
def __hash__(self):
50
- return super(enumeration_t, self).__hash__(self)
+ return super(enumeration_t, self).__hash__()
51
52
def _get__cmp__items(self):
53
"""implementation details"""
pygccxml/declarations/typedef.py
@@ -44,7 +44,7 @@ def __eq__(self, other):
44
return self.decl_type == other.decl_type
45
46
- return super(typedef_t, self).__hash__(self)
+ return super(typedef_t, self).__hash__()
@property
def type(self):
0 commit comments