• @jormaig
    link
    211 year ago

    Having worked as a TA. These poor people have some pipeline running your code using something like GCC 4.8 or older and changing the pipeline is too much work.

    Yeah, you can do many tricks with C++11 (and even more with C++17) and it’s nicer to write. But, the algorithms should be the same which is what matters for the course.

    • glibg10bOP
      link
      fedilink
      61 year ago

      Yeah they’re using an in-house thing called FitchFork:

    • magic_lobster_party
      link
      fedilink
      61 year ago

      Smart pointers is integral to modern C++. You should rarely rely on raw pointers nowadays. They’re just learning outdated practices.

      • @jormaig
        link
        91 year ago

        True. Real c++ development should rely on smart pointers as much as possible. Having said that, a student should still learn what a pointer is and how to manually manage it to understand better what the “smart” part of smart pointers does.

        From the other post from OP, it doesn’t look like this is the purpose of the assignment. So, I think it’s more of a case of using old software that cannot handle c++11.

    • @[email protected]
      link
      fedilink
      41 year ago

      I hope it’s an old course because a lot of companies are studying whether it’s worth using C++23 now.

      • glibg10bOP
        link
        fedilink
        41 year ago

        The semester starts tomorrow. The requirement was C++11 for last semester’s course

    • passably9
      link
      fedilink
      01 year ago

      We used to use TurboC++ emulated in DOSBox to be able to run on Windows 7. That’s 2 years back in high school