From 5e803e917e75a6b7065da40a64321255528cbd24 Mon Sep 17 00:00:00 2001 From: Frank dellaert Date: Wed, 19 Aug 2020 09:29:09 -0400 Subject: [PATCH] Fixed example printing --- examples/IMUKittiExampleGPS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/IMUKittiExampleGPS.cpp b/examples/IMUKittiExampleGPS.cpp index f1d89b47a..e2ca49647 100644 --- a/examples/IMUKittiExampleGPS.cpp +++ b/examples/IMUKittiExampleGPS.cpp @@ -287,7 +287,7 @@ int main(int argc, char* argv[]) { new_values.insert(current_pose_key, gps_pose); printf("################ POSE INCLUDED AT TIME %lf ################\n", t); - gps_pose.translation().print(); + cout << gps_pose.translation(); printf("\n\n"); } else { new_values.insert(current_pose_key, current_pose_global);