mirror of
https://github.com/RYDE-WORK/pybind11.git
synced 2026-01-24 16:12:25 +08:00
Fix zero valued enum comparison error
This commit is contained in:
parent
6c19f6e598
commit
3d079fbd54
@ -1019,7 +1019,7 @@ public:
|
||||
this->def("__init__", [](Type& value, UnderlyingType i) { new (&value) Type((Type) i); });
|
||||
this->def("__int__", [](Type value) { return (UnderlyingType) value; });
|
||||
this->def("__eq__", [](const Type &value, Type *value2) { return value2 && value == *value2; });
|
||||
this->def("__eq__", [](const Type &value, UnderlyingType value2) { return value2 && value == value2; });
|
||||
this->def("__eq__", [](const Type &value, UnderlyingType value2) { return value == value2; });
|
||||
this->def("__ne__", [](const Type &value, Type *value2) { return !value2 || value != *value2; });
|
||||
this->def("__ne__", [](const Type &value, UnderlyingType value2) { return value != value2; });
|
||||
this->def("__hash__", [](const Type &value) { return (UnderlyingType) value; });
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user