From 7fd838611e951e01a8e28ce1ee4aa4146d7c3763 Mon Sep 17 00:00:00 2001 From: dellaert Date: Thu, 11 Feb 2016 23:27:09 -0800 Subject: [PATCH] Fixed typo --- wrap/tests/expected/geometry_wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/tests/expected/geometry_wrapper.cpp b/wrap/tests/expected/geometry_wrapper.cpp index 6646394f6..226030a0d 100644 --- a/wrap/tests/expected/geometry_wrapper.cpp +++ b/wrap/tests/expected/geometry_wrapper.cpp @@ -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); }