From b52adb1832b70d87dd81d5090773e6e3aedffe33 Mon Sep 17 00:00:00 2001 From: Aleksey Dobrunov Date: Sat, 21 Sep 2024 21:36:44 +0500 Subject: [PATCH] fix build --- src/colorer/xml/libxml2/LibXmlReader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/colorer/xml/libxml2/LibXmlReader.cpp b/src/colorer/xml/libxml2/LibXmlReader.cpp index 46d2bde..de48f5f 100644 --- a/src/colorer/xml/libxml2/LibXmlReader.cpp +++ b/src/colorer/xml/libxml2/LibXmlReader.cpp @@ -7,15 +7,15 @@ #ifdef COLORER_FEATURE_ZIPINPUTSOURCE #include "colorer/zip/MemoryFile.h" - -uUnicodeString LibXmlReader::current_file = nullptr; -bool LibXmlReader::is_full_path = false; #endif #ifdef _MSC_VER #define strdup(p) _strdup(p) #endif +uUnicodeString LibXmlReader::current_file = nullptr; +bool LibXmlReader::is_full_path = false; + LibXmlReader::LibXmlReader(const UnicodeString& source_file) : xmldoc(nullptr) { xmlSetExternalEntityLoader(xmlMyExternalEntityLoader);