Jump to content


captnoord

Member Since 30 Jul 2014
Offline Last Active 14 Aug 2022 20:20
-----

Posts I've Made

In Topic: merge requests for PLi's git

24 August 2014 - 22:40

Thanks...

In Topic: merge requests for PLi's git

21 August 2014 - 18:43

hmmm cherrypick the commit might be easier:

https://github.com/C...73400578d95df5d


In Topic: merge requests for PLi's git

21 August 2014 - 12:01

replaced mix of type integer typedef's with the supplied ones from stdint.h

 

__u8 -> uint8_t

__u16 -> uint16_t

__u32 -> uint32_t

 

https://github.com/C...ed-integer-type

 

some parts of the code where already using those, some where not.


In Topic: merge requests for PLi's git

4 August 2014 - 19:09

but some things in the E2 code fail to compile when C++ exceptions are enabled.

 

I don't think that would be hard to fix for anyone, I wonder why it hasn't been fixed yet.


In Topic: merge requests for PLi's git

4 August 2014 - 06:57

Don't worry, I know.

I was also thinking about something like this:

 

CFile f;

if (!f.open("/tmp/file", "r"))

   return false;


ssize_t bytes = f.read(buffer, sizeof(buffer), 1);