AP_HAL: remove aliases FUNCTOR_[BIND|TYPEF]_VOID

Nobody is using them anymore, so kill them.
This commit is contained in:
Lucas De Marchi 2015-05-31 18:53:27 -03:00 committed by Randy Mackay
parent 98a1a05933
commit 1d39f548dc

View File

@ -5,12 +5,6 @@
#include "string.h"
#include "utility/functor.h"
#define FUNCTOR_BIND_VOID(obj, func, rettype, ...) \
FUNCTOR_BIND(obj, func, rettype, ## __VA_ARGS__)
#define FUNCTOR_TYPEDEF_VOID(name, rettype, ...) \
FUNCTOR_TYPEDEF(name, rettype, ## __VA_ARGS__)
namespace AP_HAL {
/* Toplevel pure virtual class Hal.*/