From 5d7c734431e1333fd42df4315dbfd52457f1f69f Mon Sep 17 00:00:00 2001 From: das Date: Tue, 25 Aug 2009 23:49:46 +0000 Subject: guard clang analyzer Tcl_Panic annotation with #ifndef USE_TCL_STUBS --- generic/tkInt.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/generic/tkInt.h b/generic/tkInt.h index d43278a..2cd1494 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.108 2009/08/24 03:18:23 das Exp $ + * RCS: $Id: tkInt.h,v 1.109 2009/08/25 23:49:46 das Exp $ */ #ifndef _TKINT @@ -989,7 +989,10 @@ MODULE_SCOPE Tcl_HashTable tkPredefBitmapTable; #if defined(PURIFY) && defined(__clang__) && !defined(CLANG_ASSERT) #include #define CLANG_ASSERT(x) assert(x) -EXTERN void Tcl_Panic(const char * format, ...) __attribute__((analyzer_noreturn)); +#ifndef USE_TCL_STUBS +EXTERN void Tcl_Panic(const char * format, ...) + __attribute__((analyzer_noreturn)); +#endif #elif !defined(CLANG_ASSERT) #define CLANG_ASSERT(x) #endif -- cgit v0.12