We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58035b5 commit a3093e5Copy full SHA for a3093e5
llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
@@ -40,14 +40,13 @@ class WindowsManifestMerger::WindowsManifestMergerImpl {
40
static void errorCallback(void *Ctx, const char *Format, ...);
41
Error getParseError();
42
#if LLVM_ENABLE_LIBXML2
43
- xmlDocPtr CombinedDoc = nullptr;
44
- std::vector<xmlDocPtr> MergedDocs;
45
-
46
- bool Merged = false;
47
struct XmlDeleter {
48
void operator()(xmlChar *Ptr) { xmlFree(Ptr); }
49
void operator()(xmlDoc *Ptr) { xmlFreeDoc(Ptr); }
50
};
+ xmlDocPtr CombinedDoc = nullptr;
+ std::vector<xmlDocPtr> MergedDocs;
+ bool Merged = false;
51
int BufferSize = 0;
52
std::unique_ptr<xmlChar, XmlDeleter> Buffer;
53
#endif
0 commit comments