Fix error in regex replcement for xml to json

Signed-off-by: Omar Shrit <omar@shrit.me>
This commit is contained in:
Omar Shrit
2020-07-09 13:56:53 +02:00
parent a7c9635575
commit 1db05d87ce
+1 -1
View File
@@ -241,7 +241,7 @@ void SerializeObjectAll(T& t, T& xmlT, T& jsonT, T& binaryT)
{
SerializeObject<T, cereal::XMLInputArchive,
cereal::XMLOutputArchive>(t, xmlT);
SerializeObject<T, cereal::XMLInputArchive,
SerializeObject<T, cereal::JSONInputArchive,
cereal::JSONOutputArchive>(t, jsonT);
SerializeObject<T, cereal::BinaryInputArchive,
cereal::BinaryOutputArchive>(t, binaryT);