orocos-toolchain / orogen

Code generator for components and type handling in Rock - the Robot Construction Kit - and the Orocos Toolchain
http://rock-robotics.org
Other
4 stars 35 forks source link

Add missing include for uint8_t #51

Closed smits closed 9 years ago

smits commented 9 years ago

This popped up on an old lucid system but actually should be included if you want to use uint8_t, without relying on other headers.

Signed-off-by: Ruben Smits ruben.smits@intermodalics.eu

goldhoorn commented 9 years ago

Hmh i would prefer to move to unsigned int in the implementation instead adding for not required types..

But only a weak meaning

smits commented 9 years ago

Both are fine for me, as long as it compiles and works accordingly ;)

smits commented 9 years ago

unsigned int probably won't work that easily as it needs to be of size 1, maybe using and unsigned char? Or stick to the header ;)

doudou commented 9 years ago

Superseded by #53