From 7ed3987cdae2dac46e42b5d6070786a6ee05e827 Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Wed, 26 Jul 2023 22:27:47 +0800 Subject: [PATCH] change BOM --- inc/hgl/util/csv/CSVOutput.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/hgl/util/csv/CSVOutput.h b/inc/hgl/util/csv/CSVOutput.h index 4e2424c..e75c7ef 100644 --- a/inc/hgl/util/csv/CSVOutput.h +++ b/inc/hgl/util/csv/CSVOutput.h @@ -1,4 +1,4 @@ -#pragma once +#pragma once #include #include @@ -7,7 +7,7 @@ namespace hgl namespace util { /** - * CSV + * CSV输出控制 */ template class CSVOutput { @@ -39,10 +39,10 @@ namespace hgl public: - CSVOutput( io::TextOutputStream *os, //ı - const uint field_count, //ֶ - const T fields_terminated_char=T('\t'), //ֶηָ - const T enclosed_char=T('"')) //ַַ + CSVOutput( io::TextOutputStream *os, //文本输出流 + const uint field_count, //字段数量 + const T fields_terminated_char=T('\t'), //字段分隔符 + const T enclosed_char=T('"')) //字符串包裹字符 { tos=os;