This callback function is called by libexpat. It's a static wrapper around startNamespace().
| 163 | // This callback function is called by libexpat. It's a static wrapper |
| 164 | // around startNamespace(). |
| 165 | static void XMLCALL startNamespace_cb(void* userData, const XML_Char* prefix, const XML_Char* uri) noexcept { |
| 166 | static_cast<XMLValidator*>(userData)->startNamespace(prefix, uri); |
| 167 | } |
| 168 | |
| 169 | // This callback function is called by libexpat. It's a static wrapper |
| 170 | // around endNamespace(). |
nothing calls this directly
no test coverage detected