[libcxx-commits] [PATCH] D143349: [libc++] Fix UTF-8 decoding in codecvts. Fix #60177.

Dimitrij Mijoski via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Feb 6 06:56:22 PST 2023


dimztimz marked 4 inline comments as done.
dimztimz added a comment.

I fixed 4 of your remarks in my last patch that also fixes support for C++03. I will fix the rest after the CI passes.



================
Comment at: libcxx/test/std/localization/codecvt_unicode.h:36
+  using namespace std;
+  // UTF-8 string of 1-byte CP, 2-byte CP, 3-byte CP and 4-byte CP
+  const char in[]                    = "b\u0448\uAAAA\U0010AAAA";
----------------
Mordante wrote:
> Just to improve the readability.
> Just to improve the readability.




CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D143349/new/

https://reviews.llvm.org/D143349



More information about the libcxx-commits mailing list