5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-12 19:08:29 -04:00

Plane: removed NOINLINE define

This commit is contained in:
Andrew Tridgell 2015-05-21 09:35:55 +10:00
parent 14a90ea001
commit 8359b75201

View File

@ -169,9 +169,6 @@ enum log_messages {
// to -1) // to -1)
#define BOOL_TO_SIGN(bvalue) ((bvalue) ? -1 : 1) #define BOOL_TO_SIGN(bvalue) ((bvalue) ? -1 : 1)
// mark a function as not to be inlined
#define NOINLINE __attribute__((noinline))
// altitude control algorithms // altitude control algorithms
enum { enum {
ALT_CONTROL_DEFAULT = 0, ALT_CONTROL_DEFAULT = 0,