From 8f4076c97b38726736ef4082b5fe22a0efee17d9 Mon Sep 17 00:00:00 2001 From: dAu6jARL Date: Sun, 19 Apr 2026 15:10:40 +0900 Subject: [PATCH] Fix MSVC warning C4819 in nullability.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed EN DASH "–"(U+2013) to hyphen (U+002D) in comment, because warning C4819 occurred in Japanese Language Environment MSVC 2026. --- absl/base/nullability.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/absl/base/nullability.h b/absl/base/nullability.h index 53aa54f1..a72c04cd 100644 --- a/absl/base/nullability.h +++ b/absl/base/nullability.h @@ -95,7 +95,7 @@ // // describes is preferred, unless inconsistent with surrounding code. // absl_nonnull std::unique_ptr employee; // -// // Invalid annotation usage – this attempts to declare a pointer to a +// // Invalid annotation usage - this attempts to declare a pointer to a // // nullable `Employee`, which is meaningless. // absl_nullable Employee* e; // @@ -204,7 +204,7 @@ // T* absl_nullable GetNullablePtr(); // explicitly nullable // T* absl_nullability_unknown GetUnknownPtr(); // explicitly unknown // -// The macro can be safely used in header files – it will not affect any files +// The macro can be safely used in header files - it will not affect any files // that include it. // // In files with the macro, plain `T*` syntax means `T* absl_nonnull`, and the