Core: InVector Jsonize fixed

git-svn-id: svn://ultimatepp.org/upp/trunk@10967 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-03-23 08:13:33 +00:00
parent 5178e4bcc3
commit ab4e4db6fa

View file

@ -697,7 +697,7 @@ void InVector<T>::Xmlize(XmlIO& xio, const char *itemtag)
template <class T>
void InVector<T>::Jsonize(JsonIO& jio)
{
JsonizeArray<InVector<T>, T>(jio, *this);
JsonizeArray<InVector<T>>(jio, *this);
}
template <class T>
@ -864,7 +864,7 @@ void InArray<T>::Xmlize(XmlIO& xio, const char *itemtag)
template <class T>
void InArray<T>::Jsonize(JsonIO& jio)
{
JsonizeArray<InArray<T>, T>(jio, *this);
JsonizeArray<InArray<T>>(jio, *this);
}
template <class T>