Please read the new rule regarding the restriction on the use of AI tools. ×

JaroPaska's blog

By JaroPaska, 19 months ago, In English

A while ago the GNU G++ 11.2.0 (64 bit, winlibs) option was added to Codeforces to facilitate the use of C++20 on the platform. However, C++20 support is still being worked on and over the past year many features have been added. It would be nice to upgrade the GCC compiler to 12.2.0, which is also available via winlibs. There is also a "Clang++20 Diagnostics" option. Which version of clang does it use?

Neither compiler seems to support #include <ranges> currently, which includes functions such as std::views::iota. Also, the GCC compiler does not have support for constexpr std::string and constexpr std::vector (and this is probably also the case for the clang compiler, although I haven't tested it).

  • Vote: I like it
  • +13
  • Vote: I do not like it

»
19 months ago, # |
  Vote: I like it +4 Vote: I do not like it

ranges work for me just fine. See 195071427.