You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
289 B
C
14 lines
289 B
C
/*! \file
|
|
* \brief Compiler-dependent fixes & idiosyncrasies
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
|
// Only GCC understands the error attribute
|
|
#define ERROR_ON_CALL(MSG) __attribute__((error(MSG)));
|
|
#else
|
|
#define ERROR_ON_CALL(MSG)
|
|
#endif
|