How do I always enable compiler warnings?What happens when a character variable declared but character placed in double quotes?How do you set, clear, and toggle a single bit?What are the differences between a pointer variable and a reference variable in C++?How to automatically generate a stacktrace when my program crashesImprove INSERT-per-second performance of SQLite?Undefined behavior and sequence points“Notice: Undefined variable”, “Notice: Undefined index”, and “Notice: Undefined offset” using PHPC++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Why is processing a sorted array faster than processing an unsorted array?Reference - What does this error mean in PHP?Compiling an application for use in highly radioactive environments

How does Vivi differ from other Black Mages?

What is negative current?

Can a magnet rip protons from a nucleus?

Are there any space probes or landers which regained communication after being lost?

What is going on: C++ std::move on std::shared_ptr increases use_count?

RP Automatic Updates

Are there any instances of members of different Hogwarts houses coupling up and marrying each other?

Dividing Divisive Divisors

What is this dollar sign ($) icon in my Menu Bar?

I see your BIDMAS and raise you a BADMIS

How to circle together certain entries of a matrix?

Two different colors in an Illustrator stroke / line

Usage of Offrir and Donner

How to split a string by the third .(dot) delimiter

Might have gotten a coworker sick, should I address this?

I changed a word from a source, how do I cite it correctly?

How to create a list of dictionaries from a dictionary with lists of different lengths

Can the Warforged Integrated Weapon Trait be Disarmed?

Are the definite and indefinite integrals actually two different things? Where is the flaw in my understanding?

Are scroll bars dead in 2019?

Why would thermal imaging be used to locate the Chandrayaan-2 lander?

Why does F + F' = 1?

Why is the the worst case for this function O(n^2)?

How is the Team Scooby Doo funded?



How do I always enable compiler warnings?


What happens when a character variable declared but character placed in double quotes?How do you set, clear, and toggle a single bit?What are the differences between a pointer variable and a reference variable in C++?How to automatically generate a stacktrace when my program crashesImprove INSERT-per-second performance of SQLite?Undefined behavior and sequence points“Notice: Undefined variable”, “Notice: Undefined index”, and “Notice: Undefined offset” using PHPC++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Why is processing a sorted array faster than processing an unsorted array?Reference - What does this error mean in PHP?Compiling an application for use in highly radioactive environments






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








95















I often hear, when compiling C and C++ programs, I should always "enable compiler warnings". Why is this necessary? How do I do that?



I also hear, I should "treat warnings as errors". Should I? How do I do that?



This post is intended as a FAQ and/or a generic duplicate target.










share|improve this question





















  • 7





    these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

    – engf-010
    yesterday







  • 2





    I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

    – jamesqf
    20 hours ago






  • 55





    @jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

    – David Z
    17 hours ago






  • 11





    @jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

    – Steve Summit
    11 hours ago






  • 4





    @jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

    – Nobody
    7 hours ago

















95















I often hear, when compiling C and C++ programs, I should always "enable compiler warnings". Why is this necessary? How do I do that?



I also hear, I should "treat warnings as errors". Should I? How do I do that?



This post is intended as a FAQ and/or a generic duplicate target.










share|improve this question





















  • 7





    these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

    – engf-010
    yesterday







  • 2





    I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

    – jamesqf
    20 hours ago






  • 55





    @jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

    – David Z
    17 hours ago






  • 11





    @jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

    – Steve Summit
    11 hours ago






  • 4





    @jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

    – Nobody
    7 hours ago













95












95








95


9






I often hear, when compiling C and C++ programs, I should always "enable compiler warnings". Why is this necessary? How do I do that?



I also hear, I should "treat warnings as errors". Should I? How do I do that?



This post is intended as a FAQ and/or a generic duplicate target.










share|improve this question
















I often hear, when compiling C and C++ programs, I should always "enable compiler warnings". Why is this necessary? How do I do that?



I also hear, I should "treat warnings as errors". Should I? How do I do that?



This post is intended as a FAQ and/or a generic duplicate target.







c++ c warnings






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 26 mins ago









JL2210

3,8724 gold badges12 silver badges41 bronze badges




3,8724 gold badges12 silver badges41 bronze badges










asked yesterday









n.m.n.m.

77.6k9 gold badges93 silver badges180 bronze badges




77.6k9 gold badges93 silver badges180 bronze badges










  • 7





    these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

    – engf-010
    yesterday







  • 2





    I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

    – jamesqf
    20 hours ago






  • 55





    @jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

    – David Z
    17 hours ago






  • 11





    @jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

    – Steve Summit
    11 hours ago






  • 4





    @jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

    – Nobody
    7 hours ago












  • 7





    these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

    – engf-010
    yesterday







  • 2





    I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

    – jamesqf
    20 hours ago






  • 55





    @jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

    – David Z
    17 hours ago






  • 11





    @jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

    – Steve Summit
    11 hours ago






  • 4





    @jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

    – Nobody
    7 hours ago







7




7





these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

– engf-010
yesterday






these questions and their answers are so canonical that they should be on the first page (in bold or otherwise emphasized) of any decend learning book !

– engf-010
yesterday





2




2





I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

– jamesqf
20 hours ago





I suspect the people who tell you this have never spent an hour or more looking for the one actual error in pages of meaningless warnings.

– jamesqf
20 hours ago




55




55





@jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

– David Z
17 hours ago





@jamesqf The point is to fix the warnings, not to just have loads of them sitting around cluttering up the output.

– David Z
17 hours ago




11




11





@jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

– Steve Summit
11 hours ago





@jamesqf If you have hundreds of thousands of lines of code that have been developed over years and never compiled with warnings enabled, then yes, turning on warnings at that point is either useless, or mandates a huge catch-up effort to fix them all (no matter what) in order to make them useful again. But that's almost completely beside the point of this question, which is to encourage people to enable warnings (and take them seriously) from the beginning, so that they don't get into horrible binds like that.

– Steve Summit
11 hours ago




4




4





@jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

– Nobody
7 hours ago





@jamesqf And what you should do in that case is so called "maintenance" of the code to keep it to current specs. ;) Obviously there are codebases where this isn't thought to be economical.

– Nobody
7 hours ago












12 Answers
12






active

oldest

votes


















115
















Why enable warnings?



C and C++ compilers are notoriously bad at reporting some common programmer mistakes by default, such as:



  • forgetting to initialise a variable

  • forgetting to return a value from a function

  • arguments in printf and scanf families not matching the format string

  • a function is used without being declared beforehand (C only)

These can be detected and reported, just usually not by default; this feature must be explicitly requested via compiler options.



How to enable warnings?



This depends on your compiler.



Microsoft C and C++ compilers understand switches like /W1, /W2, /W3, /W4 and /Wall. Use at least /W3. /W4 and /Wall may emit spurious warnings for system header files, but if your project compiles cleanly with one of these options, go for it. These options are mutually exclusive.



Most other compilers understand options like -Wall, -Wpedantic and -Wextra. -Wall is essential and all the rest are recommended. These options can be used separately or all together.



Your IDE may have a way to enable these from the user interface.



Why treat warnings as errors? They are just warnings!



A compiler warning signals a potentially serious problem in your code. The problems listed above are almost always fatal; others may or may not be, but you want compilation to fail even if it turns out to be a false alarm. Investigate each warning, find the root cause, and fix it. In the case of a false alarm, work around it — that is, use a different language feature or construct so that the warning is no longer triggered. If this proves to be very hard, disable that particular warning on a case by case basis.



You don't want to just leave warnings as warnings even if all of them are false alarms. It could be OK for very small projects where the total number of warnings emitted is less than 7. Anything more, and it's easy for a new warning to get lost in a flood of old familiar ones. Don't allow that. Just cause all your project to compile cleanly.



How to treat warnings as errors?



This is again done with compiler switches. /WX is for Microsoft, most others use -Werror. In either case, the compilation will fail if there are any warnings produced.






share|improve this answer






















  • 27





    I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

    – n.m.
    yesterday






  • 4





    You can also use clang's -Weverything

    – pmg
    yesterday






  • 4





    The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

    – Kyle A
    yesterday






  • 1





    @JMAA Language errors are normally reported as errors without any special flags.

    – n.m.
    yesterday






  • 4





    The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

    – interfect
    4 hours ago


















39
















C is, famously, a rather low-level language as HLLs go. C++, though it might seem to be a considerably higher-level language than C, still shares a number of its traits. And one of those traits is that the languages were designed by programmers, for programmers -- and, specifically, programmers who knew what they were doing.



[For the rest of this answer I'm going to focus on C. Most of what I'll say also applies to C++, though perhaps not as strongly. Although as Bjarne Stroustrup has famously said, "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."]



If you know what you are doing -- really know what you are doing -- sometimes you may have to "break the rules". But most of the time, most of us will agree that well-intentioned rules keep us all out of trouble, and that wantonly breaking those rules all the time is a bad idea.



But in C and C++, there are surprisingly large numbers of things you can do that are "bad ideas" but which aren't formally "against the rules". Sometimes they're a bad idea some of the time (but might be defensible other times); sometimes they're a bad idea virtually all of the time. But the tradition has always been not to warn about these things -- because, again, the assumption is that programmers know what they are doing, they wouldn't be doing these things without a good reason, they'd be annoyed by a bunch of unnecessary warnings.



But of course not all programmers really know what they're doing. And, in particular, every C programmer (no matter how experienced) goes through a phase of being a beginning C programmer. And even experienced C programmers can get careless and make mistakes.



Finally, experience has shown not only that programmers do make mistakes, but that these mistakes can have real, serious consequences. If you make a mistake, and the compiler doesn't warn you about it, and somehow the program doesn't immediately crash or do something obviously wrong because of it, the mistake can lurk there, hidden, sometimes for years, until it causes a really big problem.



So it turns out that, most of the time, warnings are a good idea, after all. Even the experienced programmers have learned (actually, it's "especially the experienced programmers have learned") that, on balance, the warnings tend to do more good than harm. For every time you did something wrong deliberately and the warning was a nuisance, there are probably at least ten times you did something wrong by accident and the warning saved you from further trouble. And most warnings can be disabled or worked around for those few times when you really want to do the "wrong" thing.



(A classic example of such a "mistake" is the test if(a = b). Most of the time, this is a mistake, so most compilers these days warn about it -- some even by default. But if you really wanted to both assign b to a and test the result, you can disable the warning by typing if((a = b)).)



The second question is, why would you want to ask the compiler to treat warnings as errors? I'd say it's because of human nature, specifically, the all-too-easy reaction of saying "Oh, that's just a warning, that's not so important, I'll clean that up later." But if you're a procrastinator (and I don't know about you, but I'm a terrible procrastinator) it's easy to put off the necessarily cleanup for basically ever -- and if you get into the habit of ignoring warnings, it gets easier and easier to miss an important warning message that's sitting there, unnoticed, in the midst of all the ones you're ignoring.



So asking the compiler to treat warnings as errors is a little trick you can play on yourself to get around this human foible.



Personally, I'm not as insistent about treating warnings as errors. (In fact, if I'm honest, I can say that I virtually never enable that options in my "personal" programming.) But you can be sure I've got that option enabled at work, where our style guide (which I wrote) mandates its use. And I would say -- I suspect most professional programmers would say -- that any shop that doesn't treat warnings as errors in C is behaving irresponsibly, is not adhering to commonly-accepted industry best practices.






share|improve this answer






















  • 1





    "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

    – Dancrumb
    7 hours ago






  • 2





    @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

    – Steve Summit
    7 hours ago












  • @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

    – alephzero
    5 hours ago











  • The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

    – Flydog57
    4 hours ago


















13
















Warnings consist of the best advice some of the most skilled C++ developers could bake into an application. They're worth keeping around.



C++, being a Turing complete language, has plenty of cases where the compiler must simply trust that you knew what you are doing. However, there are many cases where the compiler can realize that you probably did not intend to write what you wrote. A classic example is printf() codes which don't match the arguments, or std::strings passed to printf (not that that ever happens to me!). In these cases, the code you wrote is not an error. It is a valid C++ expression with a valid interpretation for the compiler to act on. But the compiler has a strong hunch that you simply overlooked something which is easy for a modern compiler to detect. These are warnings. They are things that are obvious to a compiler, using all the strict rules of C++ at its disposal, that you might have overlooked.



Turning warnings off, or ignoring them, is like choosing to ignore free advice from those more skilled than you. Its a lesson in huberis that ends either when you fly too close to the sun and your wings melt, or a memory corruption error occurs. Between the two, I'll take falling from the sky any day!



"Treat warnings as errors" is the extreme version of this philosophy. The idea here is that you resolve every warning the compiler gives you -- you listen to every bit of free advice and act on it. Whether this is a good model for development for you depends on the team and what kind of product you are working on. It's the ascetic approach that a monk might have. For some, it works great. For others, it does not.



