removed "const" prefix in OnLine in CSVParse.h

This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-11-30 18:29:34 +08:00
parent c0990c52eb
commit d789bc2423

View File

@ -27,7 +27,7 @@ namespace hgl
callback=pcb; callback=pcb;
} }
bool OnLine(const T *text,const int length) override bool OnLine(T *text,const int length) override
{ {
if(!text||!*text||length<=0) if(!text||!*text||length<=0)
return(true); return(true);