change BOM

This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-07-26 22:27:47 +08:00
parent b2ad30b12c
commit 7ed3987cda

View File

@ -1,4 +1,4 @@
#pragma once
#pragma once
#include<hgl/io/TextOutputStream.h>
#include<initializer_list>
@ -7,7 +7,7 @@ namespace hgl
namespace util
{
/**
* CSV输出控制
* CSV输出控制
*/
template<typename T> 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;