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 73f14f3 commit 4c64d31Copy full SHA for 4c64d31
AK/LsanSuppressions.h
@@ -8,9 +8,15 @@
8
9
#include <AK/Platform.h>
10
11
+#ifndef AK_OS_WINDOWS
12
+# define EXPORT __attribute__((visibility("default")))
13
+#else
14
+# define EXPORT __declspec(dllexport)
15
+#endif
16
+
17
#ifdef HAS_ADDRESS_SANITIZER
18
extern "C" {
-char const* __lsan_default_suppressions();
19
+EXPORT char const* __lsan_default_suppressions();
20
char const* __lsan_default_suppressions()
21
{
22
// Both Skia and Chromium suppress false positive FontConfig leaks
0 commit comments