diff options
author | das <das> | 2009-08-25 23:49:46 (GMT) |
---|---|---|
committer | das <das> | 2009-08-25 23:49:46 (GMT) |
commit | 5d7c734431e1333fd42df4315dbfd52457f1f69f (patch) | |
tree | 651188ff6506ecb3c9736e5ef125419793bbc186 /generic/tkInt.h | |
parent | 722bf308e2388220307c511109010cb283d1c477 (diff) | |
download | tk-5d7c734431e1333fd42df4315dbfd52457f1f69f.zip tk-5d7c734431e1333fd42df4315dbfd52457f1f69f.tar.gz tk-5d7c734431e1333fd42df4315dbfd52457f1f69f.tar.bz2 |
guard clang analyzer Tcl_Panic annotation with #ifndef USE_TCL_STUBS
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files 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 <assert.h> #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 |