Earlier quoted context omitted.
The major C++ compilers are perfectly conformant with the standard. Where they can lag is after standards come out. Modules have been a challenge, but other language features get implemented within a few years. At the time of writing, all the major compilers conform with C++ 17 and aside from modules, conform with C++ 20. There absolutely is "one true C++" as set by the standard, and compiler writers have a roadmap f…
Looking over https://en.cppreference.com/w/cpp/compiler_support , it seems there is good conformance on C++11 and C++14 but there are gaps on C++17+ among gcc, msvc, and clang.
In any cases these tables only help up to a point, even green cells often hide bugs and conformance divergences.
Still for most straightforward code compliance across compilers is very good and significantly better than the dark ages of two decades ago.