diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-02-05 20:57:49 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-02-05 20:57:49 +0000 |
commit | 300a05d6c6b578713c4b73509d0961d39d695bcd (patch) | |
tree | bb565816f7b927058ad8fdac928c577ca1da8da0 /Projects/Webserver | |
parent | 7ce76f2d815f115737af9d6379fd896970c36431 (diff) | |
download | lufa-300a05d6c6b578713c4b73509d0961d39d695bcd.tar.gz lufa-300a05d6c6b578713c4b73509d0961d39d695bcd.tar.bz2 lufa-300a05d6c6b578713c4b73509d0961d39d695bcd.zip |
Remove CPPCheck suppressions for unused functions, disable checking for them in the StaticAnalysisTest build test as it can't cope with GCC aliasing and mixed library/application code.
Diffstat (limited to 'Projects/Webserver')
-rw-r--r-- | Projects/Webserver/Lib/uIPManagement.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/uIPManagement.c b/Projects/Webserver/Lib/uIPManagement.c index af83262f6..d89b78778 100644 --- a/Projects/Webserver/Lib/uIPManagement.c +++ b/Projects/Webserver/Lib/uIPManagement.c @@ -189,7 +189,6 @@ static void uIPManagement_ProcessIncomingPacket(void) } /* If the packet contains an Ethernet frame, process it */ - // cppcheck-suppress redundantOperationIn if (uip_len > 0) { switch (((struct uip_eth_hdr*)uip_buf)->type) |