Re: [PATCH] init-db: remove unused #includes
From: Junio C Hamano <hidden>
Date: 2016-06-15 23:03:36
Jeff King [off-list ref] writes:
On Thu, Jan 15, 2015 at 12:36:00PM -0800, Junio C Hamano wrote:quoted
Jeff King [off-list ref] writes:quoted
FWIW, the full set of CFLAGS I use (which I specify in config.mak) is: CFLAGS += -Wall -Werror CFLAGS += -Wno-format-zero-length CFLAGS += -Wdeclaration-after-statement CFLAGS += -Wpointer-arith CFLAGS += -Wstrict-prototypes CFLAGS += -Wold-style-declarationI think I have no-pointer-to-int-cast, old-style-definition and vla in addition to the above.Thanks, I added the latter two to my setup. But what is the purpose of turning off pointer-to-int warnings? It seems like those are a good indication of a sloppy construct (and AFAICT, we do not have any code which triggers on it).
It probably a remnant from olden days; perhaps we used to have a code that stuffs a pointer value to an int field used as a hash key or something. As you said, there is no need for disabling that check in today's code. Thanks for catching.