From 2f1200b8d54f4120e3f49c3bad6c8af6db5cb123 Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Thu, 27 Jul 2023 18:52:40 +0800 Subject: [PATCH] fixed name of value --- inc/hgl/io/TextInputStream.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/inc/hgl/io/TextInputStream.h b/inc/hgl/io/TextInputStream.h index 63fe4bc..de02bde 100644 --- a/inc/hgl/io/TextInputStream.h +++ b/inc/hgl/io/TextInputStream.h @@ -26,7 +26,7 @@ namespace hgl virtual bool OnBOM(const ByteOrderMask &){return true;} ///<读取到BOM头的回调函数 - virtual bool OnLine(const T *text,const int line){return true;} + virtual bool OnLine(const T *text,const int len){return true;} /** * 读取到一行文本的回调函数 @@ -110,9 +110,5 @@ namespace hgl */ virtual int Run(); };//class TextInputStream - - /** - * - */ }//namespace io }//namespace hgl