All versions of globalDefinitions_<compiler>.hpp contain this identical block:
```
// Additional Java basic types
typedef uint8_t jubyte;
typedef uint16_t jushort;
typedef uint32_t juint;
typedef uint64_t julong;
```
We can collapse that into one copy in globalDefinitions.hpp.
```
// Additional Java basic types
typedef uint8_t jubyte;
typedef uint16_t jushort;
typedef uint32_t juint;
typedef uint64_t julong;
```
We can collapse that into one copy in globalDefinitions.hpp.