I don’t think that casting a range of bits as some other arbitrary type “is a bug nobody sees coming”.

C++ compilers also warn you that this is likely an issue and will fail to compile if configured to do so. But it will let you do it if you really want to.

That’s why I love C++

  • merc@sh.itjust.works
    link
    fedilink
    arrow-up
    26
    arrow-down
    1
    ·
    10 hours ago

    “C++ compilers also warn you…”

    Ok, quick question here for people who work in C++ with other people (not personal projects). How many warnings does the code produce when it’s compiled?

    I’ve written a little bit of C++ decades ago, and since then I’ve worked alongside devs who worked on C++ projects. I’ve never seen a codebase that didn’t produce hundreds if not thousands of lines of warnings when compiling.

    • nroth@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      6 hours ago

      0 in our case, but we are pretty strict. Same at the first place I worked too. Big tech companies.

    • dejected_warp_core@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      7 hours ago

      Ideally? Zero. I’m sure some teams require “warnings as errors” as a compiler setting for all work to pass muster.

      In reality, there’s going to be odd corner-cases where some non-type-safe stuff is needed, which will make your compiler unhappy. I’ve seen this a bunch in 3rd party library headers, sadly. So it ultimately doesn’t matter how good my code is.

      There’s also a shedload of legacy things going on a lot of the time, like having to just let all warnings through because of the handful of places that will never be warning free. IMO its a way better practice to turn a warning off for a specific line.. Sad thing is, it’s newer than C++ itself and is implementation dependent, so it probably doesn’t get used as much.

      • merc@sh.itjust.works
        link
        fedilink
        arrow-up
        3
        ·
        6 hours ago

        I’ve seen this a bunch in 3rd party library headers, sadly. So it ultimately doesn’t matter how good my code is.

        Yeah, I’ve seen that too. The problem is that once the library starts spitting out warnings it’s hard to spot your own warnings.

    • Zacryon@feddit.org
      link
      fedilink
      arrow-up
      13
      ·
      9 hours ago

      I mostly see warnings when compiling source code of other projects. If you get a warning as a dev, it’s your responsibility to deal with it. But also your risk, if you don’t. I made it a habit to fix every warning in my own projects. For prototyping I might ignore them temporarily. Some types of warnings are unavoidable sometimes.

      If you want to make yourself not ignore warnings, you can compile with -Werror if using GCC/G++ to make the compiler a pedantic asshole that doesn’t compile until you fix every fucking warning. Not advisable for drafting code, but definitely if you want to ship it.

      • Valmond@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        6 hours ago

        Except when you have to cast size_t on int and vice versa (for “small” numbers). I hate that warning.

    • jkercher@programming.dev
      link
      fedilink
      English
      arrow-up
      12
      ·
      10 hours ago

      You shouldn’t have any warnings. They can be totally benign, but when you get used to seeing warnings, you will not see the one that does matter.

    • jmicz3d@lemmy.sdf.org
      link
      fedilink
      arrow-up
      2
      ·
      8 hours ago

      I work on one of the larger c++ projects out there (20 to 50 million lines range) and though I don’t see the full build logs I’ve yet to see a component that has a warning.

    • sunbeam60@lemmy.one
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      9 hours ago

      Depends on the age of the codebase, the age of the compiler and the culture of the team.

      I’ve arrived into a team with 1000+ warnings, no const correctness (code had been ported from a C codebase) and nothing but C style casts. Within 6 months, we had it all cleaned up but my least favourite memory from that time was “I’ll just make this const correct; ah, right, and then this; and now I have to do this” etc etc. A right pain.

      • merc@sh.itjust.works
        link
        fedilink
        arrow-up
        2
        ·
        9 hours ago

        So, did you get it down to 0 warnings and manage to keep it there? Or did it eventually start creeping up again?

        • shane@feddit.nl
          link
          fedilink
          arrow-up
          1
          ·
          5 hours ago

          I’m not the person you’re asking but surely they just told the compiler to treat warnings as errors after that. No warnings can creep in then!

    • vivendi@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      ·
      10 hours ago

      Ignoring warnings is really not a good way to deal with it. If a compiler is bitching about something there is a reason to.

      A lot of times the devs are too overworked or a little underloaded in the supply of fucks to give, so they ignore them.

      In some really high quality codebases, they turn on “treat warnings as errors” to ensure better code.

      • merc@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        9 hours ago

        I know that should be the philosophy, but is it? In my experience it seems to be normal to ignore warnings.