mirror of
https://github.com/thunderbrewhq/system.git
synced 2026-02-03 16:39:07 +00:00
10 lines
250 B
C++
10 lines
250 B
C++
#ifndef SYSTEM_UNSAFE_HPP
|
|
#define SYSTEM_UNSAFE_HPP
|
|
|
|
// Abbreviations to disable the UndefinedBehaviorSanitizer
|
|
|
|
#define WHOA_UNSAFE __attribute__((no_sanitize("undefined")))
|
|
|
|
#define WHOA_UNSAFE_BOUNDS __attribute__((no_sanitize("bounds")))
|
|
|
|
#endif
|