123456789101112131415161718 |
- #include <catch_main.hpp>
- #include "libslic3r/libslic3r.h"
- #ifndef __has_feature
- # define __has_feature(x) 0
- #endif
- #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
- extern "C" {
- const char *__lsan_default_options() {
- return "exitcode=0";
- }
- }
- #endif
|