On many of my applications we do not treat warnings as errors. We do this because these particular applications need to compile on several platforms with several compilers of varying ages. Sometimes we find it is actually impossible to fix a warning on one side without it turning into a warning on another platform. So we are merely careful. We respect warnings, but we don't bend over backwards for them.






share|improve this answer




















  • 2





    What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

    – Kami Kaze
    17 hours ago






  • 1





    @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

    – Caleth
    13 hours ago











  • @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

    – Cort Ammon
    2 hours ago











  • Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

    – Cort Ammon
    2 hours ago


















4
















Not only does handling the warnings make better code, it makes you a better programmer. Warnings will tell you about things that may seem little to you today, but one day that bad habit will come back and bite your head off.



Use the correct type, return that value, evaluate that return value. Take time and reflect "Is this really the correct type in this context?" "Do I need to return this?" And the biggie; "Is this code going to be portable for the next 10 years?"



Get into the habit of writing warning-free code in the first place.






share|improve this answer
































    2
















    Non-fixed warnings will, sooner or later, lead to errors in your code.




    Debugging a segmentation fault, for instance, requires the programmer to trace the root (cause) of the fault, which usually is located in a prior place in your code than the line that eventually caused the segmentation fault.



    It's very typical that the cause is a line for which the compiler had issued a warning that you ignored, and the line that caused the segmentation fault the line that eventually threw the error.



    Fixing the warning leads to fixing the problem.. A classic!



    A demonstration of the above.. Consider the following code:



    #include <stdio.h>

    int main(void)
    char* str = "Hello world!";
    int idx;

    // Colossal amount of code here, irrelevant to 'idx'

    printf("%cn", str[idx]);

    return 0;



    which when compiled with "Wextra" flag passed to GCC, gives:



    main.c: In function 'main':
    main.c:9:21: warning: 'idx' is used uninitialized in this function [-Wuninitialized]
    9 | printf("%cn", str[idx]);
    | ^


    which I could ignore and execute the code anyway.. And then I would witness a "grand" segmentation fault, as my IP epicurus professor used to say:




    Segmentation fault




    In order to debug this in a real world scenario, one would start from the line that causes the segmentation fault and attempt to trace what is the root of the cause.. They would have to search for what has happened to i and str inside that colossal amount of code over there...



    Until, one day, they found theirselves in the situation where the discover that i is used uninitialized, thus it has a garbage value, which results in indexing the string (way) beyond out of its bounds, which leads to a segmentation fault.



    If only they hadn't ignored the warning, they would have found the bug immediately!






    share|improve this answer
































      1
















      You should always enable compiler warnings because the compiler can often tell you what's wrong with your code. To do this, you pass -Wall -Wextra to the compiler.



      You should usually treat warnings as errors because often the warnings usually signify that there's something wrong with your code. However, it's often very easy to ignore these errors. Therefore, treating them as errors will cause the build to fail so you can't ignore the errors. To treat warnings as errors, pass -Werror to the compiler.






      share|improve this answer
































        0
















        Some warning may mean possible semantic error in code or possible UB. E.g. ; after if(), unused variable, global variable masked by local, or comparison of signed and unsigned. Many warnings are related to static code analyzer in compiler or to breaches of ISO standard detectable at compile time, which "require diagnostics". While those occurrences may be legal in one particular case, they would be result of design issues most of time.



        Some compilers, e.g. gcc, have a command line option to activate "warnings as errors" mode, it's a nice , if cruel, tool to educate novice coders.






        share|improve this answer
































          0
















          Treating warnings as errors is just a mean of self-discipline: you were compiling a program to test that shiny new feature, but you can't until you fix the sloppy parts. There is no additional information Werror provides, it just sets priorities very clearly:




          Don't add new code until you fix problems in the existing code




          It's really the mindset that's important, not the tools. Compiler diagnostics output is a tool. MISRA (for embedded C) is another tool. It doesn't matter which one you use, but arguably compiler warnings is the easiest tool you can get (it's just one flag to set) and the signal to noise ratio is very high. So there's no reason not to use it.



          No tool is infallible. If you write const float pi = 3.14;, no tool will tell you that you defined π with a bad precision which may lead to problems down the road. Most tools won't raise an eyebrow on if(tmp < 42), even if it's commonly known that giving variables meaningless names and using magic numbers is a way to disaster in big projects. You have to understand that any "quick test" code you write is just that: a test, and you have to get it right before you move on to other tasks, while you still see its shortcomings. If you leave that codes as is, debugging if after you spend two months adding new features will be significantly harder.



          Once you get into the right mindset, there is no point in using Werror. Having warnings as warnings will allow you to take an informed decision whether it still makes sense to run that debug session you were about to start, or to abort it and fix the warnings first.






          share|improve this answer


































            0
















            This is a specific answer to C, and why this is far more important to C than to anything else.



            #include <stdio.h>
            int main()

            FILE *fp = "some string";



            This code compiles with a warning. What are and should be errors in just about every other language on the planet (barring assembly language) are warnings in C. Warnings in C are almost always errors in disguise. Warnings should be fixed, not suppressed.



            This was also the reason for the high rantyness about some MS non-secure API warnings. Most people programming C have learned the hard way to treat warnings as errors and this stuff appeared that just wasn't the same kind of thing and wanted non-portable fixes.






            share|improve this answer
































              0
















              The other answers are excellent and I don't want to repeat what they have said.



              One other aspect to "why enable warnings" that hasn't properly been touched on is that they help enormously with code maintenance. When you write a program of significant size, it becomes impossible to keep the whole thing in your head at once. You typically have a function or three that you're actively writing and thinking about, and perhaps a file or three on your screen that you can refer to, but the bulk of the program exists in the background somewhere and you have to trust that it keeps working.



              Having warnings on, and having them as energetic and in your face as possible, helps to alert you if something you change makes trouble for something that you can't see.



              Take for example, the clang warning -Wswitch-enum. That triggers a warning if you use a switch on an enum and miss out one of the possible enum values. It's something you might think would be an unlikely mistake to make: you probably at least looked at the list of enum values when you wrote the switch statement. You might even have an IDE that generated the switch options for you, leaving no room for human error.



              This warning really comes into its own when, six months later you add another possible entry to the enum. Again, if you're thinking about the code in question you'll probably be fine. But if this enum is used for multiple different purposes and it's for one of those that you need the extra option, it's very easy to forget to update a switch in a file you haven't touched for 6 months.



              You can think of warnings in the same way as you'd think of automated test cases: they help you make sure that the code is sensible and doing what you need when you first write it, but they help even more to make sure that it keeps doing what you need while you prod at it. The difference is that test cases work very narrowly to the requirements of your code and you have to write them, while warnings work broadly to sensible standards for almost all code, and they're very generously supplied by the boffins who make the compilers.






              share|improve this answer
































                0
















                As someone who works with legacy embedded C code, enabling compiler warnings has helped show a lot of weakness and areas to investigate when proposing fixes. In gcc utilizing -Wall and -Wextra and even -Wshadow have become vital. I'm not going to go every single hazard, but I'll list a few that have popped up that helped show code issues.



                Variables being left behind



                This one can easily point to unfinished work and areas that might not be utilizing all of the passed variables which could be an issue. Let's look at a simple function that may trigger this:



                int foo(int a, int b)

                int c = 0;

                if (a > 0)

                return a;

                return 0;



                Just compiling this without -Wall or -Wextra returns no issues. -Wall will tell you though that c is never used:




                foo.c: In function ‘foo’:



                foo.c:9:20: warning: unused variable ‘c’
                [-Wunused-variable]




                -Wextra will also tell you that your parameter b doesn't do anything:




                foo.c: In function ‘foo’:



                foo.c:9:20: warning: unused variable ‘c’
                [-Wunused-variable]



                foo.c:7:20: warning: unused parameter ‘b’ [-Wunused-parameter] int foo(int a, int b)




                Global Variable shadowing



                This one bit hard and did not show up until -Wshadow was used. Let's modify the example above to just add, but there just happens to be a global with the same name as a local which causes a lot of confusion when trying to use both.



                int c = 7;

                int foo(int a, int b)

                int c = a + b;
                return c;



                When -Wshadow was turned on, it's easy to spot this issue.




                foo.c:11:9: warning: declaration of ‘c’ shadows a global declaration
                [-Wshadow]



                foo.c:1:5: note: shadowed declaration is here




                Format strings



                This doesn't require any extra flags in gcc, but it has still be the source of problems in the past. A simple function trying to print data, but has a formatting error could look like this:



                void foo(const char * str)

                printf("str = %dn", str);



                This doesn't print the string since the formatting flag is wrong and gcc will happily tell you this is probably not what you wanted:




                foo.c: In function ‘foo’:



                foo.c:10:12: warning: format ‘%d’ expects
                argument of type ‘int’, but argument 2 has type ‘const char *’
                [-Wformat=]





                These are just three of the many things the compiler can double check for you. There are a lot of others like using an uninitialized variable that others have pointed out.






                share|improve this answer
































                  -8
















                  Take it easy: you don't have to, it is not necessary. -Wall and -Werror was designed by code-refactoring maniacs for themselves. But other people who hates when others brake their code also find it useful.



                  So, this is just an optional feature, which is totally up to your preference to use or not.



                  I use it all the time because it helps to fix my mistakes.






                  share|improve this answer






















                  • 10





                    Although it is not mandatory, it is highly recommended to use them

                    – Spikatrix
                    19 hours ago






                  • 2





                    -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                    – YSC
                    8 hours ago







                  • 2





                    It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                    – scohe001
                    4 hours ago













                  Your Answer






                  StackExchange.ifUsing("editor", function ()
                  StackExchange.using("externalEditor", function ()
                  StackExchange.using("snippets", function ()
                  StackExchange.snippets.init();
                  );
                  );
                  , "code-snippets");

                  StackExchange.ready(function()
                  var channelOptions =
                  tags: "".split(" "),
                  id: "1"
                  ;
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function()
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled)
                  StackExchange.using("snippets", function()
                  createEditor();
                  );

                  else
                  createEditor();

                  );

                  function createEditor()
                  StackExchange.prepareEditor(
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: true,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: 10,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader:
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  ,
                  onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  );



                  );














                  draft saved

                  draft discarded
















                  StackExchange.ready(
                  function ()
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f57842756%2fhow-do-i-always-enable-compiler-warnings%23new-answer', 'question_page');

                  );

                  Post as a guest















                  Required, but never shown

























                  12 Answers
                  12






                  active

                  oldest

                  votes








                  12 Answers
                  12






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  115
















                  Why enable warnings?



                  C and C++ compilers are notoriously bad at reporting some common programmer mistakes by default, such as:



                  • forgetting to initialise a variable

                  • forgetting to return a value from a function

                  • arguments in printf and scanf families not matching the format string

                  • a function is used without being declared beforehand (C only)

                  These can be detected and reported, just usually not by default; this feature must be explicitly requested via compiler options.



                  How to enable warnings?



                  This depends on your compiler.



                  Microsoft C and C++ compilers understand switches like /W1, /W2, /W3, /W4 and /Wall. Use at least /W3. /W4 and /Wall may emit spurious warnings for system header files, but if your project compiles cleanly with one of these options, go for it. These options are mutually exclusive.



                  Most other compilers understand options like -Wall, -Wpedantic and -Wextra. -Wall is essential and all the rest are recommended. These options can be used separately or all together.



                  Your IDE may have a way to enable these from the user interface.



                  Why treat warnings as errors? They are just warnings!



                  A compiler warning signals a potentially serious problem in your code. The problems listed above are almost always fatal; others may or may not be, but you want compilation to fail even if it turns out to be a false alarm. Investigate each warning, find the root cause, and fix it. In the case of a false alarm, work around it — that is, use a different language feature or construct so that the warning is no longer triggered. If this proves to be very hard, disable that particular warning on a case by case basis.



                  You don't want to just leave warnings as warnings even if all of them are false alarms. It could be OK for very small projects where the total number of warnings emitted is less than 7. Anything more, and it's easy for a new warning to get lost in a flood of old familiar ones. Don't allow that. Just cause all your project to compile cleanly.



                  How to treat warnings as errors?



                  This is again done with compiler switches. /WX is for Microsoft, most others use -Werror. In either case, the compilation will fail if there are any warnings produced.






                  share|improve this answer






















                  • 27





                    I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                    – n.m.
                    yesterday






                  • 4





                    You can also use clang's -Weverything

                    – pmg
                    yesterday






                  • 4





                    The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                    – Kyle A
                    yesterday






                  • 1





                    @JMAA Language errors are normally reported as errors without any special flags.

                    – n.m.
                    yesterday






                  • 4





                    The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                    – interfect
                    4 hours ago















                  115
















                  Why enable warnings?



                  C and C++ compilers are notoriously bad at reporting some common programmer mistakes by default, such as:



                  • forgetting to initialise a variable

                  • forgetting to return a value from a function

                  • arguments in printf and scanf families not matching the format string

                  • a function is used without being declared beforehand (C only)

                  These can be detected and reported, just usually not by default; this feature must be explicitly requested via compiler options.



                  How to enable warnings?



                  This depends on your compiler.



                  Microsoft C and C++ compilers understand switches like /W1, /W2, /W3, /W4 and /Wall. Use at least /W3. /W4 and /Wall may emit spurious warnings for system header files, but if your project compiles cleanly with one of these options, go for it. These options are mutually exclusive.



                  Most other compilers understand options like -Wall, -Wpedantic and -Wextra. -Wall is essential and all the rest are recommended. These options can be used separately or all together.



                  Your IDE may have a way to enable these from the user interface.



                  Why treat warnings as errors? They are just warnings!



                  A compiler warning signals a potentially serious problem in your code. The problems listed above are almost always fatal; others may or may not be, but you want compilation to fail even if it turns out to be a false alarm. Investigate each warning, find the root cause, and fix it. In the case of a false alarm, work around it — that is, use a different language feature or construct so that the warning is no longer triggered. If this proves to be very hard, disable that particular warning on a case by case basis.



                  You don't want to just leave warnings as warnings even if all of them are false alarms. It could be OK for very small projects where the total number of warnings emitted is less than 7. Anything more, and it's easy for a new warning to get lost in a flood of old familiar ones. Don't allow that. Just cause all your project to compile cleanly.



                  How to treat warnings as errors?



                  This is again done with compiler switches. /WX is for Microsoft, most others use -Werror. In either case, the compilation will fail if there are any warnings produced.






                  share|improve this answer






















                  • 27





                    I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                    – n.m.
                    yesterday






                  • 4





                    You can also use clang's -Weverything

                    – pmg
                    yesterday






                  • 4





                    The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                    – Kyle A
                    yesterday






                  • 1





                    @JMAA Language errors are normally reported as errors without any special flags.

                    – n.m.
                    yesterday






                  • 4





                    The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                    – interfect
                    4 hours ago













                  115














                  115










                  115









                  Why enable warnings?



                  C and C++ compilers are notoriously bad at reporting some common programmer mistakes by default, such as:



                  • forgetting to initialise a variable

                  • forgetting to return a value from a function

                  • arguments in printf and scanf families not matching the format string

                  • a function is used without being declared beforehand (C only)

                  These can be detected and reported, just usually not by default; this feature must be explicitly requested via compiler options.



                  How to enable warnings?



                  This depends on your compiler.



                  Microsoft C and C++ compilers understand switches like /W1, /W2, /W3, /W4 and /Wall. Use at least /W3. /W4 and /Wall may emit spurious warnings for system header files, but if your project compiles cleanly with one of these options, go for it. These options are mutually exclusive.



                  Most other compilers understand options like -Wall, -Wpedantic and -Wextra. -Wall is essential and all the rest are recommended. These options can be used separately or all together.



                  Your IDE may have a way to enable these from the user interface.



                  Why treat warnings as errors? They are just warnings!



                  A compiler warning signals a potentially serious problem in your code. The problems listed above are almost always fatal; others may or may not be, but you want compilation to fail even if it turns out to be a false alarm. Investigate each warning, find the root cause, and fix it. In the case of a false alarm, work around it — that is, use a different language feature or construct so that the warning is no longer triggered. If this proves to be very hard, disable that particular warning on a case by case basis.



                  You don't want to just leave warnings as warnings even if all of them are false alarms. It could be OK for very small projects where the total number of warnings emitted is less than 7. Anything more, and it's easy for a new warning to get lost in a flood of old familiar ones. Don't allow that. Just cause all your project to compile cleanly.



                  How to treat warnings as errors?



                  This is again done with compiler switches. /WX is for Microsoft, most others use -Werror. In either case, the compilation will fail if there are any warnings produced.






                  share|improve this answer















                  Why enable warnings?



                  C and C++ compilers are notoriously bad at reporting some common programmer mistakes by default, such as:



                  • forgetting to initialise a variable

                  • forgetting to return a value from a function

                  • arguments in printf and scanf families not matching the format string

                  • a function is used without being declared beforehand (C only)

                  These can be detected and reported, just usually not by default; this feature must be explicitly requested via compiler options.



                  How to enable warnings?



                  This depends on your compiler.



                  Microsoft C and C++ compilers understand switches like /W1, /W2, /W3, /W4 and /Wall. Use at least /W3. /W4 and /Wall may emit spurious warnings for system header files, but if your project compiles cleanly with one of these options, go for it. These options are mutually exclusive.



                  Most other compilers understand options like -Wall, -Wpedantic and -Wextra. -Wall is essential and all the rest are recommended. These options can be used separately or all together.



                  Your IDE may have a way to enable these from the user interface.



                  Why treat warnings as errors? They are just warnings!



                  A compiler warning signals a potentially serious problem in your code. The problems listed above are almost always fatal; others may or may not be, but you want compilation to fail even if it turns out to be a false alarm. Investigate each warning, find the root cause, and fix it. In the case of a false alarm, work around it — that is, use a different language feature or construct so that the warning is no longer triggered. If this proves to be very hard, disable that particular warning on a case by case basis.



                  You don't want to just leave warnings as warnings even if all of them are false alarms. It could be OK for very small projects where the total number of warnings emitted is less than 7. Anything more, and it's easy for a new warning to get lost in a flood of old familiar ones. Don't allow that. Just cause all your project to compile cleanly.



                  How to treat warnings as errors?



                  This is again done with compiler switches. /WX is for Microsoft, most others use -Werror. In either case, the compilation will fail if there are any warnings produced.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 11 hours ago

























                  answered yesterday









                  n.m.n.m.

                  77.6k9 gold badges93 silver badges180 bronze badges




                  77.6k9 gold badges93 silver badges180 bronze badges










                  • 27





                    I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                    – n.m.
                    yesterday






                  • 4





                    You can also use clang's -Weverything

                    – pmg
                    yesterday






                  • 4





                    The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                    – Kyle A
                    yesterday






                  • 1





                    @JMAA Language errors are normally reported as errors without any special flags.

                    – n.m.
                    yesterday






                  • 4





                    The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                    – interfect
                    4 hours ago












                  • 27





                    I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                    – n.m.
                    yesterday






                  • 4





                    You can also use clang's -Weverything

                    – pmg
                    yesterday






                  • 4





                    The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                    – Kyle A
                    yesterday






                  • 1





                    @JMAA Language errors are normally reported as errors without any special flags.

                    – n.m.
                    yesterday






                  • 4





                    The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                    – interfect
                    4 hours ago







                  27




                  27





                  I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                  – n.m.
                  yesterday





                  I have posted this Q&A because I'm sick and tired of telling people to enable warnings. Now I can just point them here (or, if I'm in a particularly evil mood, close their question as a dupe). You are welcome to improve this answer or add your own!

                  – n.m.
                  yesterday




                  4




                  4





                  You can also use clang's -Weverything

                  – pmg
                  yesterday





                  You can also use clang's -Weverything

                  – pmg
                  yesterday




                  4




                  4





                  The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                  – Kyle A
                  yesterday





                  The only modifier I would add is that some warnings may not be helpful for your application. (I've seen warnings that the compiler added 2 bytes of padding between elements in a struct. The application was for prototyping, so a little wasted memory didn't bother us.) Treat all warnings as errors and then only disable a warning if you know why that warning won't help you.

                  – Kyle A
                  yesterday




                  1




                  1





                  @JMAA Language errors are normally reported as errors without any special flags.

                  – n.m.
                  yesterday





                  @JMAA Language errors are normally reported as errors without any special flags.

                  – n.m.
                  yesterday




                  4




                  4





                  The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                  – interfect
                  4 hours ago





                  The downside of treating warnings as errors for people following your default build instructions is that your code rots as compilers add new warnings. Users who download your code and try to build it in the future may be unable to, because their compiler is too new and issues a warning about some extra parentheses or something that your compiler didn't care about. The user who encounters the error isn't responsible for your code or your build system, and has no idea how to turn off treating warnings as errors and actually build your project.

                  – interfect
                  4 hours ago













                  39
















                  C is, famously, a rather low-level language as HLLs go. C++, though it might seem to be a considerably higher-level language than C, still shares a number of its traits. And one of those traits is that the languages were designed by programmers, for programmers -- and, specifically, programmers who knew what they were doing.



                  [For the rest of this answer I'm going to focus on C. Most of what I'll say also applies to C++, though perhaps not as strongly. Although as Bjarne Stroustrup has famously said, "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."]



                  If you know what you are doing -- really know what you are doing -- sometimes you may have to "break the rules". But most of the time, most of us will agree that well-intentioned rules keep us all out of trouble, and that wantonly breaking those rules all the time is a bad idea.



                  But in C and C++, there are surprisingly large numbers of things you can do that are "bad ideas" but which aren't formally "against the rules". Sometimes they're a bad idea some of the time (but might be defensible other times); sometimes they're a bad idea virtually all of the time. But the tradition has always been not to warn about these things -- because, again, the assumption is that programmers know what they are doing, they wouldn't be doing these things without a good reason, they'd be annoyed by a bunch of unnecessary warnings.



                  But of course not all programmers really know what they're doing. And, in particular, every C programmer (no matter how experienced) goes through a phase of being a beginning C programmer. And even experienced C programmers can get careless and make mistakes.



                  Finally, experience has shown not only that programmers do make mistakes, but that these mistakes can have real, serious consequences. If you make a mistake, and the compiler doesn't warn you about it, and somehow the program doesn't immediately crash or do something obviously wrong because of it, the mistake can lurk there, hidden, sometimes for years, until it causes a really big problem.



                  So it turns out that, most of the time, warnings are a good idea, after all. Even the experienced programmers have learned (actually, it's "especially the experienced programmers have learned") that, on balance, the warnings tend to do more good than harm. For every time you did something wrong deliberately and the warning was a nuisance, there are probably at least ten times you did something wrong by accident and the warning saved you from further trouble. And most warnings can be disabled or worked around for those few times when you really want to do the "wrong" thing.



                  (A classic example of such a "mistake" is the test if(a = b). Most of the time, this is a mistake, so most compilers these days warn about it -- some even by default. But if you really wanted to both assign b to a and test the result, you can disable the warning by typing if((a = b)).)



                  The second question is, why would you want to ask the compiler to treat warnings as errors? I'd say it's because of human nature, specifically, the all-too-easy reaction of saying "Oh, that's just a warning, that's not so important, I'll clean that up later." But if you're a procrastinator (and I don't know about you, but I'm a terrible procrastinator) it's easy to put off the necessarily cleanup for basically ever -- and if you get into the habit of ignoring warnings, it gets easier and easier to miss an important warning message that's sitting there, unnoticed, in the midst of all the ones you're ignoring.



                  So asking the compiler to treat warnings as errors is a little trick you can play on yourself to get around this human foible.



                  Personally, I'm not as insistent about treating warnings as errors. (In fact, if I'm honest, I can say that I virtually never enable that options in my "personal" programming.) But you can be sure I've got that option enabled at work, where our style guide (which I wrote) mandates its use. And I would say -- I suspect most professional programmers would say -- that any shop that doesn't treat warnings as errors in C is behaving irresponsibly, is not adhering to commonly-accepted industry best practices.






                  share|improve this answer






















                  • 1





                    "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                    – Dancrumb
                    7 hours ago






                  • 2





                    @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                    – Steve Summit
                    7 hours ago












                  • @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                    – alephzero
                    5 hours ago











                  • The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                    – Flydog57
                    4 hours ago















                  39
















                  C is, famously, a rather low-level language as HLLs go. C++, though it might seem to be a considerably higher-level language than C, still shares a number of its traits. And one of those traits is that the languages were designed by programmers, for programmers -- and, specifically, programmers who knew what they were doing.



                  [For the rest of this answer I'm going to focus on C. Most of what I'll say also applies to C++, though perhaps not as strongly. Although as Bjarne Stroustrup has famously said, "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."]



                  If you know what you are doing -- really know what you are doing -- sometimes you may have to "break the rules". But most of the time, most of us will agree that well-intentioned rules keep us all out of trouble, and that wantonly breaking those rules all the time is a bad idea.



                  But in C and C++, there are surprisingly large numbers of things you can do that are "bad ideas" but which aren't formally "against the rules". Sometimes they're a bad idea some of the time (but might be defensible other times); sometimes they're a bad idea virtually all of the time. But the tradition has always been not to warn about these things -- because, again, the assumption is that programmers know what they are doing, they wouldn't be doing these things without a good reason, they'd be annoyed by a bunch of unnecessary warnings.



                  But of course not all programmers really know what they're doing. And, in particular, every C programmer (no matter how experienced) goes through a phase of being a beginning C programmer. And even experienced C programmers can get careless and make mistakes.



                  Finally, experience has shown not only that programmers do make mistakes, but that these mistakes can have real, serious consequences. If you make a mistake, and the compiler doesn't warn you about it, and somehow the program doesn't immediately crash or do something obviously wrong because of it, the mistake can lurk there, hidden, sometimes for years, until it causes a really big problem.



                  So it turns out that, most of the time, warnings are a good idea, after all. Even the experienced programmers have learned (actually, it's "especially the experienced programmers have learned") that, on balance, the warnings tend to do more good than harm. For every time you did something wrong deliberately and the warning was a nuisance, there are probably at least ten times you did something wrong by accident and the warning saved you from further trouble. And most warnings can be disabled or worked around for those few times when you really want to do the "wrong" thing.



                  (A classic example of such a "mistake" is the test if(a = b). Most of the time, this is a mistake, so most compilers these days warn about it -- some even by default. But if you really wanted to both assign b to a and test the result, you can disable the warning by typing if((a = b)).)



                  The second question is, why would you want to ask the compiler to treat warnings as errors? I'd say it's because of human nature, specifically, the all-too-easy reaction of saying "Oh, that's just a warning, that's not so important, I'll clean that up later." But if you're a procrastinator (and I don't know about you, but I'm a terrible procrastinator) it's easy to put off the necessarily cleanup for basically ever -- and if you get into the habit of ignoring warnings, it gets easier and easier to miss an important warning message that's sitting there, unnoticed, in the midst of all the ones you're ignoring.



                  So asking the compiler to treat warnings as errors is a little trick you can play on yourself to get around this human foible.



                  Personally, I'm not as insistent about treating warnings as errors. (In fact, if I'm honest, I can say that I virtually never enable that options in my "personal" programming.) But you can be sure I've got that option enabled at work, where our style guide (which I wrote) mandates its use. And I would say -- I suspect most professional programmers would say -- that any shop that doesn't treat warnings as errors in C is behaving irresponsibly, is not adhering to commonly-accepted industry best practices.






                  share|improve this answer






















                  • 1





                    "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                    – Dancrumb
                    7 hours ago






                  • 2





                    @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                    – Steve Summit
                    7 hours ago












                  • @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                    – alephzero
                    5 hours ago











                  • The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                    – Flydog57
                    4 hours ago













                  39














                  39










                  39









                  C is, famously, a rather low-level language as HLLs go. C++, though it might seem to be a considerably higher-level language than C, still shares a number of its traits. And one of those traits is that the languages were designed by programmers, for programmers -- and, specifically, programmers who knew what they were doing.



                  [For the rest of this answer I'm going to focus on C. Most of what I'll say also applies to C++, though perhaps not as strongly. Although as Bjarne Stroustrup has famously said, "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."]



                  If you know what you are doing -- really know what you are doing -- sometimes you may have to "break the rules". But most of the time, most of us will agree that well-intentioned rules keep us all out of trouble, and that wantonly breaking those rules all the time is a bad idea.



                  But in C and C++, there are surprisingly large numbers of things you can do that are "bad ideas" but which aren't formally "against the rules". Sometimes they're a bad idea some of the time (but might be defensible other times); sometimes they're a bad idea virtually all of the time. But the tradition has always been not to warn about these things -- because, again, the assumption is that programmers know what they are doing, they wouldn't be doing these things without a good reason, they'd be annoyed by a bunch of unnecessary warnings.



                  But of course not all programmers really know what they're doing. And, in particular, every C programmer (no matter how experienced) goes through a phase of being a beginning C programmer. And even experienced C programmers can get careless and make mistakes.



                  Finally, experience has shown not only that programmers do make mistakes, but that these mistakes can have real, serious consequences. If you make a mistake, and the compiler doesn't warn you about it, and somehow the program doesn't immediately crash or do something obviously wrong because of it, the mistake can lurk there, hidden, sometimes for years, until it causes a really big problem.



                  So it turns out that, most of the time, warnings are a good idea, after all. Even the experienced programmers have learned (actually, it's "especially the experienced programmers have learned") that, on balance, the warnings tend to do more good than harm. For every time you did something wrong deliberately and the warning was a nuisance, there are probably at least ten times you did something wrong by accident and the warning saved you from further trouble. And most warnings can be disabled or worked around for those few times when you really want to do the "wrong" thing.



                  (A classic example of such a "mistake" is the test if(a = b). Most of the time, this is a mistake, so most compilers these days warn about it -- some even by default. But if you really wanted to both assign b to a and test the result, you can disable the warning by typing if((a = b)).)



                  The second question is, why would you want to ask the compiler to treat warnings as errors? I'd say it's because of human nature, specifically, the all-too-easy reaction of saying "Oh, that's just a warning, that's not so important, I'll clean that up later." But if you're a procrastinator (and I don't know about you, but I'm a terrible procrastinator) it's easy to put off the necessarily cleanup for basically ever -- and if you get into the habit of ignoring warnings, it gets easier and easier to miss an important warning message that's sitting there, unnoticed, in the midst of all the ones you're ignoring.



                  So asking the compiler to treat warnings as errors is a little trick you can play on yourself to get around this human foible.



                  Personally, I'm not as insistent about treating warnings as errors. (In fact, if I'm honest, I can say that I virtually never enable that options in my "personal" programming.) But you can be sure I've got that option enabled at work, where our style guide (which I wrote) mandates its use. And I would say -- I suspect most professional programmers would say -- that any shop that doesn't treat warnings as errors in C is behaving irresponsibly, is not adhering to commonly-accepted industry best practices.






                  share|improve this answer















                  C is, famously, a rather low-level language as HLLs go. C++, though it might seem to be a considerably higher-level language than C, still shares a number of its traits. And one of those traits is that the languages were designed by programmers, for programmers -- and, specifically, programmers who knew what they were doing.



                  [For the rest of this answer I'm going to focus on C. Most of what I'll say also applies to C++, though perhaps not as strongly. Although as Bjarne Stroustrup has famously said, "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."]



                  If you know what you are doing -- really know what you are doing -- sometimes you may have to "break the rules". But most of the time, most of us will agree that well-intentioned rules keep us all out of trouble, and that wantonly breaking those rules all the time is a bad idea.



                  But in C and C++, there are surprisingly large numbers of things you can do that are "bad ideas" but which aren't formally "against the rules". Sometimes they're a bad idea some of the time (but might be defensible other times); sometimes they're a bad idea virtually all of the time. But the tradition has always been not to warn about these things -- because, again, the assumption is that programmers know what they are doing, they wouldn't be doing these things without a good reason, they'd be annoyed by a bunch of unnecessary warnings.



                  But of course not all programmers really know what they're doing. And, in particular, every C programmer (no matter how experienced) goes through a phase of being a beginning C programmer. And even experienced C programmers can get careless and make mistakes.



                  Finally, experience has shown not only that programmers do make mistakes, but that these mistakes can have real, serious consequences. If you make a mistake, and the compiler doesn't warn you about it, and somehow the program doesn't immediately crash or do something obviously wrong because of it, the mistake can lurk there, hidden, sometimes for years, until it causes a really big problem.



                  So it turns out that, most of the time, warnings are a good idea, after all. Even the experienced programmers have learned (actually, it's "especially the experienced programmers have learned") that, on balance, the warnings tend to do more good than harm. For every time you did something wrong deliberately and the warning was a nuisance, there are probably at least ten times you did something wrong by accident and the warning saved you from further trouble. And most warnings can be disabled or worked around for those few times when you really want to do the "wrong" thing.



                  (A classic example of such a "mistake" is the test if(a = b). Most of the time, this is a mistake, so most compilers these days warn about it -- some even by default. But if you really wanted to both assign b to a and test the result, you can disable the warning by typing if((a = b)).)



                  The second question is, why would you want to ask the compiler to treat warnings as errors? I'd say it's because of human nature, specifically, the all-too-easy reaction of saying "Oh, that's just a warning, that's not so important, I'll clean that up later." But if you're a procrastinator (and I don't know about you, but I'm a terrible procrastinator) it's easy to put off the necessarily cleanup for basically ever -- and if you get into the habit of ignoring warnings, it gets easier and easier to miss an important warning message that's sitting there, unnoticed, in the midst of all the ones you're ignoring.



                  So asking the compiler to treat warnings as errors is a little trick you can play on yourself to get around this human foible.



                  Personally, I'm not as insistent about treating warnings as errors. (In fact, if I'm honest, I can say that I virtually never enable that options in my "personal" programming.) But you can be sure I've got that option enabled at work, where our style guide (which I wrote) mandates its use. And I would say -- I suspect most professional programmers would say -- that any shop that doesn't treat warnings as errors in C is behaving irresponsibly, is not adhering to commonly-accepted industry best practices.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited yesterday

























                  answered yesterday









                  Steve SummitSteve Summit

                  21.1k2 gold badges29 silver badges52 bronze badges




                  21.1k2 gold badges29 silver badges52 bronze badges










                  • 1





                    "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                    – Dancrumb
                    7 hours ago






                  • 2





                    @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                    – Steve Summit
                    7 hours ago












                  • @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                    – alephzero
                    5 hours ago











                  • The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                    – Flydog57
                    4 hours ago












                  • 1





                    "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                    – Dancrumb
                    7 hours ago






                  • 2





                    @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                    – Steve Summit
                    7 hours ago












                  • @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                    – alephzero
                    5 hours ago











                  • The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                    – Flydog57
                    4 hours ago







                  1




                  1





                  "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                  – Dancrumb
                  7 hours ago





                  "programmers who knew what they were doing" - LOL; there's a "no true Scotsman" fallacy if ever I saw one :)

                  – Dancrumb
                  7 hours ago




                  2




                  2





                  @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                  – Steve Summit
                  7 hours ago






                  @Dancrumb LOL back atcha. I'm never quite sure I understand the No true Scotsman fallacy, but I like it, so this'll be a good exercise for me. I guess the application here is like this: "No C programmer would ever write if(a = b), therefore we don't need to warn about it." (Then someone produces a list of 10 critical bugs in 10 released products that result from this particular error.) "Okay, no experienced C programmer would ever write that..."

                  – Steve Summit
                  7 hours ago














                  @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                  – alephzero
                  5 hours ago





                  @SteveSummit but a really experienced C programmer may write if (returnCodeFromFoo = foo(bar)) and mean it, to capture and test the code in one place (Assume the only purpose of foo is to have side effects!) The fact that a really really experienced programmer may know this is not a good coding style is beside the point ;)

                  – alephzero
                  5 hours ago













                  The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                  – Flydog57
                  4 hours ago





                  The thing is, most very experienced programmers enable most, if not all, warnings. If they do want to use something like if (returnCodeFromFoo = foo(bar)), then they put a comment in and turn off the warning (so that when the maintenance programmer looks at it 4 years later, he/she will realize that the code is intentional. That said, I worked with someone who in (in Microsoft C++ land) insisted that combining /Wall with treating warnings as errors was the way to go. Uh, it isn't (unless you want to put in a lot of suppression comments).

                  – Flydog57
                  4 hours ago











                  13
















                  Warnings consist of the best advice some of the most skilled C++ developers could bake into an application. They're worth keeping around.



                  C++, being a Turing complete language, has plenty of cases where the compiler must simply trust that you knew what you are doing. However, there are many cases where the compiler can realize that you probably did not intend to write what you wrote. A classic example is printf() codes which don't match the arguments, or std::strings passed to printf (not that that ever happens to me!). In these cases, the code you wrote is not an error. It is a valid C++ expression with a valid interpretation for the compiler to act on. But the compiler has a strong hunch that you simply overlooked something which is easy for a modern compiler to detect. These are warnings. They are things that are obvious to a compiler, using all the strict rules of C++ at its disposal, that you might have overlooked.



                  Turning warnings off, or ignoring them, is like choosing to ignore free advice from those more skilled than you. Its a lesson in huberis that ends either when you fly too close to the sun and your wings melt, or a memory corruption error occurs. Between the two, I'll take falling from the sky any day!



                  "Treat warnings as errors" is the extreme version of this philosophy. The idea here is that you resolve every warning the compiler gives you -- you listen to every bit of free advice and act on it. Whether this is a good model for development for you depends on the team and what kind of product you are working on. It's the ascetic approach that a monk might have. For some, it works great. For others, it does not.



                  On many of my applications we do not treat warnings as errors. We do this because these particular applications need to compile on several platforms with several compilers of varying ages. Sometimes we find it is actually impossible to fix a warning on one side without it turning into a warning on another platform. So we are merely careful. We respect warnings, but we don't bend over backwards for them.






                  share|improve this answer




















                  • 2





                    What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                    – Kami Kaze
                    17 hours ago






                  • 1





                    @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                    – Caleth
                    13 hours ago











                  • @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                    – Cort Ammon
                    2 hours ago











                  • Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                    – Cort Ammon
                    2 hours ago















                  13
















                  Warnings consist of the best advice some of the most skilled C++ developers could bake into an application. They're worth keeping around.



                  C++, being a Turing complete language, has plenty of cases where the compiler must simply trust that you knew what you are doing. However, there are many cases where the compiler can realize that you probably did not intend to write what you wrote. A classic example is printf() codes which don't match the arguments, or std::strings passed to printf (not that that ever happens to me!). In these cases, the code you wrote is not an error. It is a valid C++ expression with a valid interpretation for the compiler to act on. But the compiler has a strong hunch that you simply overlooked something which is easy for a modern compiler to detect. These are warnings. They are things that are obvious to a compiler, using all the strict rules of C++ at its disposal, that you might have overlooked.



                  Turning warnings off, or ignoring them, is like choosing to ignore free advice from those more skilled than you. Its a lesson in huberis that ends either when you fly too close to the sun and your wings melt, or a memory corruption error occurs. Between the two, I'll take falling from the sky any day!



                  "Treat warnings as errors" is the extreme version of this philosophy. The idea here is that you resolve every warning the compiler gives you -- you listen to every bit of free advice and act on it. Whether this is a good model for development for you depends on the team and what kind of product you are working on. It's the ascetic approach that a monk might have. For some, it works great. For others, it does not.



                  On many of my applications we do not treat warnings as errors. We do this because these particular applications need to compile on several platforms with several compilers of varying ages. Sometimes we find it is actually impossible to fix a warning on one side without it turning into a warning on another platform. So we are merely careful. We respect warnings, but we don't bend over backwards for them.






                  share|improve this answer




















                  • 2





                    What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                    – Kami Kaze
                    17 hours ago






                  • 1





                    @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                    – Caleth
                    13 hours ago











                  • @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                    – Cort Ammon
                    2 hours ago











                  • Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                    – Cort Ammon
                    2 hours ago













                  13














                  13










                  13









                  Warnings consist of the best advice some of the most skilled C++ developers could bake into an application. They're worth keeping around.



                  C++, being a Turing complete language, has plenty of cases where the compiler must simply trust that you knew what you are doing. However, there are many cases where the compiler can realize that you probably did not intend to write what you wrote. A classic example is printf() codes which don't match the arguments, or std::strings passed to printf (not that that ever happens to me!). In these cases, the code you wrote is not an error. It is a valid C++ expression with a valid interpretation for the compiler to act on. But the compiler has a strong hunch that you simply overlooked something which is easy for a modern compiler to detect. These are warnings. They are things that are obvious to a compiler, using all the strict rules of C++ at its disposal, that you might have overlooked.



                  Turning warnings off, or ignoring them, is like choosing to ignore free advice from those more skilled than you. Its a lesson in huberis that ends either when you fly too close to the sun and your wings melt, or a memory corruption error occurs. Between the two, I'll take falling from the sky any day!



                  "Treat warnings as errors" is the extreme version of this philosophy. The idea here is that you resolve every warning the compiler gives you -- you listen to every bit of free advice and act on it. Whether this is a good model for development for you depends on the team and what kind of product you are working on. It's the ascetic approach that a monk might have. For some, it works great. For others, it does not.



                  On many of my applications we do not treat warnings as errors. We do this because these particular applications need to compile on several platforms with several compilers of varying ages. Sometimes we find it is actually impossible to fix a warning on one side without it turning into a warning on another platform. So we are merely careful. We respect warnings, but we don't bend over backwards for them.






                  share|improve this answer













                  Warnings consist of the best advice some of the most skilled C++ developers could bake into an application. They're worth keeping around.



                  C++, being a Turing complete language, has plenty of cases where the compiler must simply trust that you knew what you are doing. However, there are many cases where the compiler can realize that you probably did not intend to write what you wrote. A classic example is printf() codes which don't match the arguments, or std::strings passed to printf (not that that ever happens to me!). In these cases, the code you wrote is not an error. It is a valid C++ expression with a valid interpretation for the compiler to act on. But the compiler has a strong hunch that you simply overlooked something which is easy for a modern compiler to detect. These are warnings. They are things that are obvious to a compiler, using all the strict rules of C++ at its disposal, that you might have overlooked.



                  Turning warnings off, or ignoring them, is like choosing to ignore free advice from those more skilled than you. Its a lesson in huberis that ends either when you fly too close to the sun and your wings melt, or a memory corruption error occurs. Between the two, I'll take falling from the sky any day!



                  "Treat warnings as errors" is the extreme version of this philosophy. The idea here is that you resolve every warning the compiler gives you -- you listen to every bit of free advice and act on it. Whether this is a good model for development for you depends on the team and what kind of product you are working on. It's the ascetic approach that a monk might have. For some, it works great. For others, it does not.



                  On many of my applications we do not treat warnings as errors. We do this because these particular applications need to compile on several platforms with several compilers of varying ages. Sometimes we find it is actually impossible to fix a warning on one side without it turning into a warning on another platform. So we are merely careful. We respect warnings, but we don't bend over backwards for them.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 19 hours ago









                  Cort AmmonCort Ammon

                  6,04718 silver badges37 bronze badges




                  6,04718 silver badges37 bronze badges










                  • 2





                    What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                    – Kami Kaze
                    17 hours ago






                  • 1





                    @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                    – Caleth
                    13 hours ago











                  • @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                    – Cort Ammon
                    2 hours ago











                  • Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                    – Cort Ammon
                    2 hours ago












                  • 2





                    What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                    – Kami Kaze
                    17 hours ago






                  • 1





                    @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                    – Caleth
                    13 hours ago











                  • @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                    – Cort Ammon
                    2 hours ago











                  • Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                    – Cort Ammon
                    2 hours ago







                  2




                  2





                  What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                  – Kami Kaze
                  17 hours ago





                  What has C++ being Turing complete have to do with that. A lot of languages are turing complete and do not trust you if you do something wrong....

                  – Kami Kaze
                  17 hours ago




                  1




                  1





                  @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                  – Caleth
                  13 hours ago





                  @KamiKaze every language will have idiomatic mistakes (e.g. Java can't stop you writing an inconsistent equals / hashCode), and it's a quality of implementation issue which of those are reported.

                  – Caleth
                  13 hours ago













                  @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                  – Cort Ammon
                  2 hours ago





                  @KamiKaze The Turing completeness bit comes in to show that there are cases where the compiler cannot prove that your code will fail to work as planned. This is important because compilers cannot make all "wrong" code an error. Errors can only be reserved for behaviors that the language designers are certain will always be "wrong." (typically because it leads down paths that are inconsistent).

                  – Cort Ammon
                  2 hours ago













                  Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                  – Cort Ammon
                  2 hours ago





                  Which also points to the challenge with "all warnings are errors." Warnings are, by design, more opportunistic, triggering on some potentially correct code in exchange for triggering on wrong code more often. Warnings as errors leads to you not being able to exercise the full language's capabilities.

                  – Cort Ammon
                  2 hours ago











                  4
















                  Not only does handling the warnings make better code, it makes you a better programmer. Warnings will tell you about things that may seem little to you today, but one day that bad habit will come back and bite your head off.



                  Use the correct type, return that value, evaluate that return value. Take time and reflect "Is this really the correct type in this context?" "Do I need to return this?" And the biggie; "Is this code going to be portable for the next 10 years?"



                  Get into the habit of writing warning-free code in the first place.






                  share|improve this answer





























                    4
















                    Not only does handling the warnings make better code, it makes you a better programmer. Warnings will tell you about things that may seem little to you today, but one day that bad habit will come back and bite your head off.



                    Use the correct type, return that value, evaluate that return value. Take time and reflect "Is this really the correct type in this context?" "Do I need to return this?" And the biggie; "Is this code going to be portable for the next 10 years?"



                    Get into the habit of writing warning-free code in the first place.






                    share|improve this answer



























                      4














                      4










                      4









                      Not only does handling the warnings make better code, it makes you a better programmer. Warnings will tell you about things that may seem little to you today, but one day that bad habit will come back and bite your head off.



                      Use the correct type, return that value, evaluate that return value. Take time and reflect "Is this really the correct type in this context?" "Do I need to return this?" And the biggie; "Is this code going to be portable for the next 10 years?"



                      Get into the habit of writing warning-free code in the first place.






                      share|improve this answer













                      Not only does handling the warnings make better code, it makes you a better programmer. Warnings will tell you about things that may seem little to you today, but one day that bad habit will come back and bite your head off.



                      Use the correct type, return that value, evaluate that return value. Take time and reflect "Is this really the correct type in this context?" "Do I need to return this?" And the biggie; "Is this code going to be portable for the next 10 years?"



                      Get into the habit of writing warning-free code in the first place.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered 17 hours ago









                      RedSonjaRedSonja

                      2083 silver badges10 bronze badges




                      2083 silver badges10 bronze badges
























                          2
















                          Non-fixed warnings will, sooner or later, lead to errors in your code.




                          Debugging a segmentation fault, for instance, requires the programmer to trace the root (cause) of the fault, which usually is located in a prior place in your code than the line that eventually caused the segmentation fault.



                          It's very typical that the cause is a line for which the compiler had issued a warning that you ignored, and the line that caused the segmentation fault the line that eventually threw the error.



                          Fixing the warning leads to fixing the problem.. A classic!



                          A demonstration of the above.. Consider the following code:



                          #include <stdio.h>

                          int main(void)
                          char* str = "Hello world!";
                          int idx;

                          // Colossal amount of code here, irrelevant to 'idx'

                          printf("%cn", str[idx]);

                          return 0;



                          which when compiled with "Wextra" flag passed to GCC, gives:



                          main.c: In function 'main':
                          main.c:9:21: warning: 'idx' is used uninitialized in this function [-Wuninitialized]
                          9 | printf("%cn", str[idx]);
                          | ^


                          which I could ignore and execute the code anyway.. And then I would witness a "grand" segmentation fault, as my IP epicurus professor used to say:




                          Segmentation fault




                          In order to debug this in a real world scenario, one would start from the line that causes the segmentation fault and attempt to trace what is the root of the cause.. They would have to search for what has happened to i and str inside that colossal amount of code over there...



                          Until, one day, they found theirselves in the situation where the discover that i is used uninitialized, thus it has a garbage value, which results in indexing the string (way) beyond out of its bounds, which leads to a segmentation fault.



                          If only they hadn't ignored the warning, they would have found the bug immediately!






                          share|improve this answer





























                            2
















                            Non-fixed warnings will, sooner or later, lead to errors in your code.




                            Debugging a segmentation fault, for instance, requires the programmer to trace the root (cause) of the fault, which usually is located in a prior place in your code than the line that eventually caused the segmentation fault.



                            It's very typical that the cause is a line for which the compiler had issued a warning that you ignored, and the line that caused the segmentation fault the line that eventually threw the error.



                            Fixing the warning leads to fixing the problem.. A classic!



                            A demonstration of the above.. Consider the following code:



                            #include <stdio.h>

                            int main(void)
                            char* str = "Hello world!";
                            int idx;

                            // Colossal amount of code here, irrelevant to 'idx'

                            printf("%cn", str[idx]);

                            return 0;



                            which when compiled with "Wextra" flag passed to GCC, gives:



                            main.c: In function 'main':
                            main.c:9:21: warning: 'idx' is used uninitialized in this function [-Wuninitialized]
                            9 | printf("%cn", str[idx]);
                            | ^


                            which I could ignore and execute the code anyway.. And then I would witness a "grand" segmentation fault, as my IP epicurus professor used to say:




                            Segmentation fault




                            In order to debug this in a real world scenario, one would start from the line that causes the segmentation fault and attempt to trace what is the root of the cause.. They would have to search for what has happened to i and str inside that colossal amount of code over there...



                            Until, one day, they found theirselves in the situation where the discover that i is used uninitialized, thus it has a garbage value, which results in indexing the string (way) beyond out of its bounds, which leads to a segmentation fault.



                            If only they hadn't ignored the warning, they would have found the bug immediately!






                            share|improve this answer



























                              2














                              2










                              2









                              Non-fixed warnings will, sooner or later, lead to errors in your code.




                              Debugging a segmentation fault, for instance, requires the programmer to trace the root (cause) of the fault, which usually is located in a prior place in your code than the line that eventually caused the segmentation fault.



                              It's very typical that the cause is a line for which the compiler had issued a warning that you ignored, and the line that caused the segmentation fault the line that eventually threw the error.



                              Fixing the warning leads to fixing the problem.. A classic!



                              A demonstration of the above.. Consider the following code:



                              #include <stdio.h>

                              int main(void)
                              char* str = "Hello world!";
                              int idx;

                              // Colossal amount of code here, irrelevant to 'idx'

                              printf("%cn", str[idx]);

                              return 0;



                              which when compiled with "Wextra" flag passed to GCC, gives:



                              main.c: In function 'main':
                              main.c:9:21: warning: 'idx' is used uninitialized in this function [-Wuninitialized]
                              9 | printf("%cn", str[idx]);
                              | ^


                              which I could ignore and execute the code anyway.. And then I would witness a "grand" segmentation fault, as my IP epicurus professor used to say:




                              Segmentation fault




                              In order to debug this in a real world scenario, one would start from the line that causes the segmentation fault and attempt to trace what is the root of the cause.. They would have to search for what has happened to i and str inside that colossal amount of code over there...



                              Until, one day, they found theirselves in the situation where the discover that i is used uninitialized, thus it has a garbage value, which results in indexing the string (way) beyond out of its bounds, which leads to a segmentation fault.



                              If only they hadn't ignored the warning, they would have found the bug immediately!






                              share|improve this answer













                              Non-fixed warnings will, sooner or later, lead to errors in your code.




                              Debugging a segmentation fault, for instance, requires the programmer to trace the root (cause) of the fault, which usually is located in a prior place in your code than the line that eventually caused the segmentation fault.



                              It's very typical that the cause is a line for which the compiler had issued a warning that you ignored, and the line that caused the segmentation fault the line that eventually threw the error.



                              Fixing the warning leads to fixing the problem.. A classic!



                              A demonstration of the above.. Consider the following code:



                              #include <stdio.h>

                              int main(void)
                              char* str = "Hello world!";
                              int idx;

                              // Colossal amount of code here, irrelevant to 'idx'

                              printf("%cn", str[idx]);

                              return 0;



                              which when compiled with "Wextra" flag passed to GCC, gives:



                              main.c: In function 'main':
                              main.c:9:21: warning: 'idx' is used uninitialized in this function [-Wuninitialized]
                              9 | printf("%cn", str[idx]);
                              | ^


                              which I could ignore and execute the code anyway.. And then I would witness a "grand" segmentation fault, as my IP epicurus professor used to say:




                              Segmentation fault




                              In order to debug this in a real world scenario, one would start from the line that causes the segmentation fault and attempt to trace what is the root of the cause.. They would have to search for what has happened to i and str inside that colossal amount of code over there...



                              Until, one day, they found theirselves in the situation where the discover that i is used uninitialized, thus it has a garbage value, which results in indexing the string (way) beyond out of its bounds, which leads to a segmentation fault.



                              If only they hadn't ignored the warning, they would have found the bug immediately!







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered 4 hours ago









                              gsamarasgsamaras

                              54.9k27 gold badges116 silver badges207 bronze badges




                              54.9k27 gold badges116 silver badges207 bronze badges
























                                  1
















                                  You should always enable compiler warnings because the compiler can often tell you what's wrong with your code. To do this, you pass -Wall -Wextra to the compiler.



                                  You should usually treat warnings as errors because often the warnings usually signify that there's something wrong with your code. However, it's often very easy to ignore these errors. Therefore, treating them as errors will cause the build to fail so you can't ignore the errors. To treat warnings as errors, pass -Werror to the compiler.






                                  share|improve this answer





























                                    1
















                                    You should always enable compiler warnings because the compiler can often tell you what's wrong with your code. To do this, you pass -Wall -Wextra to the compiler.



                                    You should usually treat warnings as errors because often the warnings usually signify that there's something wrong with your code. However, it's often very easy to ignore these errors. Therefore, treating them as errors will cause the build to fail so you can't ignore the errors. To treat warnings as errors, pass -Werror to the compiler.






                                    share|improve this answer



























                                      1














                                      1










                                      1









                                      You should always enable compiler warnings because the compiler can often tell you what's wrong with your code. To do this, you pass -Wall -Wextra to the compiler.



                                      You should usually treat warnings as errors because often the warnings usually signify that there's something wrong with your code. However, it's often very easy to ignore these errors. Therefore, treating them as errors will cause the build to fail so you can't ignore the errors. To treat warnings as errors, pass -Werror to the compiler.






                                      share|improve this answer













                                      You should always enable compiler warnings because the compiler can often tell you what's wrong with your code. To do this, you pass -Wall -Wextra to the compiler.



                                      You should usually treat warnings as errors because often the warnings usually signify that there's something wrong with your code. However, it's often very easy to ignore these errors. Therefore, treating them as errors will cause the build to fail so you can't ignore the errors. To treat warnings as errors, pass -Werror to the compiler.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered 12 hours ago









                                      JL2210JL2210

                                      3,8724 gold badges12 silver badges41 bronze badges




                                      3,8724 gold badges12 silver badges41 bronze badges
























                                          0
















                                          Some warning may mean possible semantic error in code or possible UB. E.g. ; after if(), unused variable, global variable masked by local, or comparison of signed and unsigned. Many warnings are related to static code analyzer in compiler or to breaches of ISO standard detectable at compile time, which "require diagnostics". While those occurrences may be legal in one particular case, they would be result of design issues most of time.



                                          Some compilers, e.g. gcc, have a command line option to activate "warnings as errors" mode, it's a nice , if cruel, tool to educate novice coders.






                                          share|improve this answer





























                                            0
















                                            Some warning may mean possible semantic error in code or possible UB. E.g. ; after if(), unused variable, global variable masked by local, or comparison of signed and unsigned. Many warnings are related to static code analyzer in compiler or to breaches of ISO standard detectable at compile time, which "require diagnostics". While those occurrences may be legal in one particular case, they would be result of design issues most of time.



                                            Some compilers, e.g. gcc, have a command line option to activate "warnings as errors" mode, it's a nice , if cruel, tool to educate novice coders.






                                            share|improve this answer



























                                              0














                                              0










                                              0









                                              Some warning may mean possible semantic error in code or possible UB. E.g. ; after if(), unused variable, global variable masked by local, or comparison of signed and unsigned. Many warnings are related to static code analyzer in compiler or to breaches of ISO standard detectable at compile time, which "require diagnostics". While those occurrences may be legal in one particular case, they would be result of design issues most of time.



                                              Some compilers, e.g. gcc, have a command line option to activate "warnings as errors" mode, it's a nice , if cruel, tool to educate novice coders.






                                              share|improve this answer













                                              Some warning may mean possible semantic error in code or possible UB. E.g. ; after if(), unused variable, global variable masked by local, or comparison of signed and unsigned. Many warnings are related to static code analyzer in compiler or to breaches of ISO standard detectable at compile time, which "require diagnostics". While those occurrences may be legal in one particular case, they would be result of design issues most of time.



                                              Some compilers, e.g. gcc, have a command line option to activate "warnings as errors" mode, it's a nice , if cruel, tool to educate novice coders.







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered yesterday









                                              Swift - Friday PieSwift - Friday Pie

                                              4,4711 gold badge11 silver badges27 bronze badges




                                              4,4711 gold badge11 silver badges27 bronze badges
























                                                  0
















                                                  Treating warnings as errors is just a mean of self-discipline: you were compiling a program to test that shiny new feature, but you can't until you fix the sloppy parts. There is no additional information Werror provides, it just sets priorities very clearly:




                                                  Don't add new code until you fix problems in the existing code




                                                  It's really the mindset that's important, not the tools. Compiler diagnostics output is a tool. MISRA (for embedded C) is another tool. It doesn't matter which one you use, but arguably compiler warnings is the easiest tool you can get (it's just one flag to set) and the signal to noise ratio is very high. So there's no reason not to use it.



                                                  No tool is infallible. If you write const float pi = 3.14;, no tool will tell you that you defined π with a bad precision which may lead to problems down the road. Most tools won't raise an eyebrow on if(tmp < 42), even if it's commonly known that giving variables meaningless names and using magic numbers is a way to disaster in big projects. You have to understand that any "quick test" code you write is just that: a test, and you have to get it right before you move on to other tasks, while you still see its shortcomings. If you leave that codes as is, debugging if after you spend two months adding new features will be significantly harder.



                                                  Once you get into the right mindset, there is no point in using Werror. Having warnings as warnings will allow you to take an informed decision whether it still makes sense to run that debug session you were about to start, or to abort it and fix the warnings first.






                                                  share|improve this answer































                                                    0
















                                                    Treating warnings as errors is just a mean of self-discipline: you were compiling a program to test that shiny new feature, but you can't until you fix the sloppy parts. There is no additional information Werror provides, it just sets priorities very clearly:




                                                    Don't add new code until you fix problems in the existing code




                                                    It's really the mindset that's important, not the tools. Compiler diagnostics output is a tool. MISRA (for embedded C) is another tool. It doesn't matter which one you use, but arguably compiler warnings is the easiest tool you can get (it's just one flag to set) and the signal to noise ratio is very high. So there's no reason not to use it.



                                                    No tool is infallible. If you write const float pi = 3.14;, no tool will tell you that you defined π with a bad precision which may lead to problems down the road. Most tools won't raise an eyebrow on if(tmp < 42), even if it's commonly known that giving variables meaningless names and using magic numbers is a way to disaster in big projects. You have to understand that any "quick test" code you write is just that: a test, and you have to get it right before you move on to other tasks, while you still see its shortcomings. If you leave that codes as is, debugging if after you spend two months adding new features will be significantly harder.



                                                    Once you get into the right mindset, there is no point in using Werror. Having warnings as warnings will allow you to take an informed decision whether it still makes sense to run that debug session you were about to start, or to abort it and fix the warnings first.






                                                    share|improve this answer





























                                                      0














                                                      0










                                                      0









                                                      Treating warnings as errors is just a mean of self-discipline: you were compiling a program to test that shiny new feature, but you can't until you fix the sloppy parts. There is no additional information Werror provides, it just sets priorities very clearly:




                                                      Don't add new code until you fix problems in the existing code




                                                      It's really the mindset that's important, not the tools. Compiler diagnostics output is a tool. MISRA (for embedded C) is another tool. It doesn't matter which one you use, but arguably compiler warnings is the easiest tool you can get (it's just one flag to set) and the signal to noise ratio is very high. So there's no reason not to use it.



                                                      No tool is infallible. If you write const float pi = 3.14;, no tool will tell you that you defined π with a bad precision which may lead to problems down the road. Most tools won't raise an eyebrow on if(tmp < 42), even if it's commonly known that giving variables meaningless names and using magic numbers is a way to disaster in big projects. You have to understand that any "quick test" code you write is just that: a test, and you have to get it right before you move on to other tasks, while you still see its shortcomings. If you leave that codes as is, debugging if after you spend two months adding new features will be significantly harder.



                                                      Once you get into the right mindset, there is no point in using Werror. Having warnings as warnings will allow you to take an informed decision whether it still makes sense to run that debug session you were about to start, or to abort it and fix the warnings first.






                                                      share|improve this answer















                                                      Treating warnings as errors is just a mean of self-discipline: you were compiling a program to test that shiny new feature, but you can't until you fix the sloppy parts. There is no additional information Werror provides, it just sets priorities very clearly:




                                                      Don't add new code until you fix problems in the existing code




                                                      It's really the mindset that's important, not the tools. Compiler diagnostics output is a tool. MISRA (for embedded C) is another tool. It doesn't matter which one you use, but arguably compiler warnings is the easiest tool you can get (it's just one flag to set) and the signal to noise ratio is very high. So there's no reason not to use it.



                                                      No tool is infallible. If you write const float pi = 3.14;, no tool will tell you that you defined π with a bad precision which may lead to problems down the road. Most tools won't raise an eyebrow on if(tmp < 42), even if it's commonly known that giving variables meaningless names and using magic numbers is a way to disaster in big projects. You have to understand that any "quick test" code you write is just that: a test, and you have to get it right before you move on to other tasks, while you still see its shortcomings. If you leave that codes as is, debugging if after you spend two months adding new features will be significantly harder.



                                                      Once you get into the right mindset, there is no point in using Werror. Having warnings as warnings will allow you to take an informed decision whether it still makes sense to run that debug session you were about to start, or to abort it and fix the warnings first.







                                                      share|improve this answer














                                                      share|improve this answer



                                                      share|improve this answer








                                                      edited 16 hours ago

























                                                      answered 16 hours ago









                                                      Dmitry GrigoryevDmitry Grigoryev

                                                      2,1891 gold badge17 silver badges41 bronze badges




                                                      2,1891 gold badge17 silver badges41 bronze badges
























                                                          0
















                                                          This is a specific answer to C, and why this is far more important to C than to anything else.



                                                          #include <stdio.h>
                                                          int main()

                                                          FILE *fp = "some string";



                                                          This code compiles with a warning. What are and should be errors in just about every other language on the planet (barring assembly language) are warnings in C. Warnings in C are almost always errors in disguise. Warnings should be fixed, not suppressed.



                                                          This was also the reason for the high rantyness about some MS non-secure API warnings. Most people programming C have learned the hard way to treat warnings as errors and this stuff appeared that just wasn't the same kind of thing and wanted non-portable fixes.






                                                          share|improve this answer





























                                                            0
















                                                            This is a specific answer to C, and why this is far more important to C than to anything else.



                                                            #include <stdio.h>
                                                            int main()

                                                            FILE *fp = "some string";



                                                            This code compiles with a warning. What are and should be errors in just about every other language on the planet (barring assembly language) are warnings in C. Warnings in C are almost always errors in disguise. Warnings should be fixed, not suppressed.



                                                            This was also the reason for the high rantyness about some MS non-secure API warnings. Most people programming C have learned the hard way to treat warnings as errors and this stuff appeared that just wasn't the same kind of thing and wanted non-portable fixes.






                                                            share|improve this answer



























                                                              0














                                                              0










                                                              0









                                                              This is a specific answer to C, and why this is far more important to C than to anything else.



                                                              #include <stdio.h>
                                                              int main()

                                                              FILE *fp = "some string";



                                                              This code compiles with a warning. What are and should be errors in just about every other language on the planet (barring assembly language) are warnings in C. Warnings in C are almost always errors in disguise. Warnings should be fixed, not suppressed.



                                                              This was also the reason for the high rantyness about some MS non-secure API warnings. Most people programming C have learned the hard way to treat warnings as errors and this stuff appeared that just wasn't the same kind of thing and wanted non-portable fixes.






                                                              share|improve this answer













                                                              This is a specific answer to C, and why this is far more important to C than to anything else.



                                                              #include <stdio.h>
                                                              int main()

                                                              FILE *fp = "some string";



                                                              This code compiles with a warning. What are and should be errors in just about every other language on the planet (barring assembly language) are warnings in C. Warnings in C are almost always errors in disguise. Warnings should be fixed, not suppressed.



                                                              This was also the reason for the high rantyness about some MS non-secure API warnings. Most people programming C have learned the hard way to treat warnings as errors and this stuff appeared that just wasn't the same kind of thing and wanted non-portable fixes.







                                                              share|improve this answer












                                                              share|improve this answer



                                                              share|improve this answer










                                                              answered 3 hours ago









                                                              JoshuaJoshua

                                                              26.5k5 gold badges50 silver badges108 bronze badges




                                                              26.5k5 gold badges50 silver badges108 bronze badges
























                                                                  0
















                                                                  The other answers are excellent and I don't want to repeat what they have said.



                                                                  One other aspect to "why enable warnings" that hasn't properly been touched on is that they help enormously with code maintenance. When you write a program of significant size, it becomes impossible to keep the whole thing in your head at once. You typically have a function or three that you're actively writing and thinking about, and perhaps a file or three on your screen that you can refer to, but the bulk of the program exists in the background somewhere and you have to trust that it keeps working.



                                                                  Having warnings on, and having them as energetic and in your face as possible, helps to alert you if something you change makes trouble for something that you can't see.



                                                                  Take for example, the clang warning -Wswitch-enum. That triggers a warning if you use a switch on an enum and miss out one of the possible enum values. It's something you might think would be an unlikely mistake to make: you probably at least looked at the list of enum values when you wrote the switch statement. You might even have an IDE that generated the switch options for you, leaving no room for human error.



                                                                  This warning really comes into its own when, six months later you add another possible entry to the enum. Again, if you're thinking about the code in question you'll probably be fine. But if this enum is used for multiple different purposes and it's for one of those that you need the extra option, it's very easy to forget to update a switch in a file you haven't touched for 6 months.



                                                                  You can think of warnings in the same way as you'd think of automated test cases: they help you make sure that the code is sensible and doing what you need when you first write it, but they help even more to make sure that it keeps doing what you need while you prod at it. The difference is that test cases work very narrowly to the requirements of your code and you have to write them, while warnings work broadly to sensible standards for almost all code, and they're very generously supplied by the boffins who make the compilers.






                                                                  share|improve this answer





























                                                                    0
















                                                                    The other answers are excellent and I don't want to repeat what they have said.



                                                                    One other aspect to "why enable warnings" that hasn't properly been touched on is that they help enormously with code maintenance. When you write a program of significant size, it becomes impossible to keep the whole thing in your head at once. You typically have a function or three that you're actively writing and thinking about, and perhaps a file or three on your screen that you can refer to, but the bulk of the program exists in the background somewhere and you have to trust that it keeps working.



                                                                    Having warnings on, and having them as energetic and in your face as possible, helps to alert you if something you change makes trouble for something that you can't see.



                                                                    Take for example, the clang warning -Wswitch-enum. That triggers a warning if you use a switch on an enum and miss out one of the possible enum values. It's something you might think would be an unlikely mistake to make: you probably at least looked at the list of enum values when you wrote the switch statement. You might even have an IDE that generated the switch options for you, leaving no room for human error.



                                                                    This warning really comes into its own when, six months later you add another possible entry to the enum. Again, if you're thinking about the code in question you'll probably be fine. But if this enum is used for multiple different purposes and it's for one of those that you need the extra option, it's very easy to forget to update a switch in a file you haven't touched for 6 months.



                                                                    You can think of warnings in the same way as you'd think of automated test cases: they help you make sure that the code is sensible and doing what you need when you first write it, but they help even more to make sure that it keeps doing what you need while you prod at it. The difference is that test cases work very narrowly to the requirements of your code and you have to write them, while warnings work broadly to sensible standards for almost all code, and they're very generously supplied by the boffins who make the compilers.






                                                                    share|improve this answer



























                                                                      0














                                                                      0










                                                                      0









                                                                      The other answers are excellent and I don't want to repeat what they have said.



                                                                      One other aspect to "why enable warnings" that hasn't properly been touched on is that they help enormously with code maintenance. When you write a program of significant size, it becomes impossible to keep the whole thing in your head at once. You typically have a function or three that you're actively writing and thinking about, and perhaps a file or three on your screen that you can refer to, but the bulk of the program exists in the background somewhere and you have to trust that it keeps working.



                                                                      Having warnings on, and having them as energetic and in your face as possible, helps to alert you if something you change makes trouble for something that you can't see.



                                                                      Take for example, the clang warning -Wswitch-enum. That triggers a warning if you use a switch on an enum and miss out one of the possible enum values. It's something you might think would be an unlikely mistake to make: you probably at least looked at the list of enum values when you wrote the switch statement. You might even have an IDE that generated the switch options for you, leaving no room for human error.



                                                                      This warning really comes into its own when, six months later you add another possible entry to the enum. Again, if you're thinking about the code in question you'll probably be fine. But if this enum is used for multiple different purposes and it's for one of those that you need the extra option, it's very easy to forget to update a switch in a file you haven't touched for 6 months.



                                                                      You can think of warnings in the same way as you'd think of automated test cases: they help you make sure that the code is sensible and doing what you need when you first write it, but they help even more to make sure that it keeps doing what you need while you prod at it. The difference is that test cases work very narrowly to the requirements of your code and you have to write them, while warnings work broadly to sensible standards for almost all code, and they're very generously supplied by the boffins who make the compilers.






                                                                      share|improve this answer













                                                                      The other answers are excellent and I don't want to repeat what they have said.



                                                                      One other aspect to "why enable warnings" that hasn't properly been touched on is that they help enormously with code maintenance. When you write a program of significant size, it becomes impossible to keep the whole thing in your head at once. You typically have a function or three that you're actively writing and thinking about, and perhaps a file or three on your screen that you can refer to, but the bulk of the program exists in the background somewhere and you have to trust that it keeps working.



                                                                      Having warnings on, and having them as energetic and in your face as possible, helps to alert you if something you change makes trouble for something that you can't see.



                                                                      Take for example, the clang warning -Wswitch-enum. That triggers a warning if you use a switch on an enum and miss out one of the possible enum values. It's something you might think would be an unlikely mistake to make: you probably at least looked at the list of enum values when you wrote the switch statement. You might even have an IDE that generated the switch options for you, leaving no room for human error.



                                                                      This warning really comes into its own when, six months later you add another possible entry to the enum. Again, if you're thinking about the code in question you'll probably be fine. But if this enum is used for multiple different purposes and it's for one of those that you need the extra option, it's very easy to forget to update a switch in a file you haven't touched for 6 months.



                                                                      You can think of warnings in the same way as you'd think of automated test cases: they help you make sure that the code is sensible and doing what you need when you first write it, but they help even more to make sure that it keeps doing what you need while you prod at it. The difference is that test cases work very narrowly to the requirements of your code and you have to write them, while warnings work broadly to sensible standards for almost all code, and they're very generously supplied by the boffins who make the compilers.







                                                                      share|improve this answer












                                                                      share|improve this answer



                                                                      share|improve this answer










                                                                      answered 3 hours ago









                                                                      JosiahJosiah

                                                                      2832 silver badges11 bronze badges




                                                                      2832 silver badges11 bronze badges
























                                                                          0
















                                                                          As someone who works with legacy embedded C code, enabling compiler warnings has helped show a lot of weakness and areas to investigate when proposing fixes. In gcc utilizing -Wall and -Wextra and even -Wshadow have become vital. I'm not going to go every single hazard, but I'll list a few that have popped up that helped show code issues.



                                                                          Variables being left behind



                                                                          This one can easily point to unfinished work and areas that might not be utilizing all of the passed variables which could be an issue. Let's look at a simple function that may trigger this:



                                                                          int foo(int a, int b)

                                                                          int c = 0;

                                                                          if (a > 0)

                                                                          return a;

                                                                          return 0;



                                                                          Just compiling this without -Wall or -Wextra returns no issues. -Wall will tell you though that c is never used:




                                                                          foo.c: In function ‘foo’:



                                                                          foo.c:9:20: warning: unused variable ‘c’
                                                                          [-Wunused-variable]




                                                                          -Wextra will also tell you that your parameter b doesn't do anything:




                                                                          foo.c: In function ‘foo’:



                                                                          foo.c:9:20: warning: unused variable ‘c’
                                                                          [-Wunused-variable]



                                                                          foo.c:7:20: warning: unused parameter ‘b’ [-Wunused-parameter] int foo(int a, int b)




                                                                          Global Variable shadowing



                                                                          This one bit hard and did not show up until -Wshadow was used. Let's modify the example above to just add, but there just happens to be a global with the same name as a local which causes a lot of confusion when trying to use both.



                                                                          int c = 7;

                                                                          int foo(int a, int b)

                                                                          int c = a + b;
                                                                          return c;



                                                                          When -Wshadow was turned on, it's easy to spot this issue.




                                                                          foo.c:11:9: warning: declaration of ‘c’ shadows a global declaration
                                                                          [-Wshadow]



                                                                          foo.c:1:5: note: shadowed declaration is here




                                                                          Format strings



                                                                          This doesn't require any extra flags in gcc, but it has still be the source of problems in the past. A simple function trying to print data, but has a formatting error could look like this:



                                                                          void foo(const char * str)

                                                                          printf("str = %dn", str);



                                                                          This doesn't print the string since the formatting flag is wrong and gcc will happily tell you this is probably not what you wanted:




                                                                          foo.c: In function ‘foo’:



                                                                          foo.c:10:12: warning: format ‘%d’ expects
                                                                          argument of type ‘int’, but argument 2 has type ‘const char *’
                                                                          [-Wformat=]





                                                                          These are just three of the many things the compiler can double check for you. There are a lot of others like using an uninitialized variable that others have pointed out.






                                                                          share|improve this answer





























                                                                            0
















                                                                            As someone who works with legacy embedded C code, enabling compiler warnings has helped show a lot of weakness and areas to investigate when proposing fixes. In gcc utilizing -Wall and -Wextra and even -Wshadow have become vital. I'm not going to go every single hazard, but I'll list a few that have popped up that helped show code issues.



                                                                            Variables being left behind



                                                                            This one can easily point to unfinished work and areas that might not be utilizing all of the passed variables which could be an issue. Let's look at a simple function that may trigger this:



                                                                            int foo(int a, int b)

                                                                            int c = 0;

                                                                            if (a > 0)

                                                                            return a;

                                                                            return 0;



                                                                            Just compiling this without -Wall or -Wextra returns no issues. -Wall will tell you though that c is never used:




                                                                            foo.c: In function ‘foo’:



                                                                            foo.c:9:20: warning: unused variable ‘c’
                                                                            [-Wunused-variable]




                                                                            -Wextra will also tell you that your parameter b doesn't do anything:




                                                                            foo.c: In function ‘foo’:



                                                                            foo.c:9:20: warning: unused variable ‘c’
                                                                            [-Wunused-variable]



                                                                            foo.c:7:20: warning: unused parameter ‘b’ [-Wunused-parameter] int foo(int a, int b)




                                                                            Global Variable shadowing



                                                                            This one bit hard and did not show up until -Wshadow was used. Let's modify the example above to just add, but there just happens to be a global with the same name as a local which causes a lot of confusion when trying to use both.



                                                                            int c = 7;

                                                                            int foo(int a, int b)

                                                                            int c = a + b;
                                                                            return c;



                                                                            When -Wshadow was turned on, it's easy to spot this issue.




                                                                            foo.c:11:9: warning: declaration of ‘c’ shadows a global declaration
                                                                            [-Wshadow]



                                                                            foo.c:1:5: note: shadowed declaration is here




                                                                            Format strings



                                                                            This doesn't require any extra flags in gcc, but it has still be the source of problems in the past. A simple function trying to print data, but has a formatting error could look like this:



                                                                            void foo(const char * str)

                                                                            printf("str = %dn", str);



                                                                            This doesn't print the string since the formatting flag is wrong and gcc will happily tell you this is probably not what you wanted:




                                                                            foo.c: In function ‘foo’:



                                                                            foo.c:10:12: warning: format ‘%d’ expects
                                                                            argument of type ‘int’, but argument 2 has type ‘const char *’
                                                                            [-Wformat=]





                                                                            These are just three of the many things the compiler can double check for you. There are a lot of others like using an uninitialized variable that others have pointed out.






                                                                            share|improve this answer



























                                                                              0














                                                                              0










                                                                              0









                                                                              As someone who works with legacy embedded C code, enabling compiler warnings has helped show a lot of weakness and areas to investigate when proposing fixes. In gcc utilizing -Wall and -Wextra and even -Wshadow have become vital. I'm not going to go every single hazard, but I'll list a few that have popped up that helped show code issues.



                                                                              Variables being left behind



                                                                              This one can easily point to unfinished work and areas that might not be utilizing all of the passed variables which could be an issue. Let's look at a simple function that may trigger this:



                                                                              int foo(int a, int b)

                                                                              int c = 0;

                                                                              if (a > 0)

                                                                              return a;

                                                                              return 0;



                                                                              Just compiling this without -Wall or -Wextra returns no issues. -Wall will tell you though that c is never used:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:9:20: warning: unused variable ‘c’
                                                                              [-Wunused-variable]




                                                                              -Wextra will also tell you that your parameter b doesn't do anything:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:9:20: warning: unused variable ‘c’
                                                                              [-Wunused-variable]



                                                                              foo.c:7:20: warning: unused parameter ‘b’ [-Wunused-parameter] int foo(int a, int b)




                                                                              Global Variable shadowing



                                                                              This one bit hard and did not show up until -Wshadow was used. Let's modify the example above to just add, but there just happens to be a global with the same name as a local which causes a lot of confusion when trying to use both.



                                                                              int c = 7;

                                                                              int foo(int a, int b)

                                                                              int c = a + b;
                                                                              return c;



                                                                              When -Wshadow was turned on, it's easy to spot this issue.




                                                                              foo.c:11:9: warning: declaration of ‘c’ shadows a global declaration
                                                                              [-Wshadow]



                                                                              foo.c:1:5: note: shadowed declaration is here




                                                                              Format strings



                                                                              This doesn't require any extra flags in gcc, but it has still be the source of problems in the past. A simple function trying to print data, but has a formatting error could look like this:



                                                                              void foo(const char * str)

                                                                              printf("str = %dn", str);



                                                                              This doesn't print the string since the formatting flag is wrong and gcc will happily tell you this is probably not what you wanted:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:10:12: warning: format ‘%d’ expects
                                                                              argument of type ‘int’, but argument 2 has type ‘const char *’
                                                                              [-Wformat=]





                                                                              These are just three of the many things the compiler can double check for you. There are a lot of others like using an uninitialized variable that others have pointed out.






                                                                              share|improve this answer













                                                                              As someone who works with legacy embedded C code, enabling compiler warnings has helped show a lot of weakness and areas to investigate when proposing fixes. In gcc utilizing -Wall and -Wextra and even -Wshadow have become vital. I'm not going to go every single hazard, but I'll list a few that have popped up that helped show code issues.



                                                                              Variables being left behind



                                                                              This one can easily point to unfinished work and areas that might not be utilizing all of the passed variables which could be an issue. Let's look at a simple function that may trigger this:



                                                                              int foo(int a, int b)

                                                                              int c = 0;

                                                                              if (a > 0)

                                                                              return a;

                                                                              return 0;



                                                                              Just compiling this without -Wall or -Wextra returns no issues. -Wall will tell you though that c is never used:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:9:20: warning: unused variable ‘c’
                                                                              [-Wunused-variable]




                                                                              -Wextra will also tell you that your parameter b doesn't do anything:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:9:20: warning: unused variable ‘c’
                                                                              [-Wunused-variable]



                                                                              foo.c:7:20: warning: unused parameter ‘b’ [-Wunused-parameter] int foo(int a, int b)




                                                                              Global Variable shadowing



                                                                              This one bit hard and did not show up until -Wshadow was used. Let's modify the example above to just add, but there just happens to be a global with the same name as a local which causes a lot of confusion when trying to use both.



                                                                              int c = 7;

                                                                              int foo(int a, int b)

                                                                              int c = a + b;
                                                                              return c;



                                                                              When -Wshadow was turned on, it's easy to spot this issue.




                                                                              foo.c:11:9: warning: declaration of ‘c’ shadows a global declaration
                                                                              [-Wshadow]



                                                                              foo.c:1:5: note: shadowed declaration is here




                                                                              Format strings



                                                                              This doesn't require any extra flags in gcc, but it has still be the source of problems in the past. A simple function trying to print data, but has a formatting error could look like this:



                                                                              void foo(const char * str)

                                                                              printf("str = %dn", str);



                                                                              This doesn't print the string since the formatting flag is wrong and gcc will happily tell you this is probably not what you wanted:




                                                                              foo.c: In function ‘foo’:



                                                                              foo.c:10:12: warning: format ‘%d’ expects
                                                                              argument of type ‘int’, but argument 2 has type ‘const char *’
                                                                              [-Wformat=]





                                                                              These are just three of the many things the compiler can double check for you. There are a lot of others like using an uninitialized variable that others have pointed out.







                                                                              share|improve this answer












                                                                              share|improve this answer



                                                                              share|improve this answer










                                                                              answered 2 hours ago









                                                                              DomDom

                                                                              1,3144 gold badges22 silver badges31 bronze badges




                                                                              1,3144 gold badges22 silver badges31 bronze badges
























                                                                                  -8
















                                                                                  Take it easy: you don't have to, it is not necessary. -Wall and -Werror was designed by code-refactoring maniacs for themselves. But other people who hates when others brake their code also find it useful.



                                                                                  So, this is just an optional feature, which is totally up to your preference to use or not.



                                                                                  I use it all the time because it helps to fix my mistakes.






                                                                                  share|improve this answer






















                                                                                  • 10





                                                                                    Although it is not mandatory, it is highly recommended to use them

                                                                                    – Spikatrix
                                                                                    19 hours ago






                                                                                  • 2





                                                                                    -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                    – YSC
                                                                                    8 hours ago







                                                                                  • 2





                                                                                    It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                    – scohe001
                                                                                    4 hours ago















                                                                                  -8
















                                                                                  Take it easy: you don't have to, it is not necessary. -Wall and -Werror was designed by code-refactoring maniacs for themselves. But other people who hates when others brake their code also find it useful.



                                                                                  So, this is just an optional feature, which is totally up to your preference to use or not.



                                                                                  I use it all the time because it helps to fix my mistakes.






                                                                                  share|improve this answer






















                                                                                  • 10





                                                                                    Although it is not mandatory, it is highly recommended to use them

                                                                                    – Spikatrix
                                                                                    19 hours ago






                                                                                  • 2





                                                                                    -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                    – YSC
                                                                                    8 hours ago







                                                                                  • 2





                                                                                    It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                    – scohe001
                                                                                    4 hours ago













                                                                                  -8














                                                                                  -8










                                                                                  -8









                                                                                  Take it easy: you don't have to, it is not necessary. -Wall and -Werror was designed by code-refactoring maniacs for themselves. But other people who hates when others brake their code also find it useful.



                                                                                  So, this is just an optional feature, which is totally up to your preference to use or not.



                                                                                  I use it all the time because it helps to fix my mistakes.






                                                                                  share|improve this answer















                                                                                  Take it easy: you don't have to, it is not necessary. -Wall and -Werror was designed by code-refactoring maniacs for themselves. But other people who hates when others brake their code also find it useful.



                                                                                  So, this is just an optional feature, which is totally up to your preference to use or not.



                                                                                  I use it all the time because it helps to fix my mistakes.







                                                                                  share|improve this answer














                                                                                  share|improve this answer



                                                                                  share|improve this answer








                                                                                  edited 19 hours ago

























                                                                                  answered 19 hours ago









                                                                                  sqr163sqr163

                                                                                  7389 silver badges17 bronze badges




                                                                                  7389 silver badges17 bronze badges










                                                                                  • 10





                                                                                    Although it is not mandatory, it is highly recommended to use them

                                                                                    – Spikatrix
                                                                                    19 hours ago






                                                                                  • 2





                                                                                    -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                    – YSC
                                                                                    8 hours ago







                                                                                  • 2





                                                                                    It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                    – scohe001
                                                                                    4 hours ago












                                                                                  • 10





                                                                                    Although it is not mandatory, it is highly recommended to use them

                                                                                    – Spikatrix
                                                                                    19 hours ago






                                                                                  • 2





                                                                                    -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                    – YSC
                                                                                    8 hours ago







                                                                                  • 2





                                                                                    It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                    – scohe001
                                                                                    4 hours ago







                                                                                  10




                                                                                  10





                                                                                  Although it is not mandatory, it is highly recommended to use them

                                                                                  – Spikatrix
                                                                                  19 hours ago





                                                                                  Although it is not mandatory, it is highly recommended to use them

                                                                                  – Spikatrix
                                                                                  19 hours ago




                                                                                  2




                                                                                  2





                                                                                  -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                  – YSC
                                                                                  8 hours ago






                                                                                  -Wall and -Werror was designed by code-refactoring maniacs for themselves. [citation needed]

                                                                                  – YSC
                                                                                  8 hours ago





                                                                                  2




                                                                                  2





                                                                                  It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                  – scohe001
                                                                                  4 hours ago





                                                                                  It seems like you're contradicting yourself. If you "use it all the time because it helps to fix [your] mistakes," isn't it worth teaching to newer programmers so that they'll be doing it everywhere from the get go? I don't think this question is asking whether or not it's possible to compile without -Wall and -Werror, it's just asking if it's a good idea. Which, from your last sentence, it sounds like you're saying it is.

                                                                                  – scohe001
                                                                                  4 hours ago


















                                                                                  draft saved

                                                                                  draft discarded















































                                                                                  Thanks for contributing an answer to Stack Overflow!


                                                                                  • Please be sure to answer the question. Provide details and share your research!

                                                                                  But avoid


                                                                                  • Asking for help, clarification, or responding to other answers.

                                                                                  • Making statements based on opinion; back them up with references or personal experience.

                                                                                  To learn more, see our tips on writing great answers.




                                                                                  draft saved


                                                                                  draft discarded














                                                                                  StackExchange.ready(
                                                                                  function ()
                                                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f57842756%2fhow-do-i-always-enable-compiler-warnings%23new-answer', 'question_page');

                                                                                  );

                                                                                  Post as a guest















                                                                                  Required, but never shown





















































                                                                                  Required, but never shown














                                                                                  Required, but never shown












                                                                                  Required, but never shown







                                                                                  Required, but never shown

































                                                                                  Required, but never shown














                                                                                  Required, but never shown












                                                                                  Required, but never shown







                                                                                  Required, but never shown







                                                                                  Popular posts from this blog

                                                                                  Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                                                                                  Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                                                                                  Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367