properly disable attribute checking
This commit is contained in:
parent
efdd30eb41
commit
b82b6195d6
2 changed files with 6 additions and 2 deletions
|
@ -31,7 +31,9 @@
|
|||
/* Temp disable for upcoming release until all external modules
|
||||
* have been released with warnings fixed
|
||||
*/
|
||||
#if 0
|
||||
#if 1
|
||||
#define __attribute__(x) /* NOTHING */
|
||||
#else
|
||||
/* If we're not using GNU C, elide __attribute__ */
|
||||
#ifndef __GNUC__
|
||||
#define __attribute__(x) /* NOTHING */
|
||||
|
|
4
stats.h
4
stats.h
|
@ -50,7 +50,9 @@
|
|||
/* Temp disable for upcoming release until all external modules
|
||||
* have been released with warnings fixed
|
||||
*/
|
||||
#if 0
|
||||
#if 1
|
||||
#define __attribute__(x) /* NOTHING */
|
||||
#else
|
||||
/* If we're not using GNU C, elide __attribute__ */
|
||||
#ifndef __GNUC__
|
||||
#define __attribute__(x) /* NOTHING */
|
||||
|
|
Reference in a new issue