Go to the source code of this file.
◆ PARAMETER_TYPE
| #define PARAMETER_TYPE |
( |
| a | ) |
|
Value:typename TypeHelpers::ParameterType<a>::type
A helpful macro to simplify the use of the ParameterType template.
- See also
- ParameterType
◆ static_wassert
| #define static_wassert |
( |
| expression | ) |
|
Value:static_assert(expression, #expression);
◆ wassert
| #define wassert |
( |
| expression | ) |
|
Value:
#define CARLA_SAFE_ASSERT(cond)
Definition CarlaDefines.h:182
◆ wassertfalse
| #define wassertfalse carla_safe_assert("wassertfalse triggered", __FILE__, __LINE__); |
◆ WATER_DELETED_FUNCTION
| #define WATER_DELETED_FUNCTION |
This macro can be placed after a method declaration to allow the use of the C++11 feature "= delete" on all compilers. On newer compilers that support it, it does the C++11 "= delete", but on older ones it's just an empty definition.