Fix typo that prevents compilation with sanitizer.

This commit is contained in:
Vincent Rabaud 2022-06-17 11:39:50 +02:00
parent 3efc645975
commit 0d52c37e11

View File

@ -67,7 +67,7 @@
#if defined(__clang__) && defined(__has_feature) #if defined(__clang__) && defined(__has_feature)
#if __has_feature(memory_sanitizer) #if __has_feature(memory_sanitizer)
#define CV_ANNOTATE_MEMORY_IS_INITIALIZED(address, size) \ #define CV_ANNOTATE_MEMORY_IS_INITIALIZED(address, size) \
__msan_unpoison(adresse, size) __msan_unpoison(address, size)
#endif #endif
#endif #endif
#ifndef CV_ANNOTATE_MEMORY_IS_INITIALIZED #ifndef CV_ANNOTATE_MEMORY_IS_INITIALIZED