]> wimlib.net Git - wimlib/blobdiff - include/wimlib/compiler.h
compiler.h: remove _unused_attribute
[wimlib] / include / wimlib / compiler.h
index 58f0692a58229536ac2a34d40598b6ee53085ae4..40f9276254c4e663cdb5aef7887aa4df5fc0bc63 100644 (file)
                        __attribute__((format(type, format_str, format_start)))
 #endif
 
-/* Hint that the annotated function is intentionally not used.  This might be
- * the case if the function contains only static assertions.  */
-#define _unused_attribute      __attribute__((unused))
-
 /* Endianness definitions.  Either CPU_IS_BIG_ENDIAN() or CPU_IS_LITTLE_ENDIAN()
  * evaluates to 1.  The other evaluates to 0.  Note that newer gcc supports
  * __BYTE_ORDER__ for easily determining the endianness; older gcc doesn't.  In