| 5 | namespace LIEF::dwarf::py { |
| 6 | template<> |
| 7 | void create<dw::types::Coarray>(nb::module_& m) { |
| 8 | nb::class_<dw::types::Coarray, dw::Type> type(m, "Coarray", |
| 9 | R"doc( |
| 10 | This class represents the ``DW_TAG_coarray_type`` type |
| 11 | )doc"_doc |
| 12 | ); |
| 13 | } |
| 14 | |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected