JSON-19 fix teh bug. it was an infinite recursion. *sigh*

ENGINE-187
Roker 6 years ago
parent 1c3fb04afc
commit 56ace2ef87

@ -269,7 +269,7 @@ pEp_identity* from_json<pEp_identity*>(const js::Value& v)
template<>
const pEp_identity* from_json<const pEp_identity*>(const js::Value& v)
{
return from_json<const pEp_identity*>(v);
return from_json<pEp_identity*>(v);
}

Loading…
Cancel
Save