mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-23 06:13:07 -06:00
Core: InVector Jsonize fixed
git-svn-id: svn://ultimatepp.org/upp/trunk@10967 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
5178e4bcc3
commit
ab4e4db6fa
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue