fixed typed error in StringList

This commit is contained in:
2023-07-21 10:48:01 +08:00
parent 5e2976418d
commit dbb2229c52

View File

@@ -1,7 +1,7 @@
#ifndef HGL_STRINGLIST_INCLUDE #ifndef HGL_STRINGLIST_INCLUDE
#define HGL_STRINGLIST_INCLUDE #define HGL_STRINGLIST_INCLUDE
#include<hgl/type/List.h> #include<hgl/type/ObjectList.h>
#include<hgl/type/String.h> #include<hgl/type/String.h>
#include<hgl/io/DataInputStream.h> #include<hgl/io/DataInputStream.h>
#include<hgl/io/DataOutputStream.h> #include<hgl/io/DataOutputStream.h>
@@ -46,7 +46,7 @@ namespace hgl
return NullString; return NullString;
} }
StringList<StringClass> &operator = (const StringList<StringClass> &sl) StringList<T> &operator = (const StringList<T> &sl)
{ {
Clear(); Clear();