2009/10/3 Junio C Hamano <gitster@xxxxxxxxx>: > Michael Wookey <michaelwookey@xxxxxxxxx> writes: > >> diff --git a/builtin-branch.c b/builtin-branch.c >> index 9f57992..cf6a9ca 100644 >> --- a/builtin-branch.c >> +++ b/builtin-branch.c >> @@ -93,7 +93,7 @@ static const char *branch_get_color(enum color_branch ix) >> >> static int delete_branches(int argc, const char **argv, int force, int kinds) >> { >> - struct commit *rev, *head_rev = head_rev; > > I haven't tried, but the patch may break build with "gcc -Werror". > > This is a common and unfortunate idiom to tell the readers of the code > that this initialization is unnecessary, gcc is not clever enough to > notice and gives warnings, and we are squelching it, knowing what we are > doing. I can't build with -Werror on Ubuntu 9.04 (gcc 4.3.3) because of the following: http://article.gmane.org/gmane.comp.version-control.git/127477 With the current git.rc2, I also get the following warnings: builtin-mailinfo.c: In function 'handle_commit_msg': builtin-mailinfo.c:789: warning: ignoring return value of 'ftruncate', declared with attribute warn_unused_result It would be nice to get those warnings removed. I just tried my patch with gcc 4.2.1 (Mac OSX 10.6) and there are a few warnings that are generated because some of the variables have had their initial values removed. I can send a V2 if you like, however these variable were initialised that way for a reason and it might not be sensible to clean them up in the way I was proposing. What would be a good method of fixing these warnings now that we have the ability to compile with MSVC? Explicitly initialising the variables (to something sane) or should we start to introduce compiler specific pragmas (ugly...) that aim to clean the various build warnings? I just want to reduce (and eventually remove) all the build noise when building using MSVC. >From what I have seen so far, building with MSVC spews out a lot of warnings. I am building with MSVC in both the IDE and from a build console via: devenv git.sln /useenv /build "Debug|Win32" If you compile using gcc with "-Wextra" you will see a similar amount of build noise that gets generated. See the following for some previous discussion: http://article.gmane.org/gmane.comp.version-control.git/128967 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html