Skip to content

Commit

Permalink
fix non-ASCII character (microsoft#2894)
Browse files Browse the repository at this point in the history
It causes C4819 again. It should be fixed in ArduPilot/pymavlink#438
  • Loading branch information
chobitsfan authored Sep 1, 2020
1 parent 778d835 commit f08f261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MavLinkCom/mavlink/mavlink_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ typedef struct param_union {
* The intention is that by replacing the is_double bit with 0 the type can be directly used as a double (as the is_double bit corresponds to the
* lowest mantissa bit of a double). If is_double is 0 then mavlink_type gives the type in the union.
* The mavlink_types.h header will also need to have shifts/masks to define the bit boundaries in the above,
* as bitfield ordering isnt consistent between platforms. The above is intended to be for gcc on x86,
* as bitfield ordering isn't consistent between platforms. The above is intended to be for gcc on x86,
* which should be the same as gcc on little-endian arm. When using shifts/masks the value will be treated as a 64 bit unsigned number,
* and the bits pulled out using the shifts/masks.
*/
Expand Down

0 comments on commit f08f261

Please sign in to comment.