Commit c7b0e9b0 authored by Max Kellermann's avatar Max Kellermann

lib/expat/Parser: delete the copy constructor/operator

parent 356c829b
......@@ -41,6 +41,9 @@ public:
XML_ParserFree(parser);
}
ExpatParser(const ExpatParser &) = delete;
ExpatParser &operator=(const ExpatParser &) = delete;
void SetElementHandler(XML_StartElementHandler start,
XML_EndElementHandler end) {
XML_SetElementHandler(parser, start, end);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment