fix: Add missing memory header to html_parser.h

Linux build requires explicit include of <memory> for std::unique_ptr
This commit is contained in:
m1ngsama 2025-12-08 16:03:17 +08:00
parent ef80f9ab82
commit 6564f23707

View file

@ -2,6 +2,7 @@
#include <string>
#include <vector>
#include <memory>
enum class ElementType {
TEXT,