diff options
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/valgrind.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/3rdparty/valgrind.h b/3rdparty/valgrind.h index 21caa70..81cb5f2 100644 --- a/3rdparty/valgrind.h +++ b/3rdparty/valgrind.h | |||
@@ -70,10 +70,12 @@ | |||
70 | problem, you can compile with the NVALGRIND symbol defined (gcc | 70 | problem, you can compile with the NVALGRIND symbol defined (gcc |
71 | -DNVALGRIND) so that client requests are not even compiled in. */ | 71 | -DNVALGRIND) so that client requests are not even compiled in. */ |
72 | 72 | ||
73 | #pragma clang diagnostic push | ||
74 | #pragma clang diagnostic ignored "-Wreserved-id-macro" | ||
75 | |||
73 | #ifndef __VALGRIND_H | 76 | #ifndef __VALGRIND_H |
74 | #define __VALGRIND_H | 77 | #define __VALGRIND_H |
75 | 78 | ||
76 | |||
77 | /* ------------------------------------------------------------------ */ | 79 | /* ------------------------------------------------------------------ */ |
78 | /* VERSION NUMBER OF VALGRIND */ | 80 | /* VERSION NUMBER OF VALGRIND */ |
79 | /* ------------------------------------------------------------------ */ | 81 | /* ------------------------------------------------------------------ */ |
@@ -5958,3 +5960,6 @@ VALGRIND_PRINTF_BACKTRACE(const char *format, ...) | |||
5958 | #undef PLAT_mips64_linux | 5960 | #undef PLAT_mips64_linux |
5959 | 5961 | ||
5960 | #endif /* __VALGRIND_H */ | 5962 | #endif /* __VALGRIND_H */ |
5963 | |||
5964 | #pragma clang diagnostic pop | ||
5965 | |||