Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Compiler Warnings...

Compiler Warnings...

Scheduled Pinned Locked Moved The Lounge
question
50 Posts 32 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Kornfeld Eliyahu PeterK Kornfeld Eliyahu Peter

    How seriously do you handle them?

    "The only place where Success comes before Work is in the dictionary." Vidal Sassoon, 1928 - 2012

    K Offline
    K Offline
    kalberts
    wrote on last edited by
    #40

    We are in the process of introducing the Coverity static code analyzer. It is very good at telling you why it warns you ("If [this] occurs, and then [this] and then [this], then you follow a null reference at [that] line" - the series of inferences may jump from source file to source file, and may go in five or six or more steps). For this discussion it is more important that it maintains a history of all the "defects": If you have once reported that a given defect is in intentional, at the next Coverity run it will not be reported again. Same if you have flagged it as a false warning (which may occur if you set the agressiveness level to "high"). So you won't have the same warnings again and again. That makes it much more realistic to handle even moderate risk defects, because you do it once only. And if you give it a verdict of "intentional" or "false warning", you can leave it in your source code as it is. Actually I am a little bit in love with Coverity at the moment. I never seen any compiler or other code analyzer that comes close to it neither in its ability to detect defects, nor its flexibility in handling them. The big disadvantage is that your billfold will complain loudly ... And it takes some heavy iron (or lot of patience). But when you employer can afford both the software and the iron, then it is great.

    1 Reply Last reply
    0
    • W W Balboos GHB

      Have you ever heard of "Job Security" ?

      Ravings en masse^

      "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

      "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

      B Offline
      B Offline
      Bitbeisser
      wrote on last edited by
      #41

      Lazy programmers might be the first ones that get fired...

      W 1 Reply Last reply
      0
      • R RickZeeland

        Would you still prefer Delphi over .Net ?

        B Offline
        B Offline
        Bitbeisser
        wrote on last edited by
        #42

        Well, I am not Mark, but I would prefer Delphi over .Crap any time of the day. Though I am actually using FreePascal mostly these days, which is truly cross-platform compatible, in contrast to .NET which only pretends to be running on anything but Windows. So I am enjoying the benefits of a sane programming language without descending into dependency hell... ;P And as far as compiler warnings go, I tried them always with utmost respect, as almost always, they are at least a precursor for larger problems looming. In the rare exception that I deliberately chose to ignore a warning, this piece of code will properly be mark with some comment as to why, if there is no reasonable workaround to solve offending code.

        R 1 Reply Last reply
        0
        • B Bitbeisser

          Lazy programmers might be the first ones that get fired...

          W Offline
          W Offline
          W Balboos GHB
          wrote on last edited by
          #43

          You need to think deeper. If a programmer is lazy, no production means no one remembers any bugs in their software or any other problems - because they've never run anything of theirs. They'll be held onto the longest as they never make any mistakes!!

          Ravings en masse^

          "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

          "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

          B 1 Reply Last reply
          0
          • W W Balboos GHB

            You need to think deeper. If a programmer is lazy, no production means no one remembers any bugs in their software or any other problems - because they've never run anything of theirs. They'll be held onto the longest as they never make any mistakes!!

            Ravings en masse^

            "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

            "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

            B Offline
            B Offline
            Bitbeisser
            wrote on last edited by
            #44

            If you have a moment or two, could you please translate this into plain, proper English? :confused:

            W 1 Reply Last reply
            0
            • B Bitbeisser

              If you have a moment or two, could you please translate this into plain, proper English? :confused:

              W Offline
              W Offline
              W Balboos GHB
              wrote on last edited by
              #45

              The English is plain enough. You just need to reorganize you thought processes to consider more options than simply being logical.

              Ravings en masse^

              "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

              "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

              B 1 Reply Last reply
              0
              • R RickZeeland

                Would you still prefer Delphi over .Net ?

                M Offline
                M Offline
                MarkTJohnson
                wrote on last edited by
                #46

                I started with C and did that until that job went away, found the job with Delphi and did that job until it too played out (DoD decided they didn't want the system anymore). I wasn't looking for more Delphi but those skills got me into the current job which eventually changed projects to working in java. All that to say this; If someone wanted to pay me more to do Delphi than my current job pays, yes I would. If someone wanted to pay me more to do old school C than my current job pay, yes I would. If someone wanted to pay me more to clean up after elephants, I probably would. I program to live, not live to program. It just pays the bills real good.

                R 1 Reply Last reply
                0
                • W W Balboos GHB

                  The English is plain enough. You just need to reorganize you thought processes to consider more options than simply being logical.

                  Ravings en masse^

                  "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

                  "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

                  B Offline
                  B Offline
                  Bitbeisser
                  wrote on last edited by
                  #47

                  Well, maybe than it wasn't English in the first place. And programming is all about being logical, and that includes proper treatment of compiler warnings... And trust me, even after 43 years of programming, my thought process is just fine... ;P

                  1 Reply Last reply
                  0
                  • M MarkTJohnson

                    I started with C and did that until that job went away, found the job with Delphi and did that job until it too played out (DoD decided they didn't want the system anymore). I wasn't looking for more Delphi but those skills got me into the current job which eventually changed projects to working in java. All that to say this; If someone wanted to pay me more to do Delphi than my current job pays, yes I would. If someone wanted to pay me more to do old school C than my current job pay, yes I would. If someone wanted to pay me more to clean up after elephants, I probably would. I program to live, not live to program. It just pays the bills real good.

                    R Offline
                    R Offline
                    RickZeeland
                    wrote on last edited by
                    #48

                    That's an honest answer, which makes me think of:

                    Quote:

                    Honesty is such a lonely word Everyone is so untrue Honesty is hardly ever heard And mostly what I need from you

                    :-\

                    1 Reply Last reply
                    0
                    • B Bitbeisser

                      Well, I am not Mark, but I would prefer Delphi over .Crap any time of the day. Though I am actually using FreePascal mostly these days, which is truly cross-platform compatible, in contrast to .NET which only pretends to be running on anything but Windows. So I am enjoying the benefits of a sane programming language without descending into dependency hell... ;P And as far as compiler warnings go, I tried them always with utmost respect, as almost always, they are at least a precursor for larger problems looming. In the rare exception that I deliberately chose to ignore a warning, this piece of code will properly be mark with some comment as to why, if there is no reasonable workaround to solve offending code.

                      R Offline
                      R Offline
                      RickZeeland
                      wrote on last edited by
                      #49

                      For some reason your reply was marked as spam, probably by some Delphi hater, and I could not reply, but luckily an admin reverted that. Although I'm a .NET programmer I agree on the cross-platform thing, see: Slant pascal-based-languages-targeting-x86[^] Just saw a new entry in the list: CodeTyphon, so Pascal definitely is not dead and buried !

                      B 1 Reply Last reply
                      0
                      • R RickZeeland

                        For some reason your reply was marked as spam, probably by some Delphi hater, and I could not reply, but luckily an admin reverted that. Although I'm a .NET programmer I agree on the cross-platform thing, see: Slant pascal-based-languages-targeting-x86[^] Just saw a new entry in the list: CodeTyphon, so Pascal definitely is not dead and buried !

                        B Offline
                        B Offline
                        Bitbeisser
                        wrote on last edited by
                        #50

                        Well, a lot of .NET fans can't handle the truth... ;P And Delphi is by far not the only Pascal based programming environment. I personally use FreePascal (Free Pascal - Advanced open source Pascal compiler for Pascal and Object Pascal - Home Page[^]) with the Lazarus IDE (Lazarus Homepage[^]) for years, is truly OpenSource on cross-platform on Windows, macOS and Linux, and then some... I had a look at CodeTyphon a few years ago, as someone was pushing it on a mailing list, but at least back then it wasn't quite ready "for prime time"...

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups