Merge pull request #10807 from ClickHouse/msan-enable-demangle

Remove obsolete MSan suppression
This commit is contained in:
alexey-milovidov 2020-05-11 19:17:08 +03:00 committed by GitHub
commit a310f34c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,6 @@
#include <common/demangle.h>
#if defined(__has_feature)
#if __has_feature(memory_sanitizer)
#define MEMORY_SANITIZER 1
#else
#define MEMORY_SANITIZER 0
#endif
#elif defined(__MEMORY_SANITIZER__)
#define MEMORY_SANITIZER 1
#else
#define MEMORY_SANITIZER 0
#endif
#if defined(_MSC_VER) || MEMORY_SANITIZER
#if defined(_MSC_VER)
DemangleResult tryDemangle(const char *)
{