[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Parad
From: |
Mike Kleshov |
Subject: |
[lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++) |
Date: |
Mon, 22 Dec 2008 16:59:43 +0000 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 |
Follow-up Comment #13, patch #6699 (project lwip):
> The int can't be 0xFFFF.
Now I see it... Still, I think the wording of this warning is a bit vague...
> Sure, it's always false, but it's also bad coding style
I suppose adding an explicit check for size of int would be more readable
than relying on the if statement to reduce to 'always false' on 16-bit
platforms. Something like this should work:
#include <limits.h>
#if UINT_MAX > 0xffffu
...
#endif
> That will break the code on many 8- and 16-bit compilers that are not C99
compatible
It won't if you define roll-your-own types like it's currently done with
u8_t, u16_t and so on.
_______________________________________________________
Reply to this item at:
<http://savannah.nongnu.org/patch/?6699>
_______________________________________________
Message sent via/by Savannah
http://savannah.nongnu.org/
- Re: [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), (continued)
- Re: [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Mike Kleshov, 2008/12/19
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Jonathan Larmour, 2008/12/19
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Simon Goldschmidt, 2008/12/20
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Mike Kleshov, 2008/12/20
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Simon Goldschmidt, 2008/12/20
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Bill Auerbach, 2008/12/22
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Mike Kleshov, 2008/12/22
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Bill Auerbach, 2008/12/22
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Mike Kleshov, 2008/12/22
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++), Bill Auerbach, 2008/12/22
- [lwip-devel] [patch #6699] Fixing a couple of compilation warnings(Paradigm C++),
Mike Kleshov <=