2025-01-30 16:19 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbcurl/core.c
! casting
* include/hbcompdf.h
* removed unnecassary parenthesies and indenting
* src/rtl/errint.c
* added
#pragma GCC diagnostic ignored "-Wnull-dereference"
* src/vm/dlmalloc.c
- removed
#pragma GCC diagnostic ignored "-Wnull-dereference"
* src/vm/fm.c
+ added
#pragma clang diagnostic ignored "-Wgnu-null-pointer-arithmetic"
#pragma GCC diagnostic ignored "-Warray-bounds"
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#pragma GCC diagnostic ignored "-Walloc-size"
This commit is contained in:
@@ -74,13 +74,13 @@ struct _HB_HCLASS; /* forward declaration */
|
||||
/* Declared Function/Method support structure */
|
||||
typedef struct _HB_HDECLARED
|
||||
{
|
||||
const char * szName; /* the name of the symbol */
|
||||
HB_BYTE cType;
|
||||
HB_USHORT iParamCount;
|
||||
HB_BYTE * cParamTypes;
|
||||
struct _HB_HCLASS * pClass;
|
||||
struct _HB_HCLASS * ( * pParamClasses );
|
||||
struct _HB_HDECLARED * pNext; /* pointer to the next declared function */
|
||||
const char * szName; /* the name of the symbol */
|
||||
HB_BYTE cType;
|
||||
HB_USHORT iParamCount;
|
||||
HB_BYTE * cParamTypes;
|
||||
struct _HB_HCLASS * pClass;
|
||||
struct _HB_HCLASS ** pParamClasses;
|
||||
struct _HB_HDECLARED * pNext; /* pointer to the next declared function */
|
||||
} HB_HDECLARED, * PHB_HDECLARED;
|
||||
|
||||
/* Declared Class support structure */
|
||||
|
||||
Reference in New Issue
Block a user