ardupilot/libraries/AP_Math/math_assert.h
2013-12-30 14:33:17 +11:00

17 lines
262 B
C

/*
this can be used to check array indexes in vectors and matrices
*/
#ifndef MATH_ASSERT_H
#define MATH_ASSERT_H
#if MATH_CHECK_INDEXES
#include <assert.h>
#define ASSERT(x) assert(x)
#else
#define ASSERT(x) do {} while(0)
#endif
#endif // MATH_ASSERT_H