AP_Menu: removed BUILD_DELEGATES code

no longer needed
This commit is contained in:
Andrew Tridgell 2015-05-26 14:34:47 +10:00
parent 1a2b02a563
commit 85f87b6d9c
1 changed files with 0 additions and 6 deletions

View File

@ -58,8 +58,6 @@ public:
///
#if APM_BUILD_FUNCTOR
FUNCTOR_TYPEDEF(func, int8_t, uint8_t, const struct arg *);
#elif APM_BUILD_DELEGATES
typedef DELEGATE_FUNCTION2(int8_t, uint8_t, const struct arg *) func;
#else
typedef int8_t (*func)(uint8_t argc, const struct arg *argv);
#endif
@ -77,8 +75,6 @@ public:
///
#if APM_BUILD_FUNCTOR
FUNCTOR_TYPEDEF(preprompt, bool);
#elif APM_BUILD_DELEGATES
typedef DELEGATE_FUNCTION0(bool) preprompt;
#else
typedef bool (*preprompt)(void);
#endif
@ -104,8 +100,6 @@ public:
///
#if APM_BUILD_FUNCTOR
FUNCTOR_DECLARE(func, int8_t, uint8_t, const struct arg *);
#elif APM_BUILD_DELEGATES
DELEGATE_FUNCTION2(int8_t, uint8_t, const struct arg *) func;
#else
int8_t (*func)(uint8_t argc, const struct arg *argv);
#endif