Fixed typo

release/4.3a0
dellaert 2016-02-11 23:27:09 -08:00
parent c781ca46db
commit 7fd838611e
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ void gtsamPoint3_string_deserialize_19(int nargout, mxArray *out[], int nargin,
string serialized = unwrap< string >(in[0]);
istringstream in_archive_stream(serialized);
boost::archive::text_iarchive in_archive(in_archive_stream);
Shared output(new gtsam::Point3(0,0,0));
Shared output(new gtsam::Point3());
in_archive >> *output;
out[0] = wrap_shared_ptr(output,"gtsam.Point3", false);
}