diff options
Diffstat (limited to 'icespider/xslt')
-rw-r--r-- | icespider/xslt/exslt.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/icespider/xslt/exslt.cpp b/icespider/xslt/exslt.cpp index 63bd0d1..772ef5e 100644 --- a/icespider/xslt/exslt.cpp +++ b/icespider/xslt/exslt.cpp @@ -8,10 +8,12 @@ void initLibXml() exsltRegisterAll(); } +// LCOV_EXCL_START lcov actually misses destructor functions static void cleanupLibXml() __attribute__((destructor(102))); void cleanupLibXml() { xsltCleanupGlobals(); xmlCleanupParser(); } +// LCOV_EXCL_STOP |