I wanted to share useful websites and resources for C++ that I use, add yours!
Hi everyone, here is a list of websites that I use for C++:
https://godbolt.org/: compiler explorer, allows you to quickly test code and see the disassembly, integrates many libraries and tools (PVS, clang-tidy, ...). It can even do CMake projects with multiple files!
https://wandbox.org : an alternative to God bolt, when just needing to quickly test something (i.e. not needing the disassembly and multiple options of godbolt, just see if it compiles, or behave like expected on several compilers - I use that very often when writing code review comments to be sure not to advise rubbish...)