mirror of https://github.com/ArduPilot/ardupilot
AP_Scripting: fixed equality test for uint32_t
This commit is contained in:
parent
613d2c2e0a
commit
6bab6d94bf
|
@ -109,7 +109,7 @@ UINT32_T_BOX_OP(shr, >>)
|
|||
return 1; \
|
||||
}
|
||||
|
||||
UINT32_T_BOX_OP_BOOL(eq, =)
|
||||
UINT32_T_BOX_OP_BOOL(eq, ==)
|
||||
UINT32_T_BOX_OP_BOOL(lt, <)
|
||||
UINT32_T_BOX_OP_BOOL(le, <=)
|
||||
|
||||
|
|
Loading…
Reference in New Issue