mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 05:05:11 +00:00
support strongly typed enum
This commit is contained in:
parent
bce10fae38
commit
a750031795
@ -742,7 +742,7 @@ public:
|
||||
: class_<Type>(scope, name, doc), m_parent(scope) {
|
||||
auto entries = new std::unordered_map<int, const char *>();
|
||||
this->def("__str__", [name, entries](Type value) -> std::string {
|
||||
auto it = entries->find(value);
|
||||
auto it = entries->find((int) value);
|
||||
return std::string(name) + "." +
|
||||
((it == entries->end()) ? std::string("???")
|
||||
: std::string(it->second));
|
||||
|
Loading…
Reference in New Issue
Block a user