Skip to content

Commit

Permalink
[PX4: REJECTED] cstdint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar authored and PX4 Jenkins committed Jul 22, 2018
1 parent 9539993 commit 12de1a7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/cxx/cstdint
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
// Namespace
//***************************************************************************

#define GCC_VERSION (__GNUC__ * 10000 \
+ __GNUC_MINOR__ * 100 \
+ __GNUC_PATCHLEVEL__)
namespace std
{
using ::int8_t;
Expand All @@ -72,7 +75,9 @@ namespace std
using ::uint_fast64_t;
using ::uint_least8_t;
using ::uint_least16_t;
#if GCC_VERSION <= 40804
using ::uint_least32_t;
#endif
using ::uint_least64_t;
using ::uintmax_t;
using ::uintptr_t;
Expand Down

0 comments on commit 12de1a7

Please sign in to comment.