pokitto / PokittoLib

Library for making programs on Pokitto hardware
22 stars 16 forks source link

Remove ambiguous references to byte type #92

Closed felipemanga closed 4 years ago

felipemanga commented 4 years ago

C++17 has an std::byte type, which mbed.h makes global with using namespace std;. To resolve the conflict, all the byte variables were changed to uint8_t.