Open GoogleCodeExporter opened 9 years ago
I know if I move the serialize() function to type PeriodicalReport(inside
serialize
function),it should works fine. But I will not do that, because all my
serialize
function are defined outside the used defined type.
Original comment by lor...@126.com
on 23 Feb 2010 at 8:58
You shouldn't template the serialize() functions on Archive. Instead of
template<typename Archive> void serialize(Archive &ar,PeriodicalReport&
periodicalReport)
{...}
, you should have
void serialize(SF::Archive &ar, PeriodicalReport&
periodicalReport)
{...}
Original comment by jarl.lin...@gmail.com
on 23 Feb 2010 at 12:02
Original comment by jarl.lin...@gmail.com
on 6 Mar 2010 at 1:23
Original issue reported on code.google.com by
lor...@126.com
on 23 Feb 2010 at 8:45