From 381f72453f90c1f25163e373f79e388a58dc8463 Mon Sep 17 00:00:00 2001 From: Itoh Shimon Date: Tue, 17 Sep 2019 23:19:10 +0900 Subject: [PATCH] fix UCN --- C++11-Syntax-and-Feature.xhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C++11-Syntax-and-Feature.xhtml b/C++11-Syntax-and-Feature.xhtml index 342b32c..c9d853f 100644 --- a/C++11-Syntax-and-Feature.xhtml +++ b/C++11-Syntax-and-Feature.xhtml @@ -756,7 +756,7 @@ Nを16進数の一文字とすると、\uNNNNは、UCSにおけるコードポ
 R"(\u3042)" ; // ユニバーサル文字名ではなく、文字通りに解釈されることに注意
-u8"\u00E3\u0081\u0082" ; // OK、u8"あ"と同じ
+u8"\u3042" ; // OK、u8"あ"と同じ
 
 u"\ud842\udfb7" ; // エラー、サロゲートコードポイントを明示的に使うことはできない
 u"\U00020bb7" ; // OK、u"𠮷"と同じ