mirror of
https://github.com/pybind/pybind11.git
synced 2025-01-19 09:25:51 +00:00
Merge pull request #311 from lsst-dm/master
Fix zero valued enum comparison error
This commit is contained in:
commit
7f9603fe24
@ -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…
Reference in New Issue
Block a user