From ab4e4db6fa1123bf3cc3fe5bfd087bec5c2b4553 Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 23 Mar 2017 08:13:33 +0000 Subject: [PATCH] Core: InVector Jsonize fixed git-svn-id: svn://ultimatepp.org/upp/trunk@10967 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/InVector.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uppsrc/Core/InVector.hpp b/uppsrc/Core/InVector.hpp index 9c701915f..e26eb8285 100644 --- a/uppsrc/Core/InVector.hpp +++ b/uppsrc/Core/InVector.hpp @@ -697,7 +697,7 @@ void InVector::Xmlize(XmlIO& xio, const char *itemtag) template void InVector::Jsonize(JsonIO& jio) { - JsonizeArray, T>(jio, *this); + JsonizeArray>(jio, *this); } template @@ -864,7 +864,7 @@ void InArray::Xmlize(XmlIO& xio, const char *itemtag) template void InArray::Jsonize(JsonIO& jio) { - JsonizeArray, T>(jio, *this); + JsonizeArray>(jio, *this); } template