From 39be8442e1c1cc2063e321d3b641b256af933b3e Mon Sep 17 00:00:00 2001 From: fangyunzhong Date: Wed, 17 May 2023 11:31:18 +0000 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E7=94=A8=E8=A7=84=E8=8C=83=E5=91=8A?= =?UTF-8?q?=E8=AD=A6=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: fangyunzhong --- src/resource_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resource_util.cpp b/src/resource_util.cpp index bb69a6e..0bb8a7d 100644 --- a/src/resource_util.cpp +++ b/src/resource_util.cpp @@ -370,7 +370,7 @@ string ResourceUtil::DecToHexStr(const int32_t i) { stringstream ot; string result; - ot << setiosflags(ios::uppercase) << "0x" << hex << setw(8) << setfill('0') << i;// 0x expadding 8 bit + ot << setiosflags(ios::uppercase) << "0x" << hex << setw(8) << setfill('0') << i; // 0x expadding 8 bit ot >> result; return result; }