Disables a particular sanitizer for this function.
Valid sanitizer names are all names accepted by -fsanitize= commandline option.
Multiple sanitizers can be disabled by applying this UDA multiple times, e.g.
@noSanitize("address") @noSanitize("thread")` to disable both ASan and TSan.
Disables a particular sanitizer for this function. Valid sanitizer names are all names accepted by -fsanitize= commandline option. Multiple sanitizers can be disabled by applying this UDA multiple times, e.g. @noSanitize("address") @noSanitize("thread")` to disable both ASan and TSan.