bifcl: Remove argument from BIFCL_LSAN_DISABLE macro to fix warning on Windows

This commit is contained in:
Tim Wojtulewicz 2023-02-18 19:02:34 -07:00 committed by Tim Wojtulewicz
parent 4352f0c0bb
commit 0c4676e835

View file

@ -314,9 +314,9 @@ void finish_alternative_mode()
// FreeBSD doesn't support LeakSanitizer // FreeBSD doesn't support LeakSanitizer
#if defined(USING_ASAN) && !defined(__FreeBSD__) #if defined(USING_ASAN) && !defined(__FreeBSD__)
#include <sanitizer/lsan_interface.h> #include <sanitizer/lsan_interface.h>
#define BIFCL_LSAN_DISABLE(x) __lsan_disable(x) #define BIFCL_LSAN_DISABLE() __lsan_disable()
#else #else
#define BIFCL_LSAN_DISABLE(x) #define BIFCL_LSAN_DISABLE()
#endif #endif
int main(int argc, char* argv[]) int main(int argc, char* argv[])