From 869ffc5409442029c500926ddae5cda82737338e Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 16 Sep 2011 09:32:27 +0100 Subject: Disable deprecation warning for __malloc_hook --- matrace.c | 3 +++ mutrace.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/matrace.c b/matrace.c index defaf2b..21c63a7 100644 --- a/matrace.c +++ b/matrace.c @@ -174,7 +174,10 @@ static void setup(void) { "mutrace: good idea to recompile with -rdynamic enabled since this produces more\n" "mutrace: useful stack traces.\n\n"); +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" if (__malloc_hook) { +#pragma GCC diagnostic pop fprintf(stderr, "matrace: Detected non-glibc memory allocator. Your program uses some\n" "matrace: alternative memory allocator (jemalloc?) which is not compatible with\n" diff --git a/mutrace.c b/mutrace.c index e1106bb..e1176aa 100644 --- a/mutrace.c +++ b/mutrace.c @@ -277,7 +277,10 @@ static void setup(void) { "mutrace: good idea to recompile with -rdynamic enabled since this produces more\n" "mutrace: useful stack traces.\n\n"); +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" if (__malloc_hook) { +#pragma GCC diagnostic pop fprintf(stderr, "mutrace: Detected non-glibc memory allocator. Your program uses some\n" "mutrace: alternative memory allocator (jemalloc?) which is not compatible with\n" -- cgit