mirror of
https://github.com/jarro2783/cxxopts.git
synced 2026-09-01 18:56:39 +02:00
String literals with the prefix `u8` now have the type `const char8_t[N]` in C++20. As a consequence the library does not compile in c++2a mode with GCC (you can't concatenate `std::basic_string<char>` and `const char8_t[]` as `char` and `char8_t` are different types).