• 0 Posts
  • 5 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle


  • If you’re supporting windows anyway you should use their tooling. This isn’t controversial, MSVC is a good compiler supported by good developers. I find MSVC more reliable than MinGW on windows as well. I recommend maintaining a single CMake project so that you can switch between compilers and build tools.


  • Switch to an IDE that has clang-tidy. Enable as many warnings as you can stomach here https://clang.llvm.org/extra/clang-tidy/checks/list.html

    You don’t have to be reading the standards doc to keep up with the new constructs. As long as you keep up with tooling, you should be getting warnings and recommendations that teach you about the new constructs.