mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-21 16:58:58 +00:00
LibXML: Enable EXPLICIT_SYMBOL_EXPORT
This commit is contained in:
parent
a95e0d2777
commit
2c91014bbf
Notes:
github-actions[bot]
2025-08-24 19:00:14 +00:00
Author: https://github.com/ayeteadoe
Commit: 2c91014bbf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5769
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/R-Goc
2 changed files with 3 additions and 2 deletions
|
@ -3,4 +3,4 @@ set(SOURCES
|
|||
DOM/Node.cpp
|
||||
)
|
||||
|
||||
ladybird_lib(LibXML xml)
|
||||
ladybird_lib(LibXML xml EXPLICIT_SYMBOL_EXPORT)
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <LibXML/DOM/Document.h>
|
||||
#include <LibXML/DOM/DocumentTypeDeclaration.h>
|
||||
#include <LibXML/DOM/Node.h>
|
||||
#include <LibXML/Export.h>
|
||||
#include <LibXML/Forward.h>
|
||||
|
||||
namespace XML {
|
||||
|
@ -46,7 +47,7 @@ struct Listener {
|
|||
virtual void error(ParseError const&) { }
|
||||
};
|
||||
|
||||
class Parser {
|
||||
class XML_API Parser {
|
||||
public:
|
||||
struct Options {
|
||||
bool preserve_cdata { true };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue