From b7421b127042dbf496a53a635e88451cbea33010 Mon Sep 17 00:00:00 2001 From: potato520hjj <1037715605@qq.com> Date: Sun, 8 Jun 2025 01:31:57 +0800 Subject: [PATCH] fix: remove non-ASCII comment to resolve C4819 encoding warning in VS2022 (zh-CN) warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss. --- yoga/algorithm/SizingMode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yoga/algorithm/SizingMode.h b/yoga/algorithm/SizingMode.h index bd725df1..cd6f37dd 100644 --- a/yoga/algorithm/SizingMode.h +++ b/yoga/algorithm/SizingMode.h @@ -27,7 +27,7 @@ enum class SizingMode { StretchFit, /** - * A box’s “ideal” size in a given axis when given infinite available space. + * A box's "ideal" size in a given axis when given infinite available space. * Usually this is the smallest size the box could take in that axis while * still fitting around its contents, i.e. minimizing unfilled space while * avoiding overflow.