This callback function is called by libexpat. It's a static wrapper around endElement().
| 157 | // This callback function is called by libexpat. It's a static wrapper |
| 158 | // around endElement(). |
| 159 | static void XMLCALL endElement_cb(void* userData, const XML_Char* name) noexcept { |
| 160 | static_cast<XMLValidator*>(userData)->endElement(name); |
| 161 | } |
| 162 | |
| 163 | // This callback function is called by libexpat. It's a static wrapper |
| 164 | // around startNamespace(). |
nothing calls this directly
no test coverage detected