| 91 | } |
| 92 | |
| 93 | pybind11::dict defineListToPython(const DefineList& defines) |
| 94 | { |
| 95 | pybind11::dict dict; |
| 96 | for (const auto& [key, value] : defines) |
| 97 | dict[key.c_str()] = value; |
| 98 | return dict; |
| 99 | } |
| 100 | |
| 101 | DefineList defineListFromPython(const pybind11::dict& dict) |
| 102 | { |
no outgoing calls
no test coverage detected