From d789bc24237c08028d53467d34a15fe18b92414e Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Thu, 30 Nov 2023 18:29:34 +0800 Subject: [PATCH] removed "const" prefix in OnLine in CSVParse.h --- inc/hgl/util/csv/CSVParse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/hgl/util/csv/CSVParse.h b/inc/hgl/util/csv/CSVParse.h index 0215607..165c571 100644 --- a/inc/hgl/util/csv/CSVParse.h +++ b/inc/hgl/util/csv/CSVParse.h @@ -27,7 +27,7 @@ namespace hgl callback=pcb; } - bool OnLine(const T *text,const int length) override + bool OnLine(T *text,const int length) override { if(!text||!*text||length<=0) return(true);