From 41902efc79a8337a58d8e52d1eec04a2f2040387 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Sat, 15 Jun 2019 21:12:55 -0400 Subject: [PATCH] Another attempt at getting past Linux compiler --- gtsam/geometry/SO3.cpp | 6 +++--- gtsam/geometry/SO4.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gtsam/geometry/SO3.cpp b/gtsam/geometry/SO3.cpp index de595239a..7ea9dfb07 100644 --- a/gtsam/geometry/SO3.cpp +++ b/gtsam/geometry/SO3.cpp @@ -297,9 +297,9 @@ static Vector9 vec3(const Matrix3& R) { } // so<3> generators -static std::vector G3({SO3::Hat(Vector3::Unit(0)), - SO3::Hat(Vector3::Unit(1)), - SO3::Hat(Vector3::Unit(2))}); +static std::vector G3({SO3::Hat(Vector3::Unit(0)), + SO3::Hat(Vector3::Unit(1)), + SO3::Hat(Vector3::Unit(2))}); // vectorized generators static const Matrix93 P3 = diff --git a/gtsam/geometry/SO4.cpp b/gtsam/geometry/SO4.cpp index 5660e85d5..93fb05386 100644 --- a/gtsam/geometry/SO4.cpp +++ b/gtsam/geometry/SO4.cpp @@ -138,7 +138,7 @@ static SO4::VectorN2 vec4(const Matrix4& Q) { } // so<4> generators -static std::vector G4( +static std::vector G4( {SO4::Hat(Vector6::Unit(0)), SO4::Hat(Vector6::Unit(1)), SO4::Hat(Vector6::Unit(2)), SO4::Hat(Vector6::Unit(3)), SO4::Hat(Vector6::Unit(4)), SO4::Hat(Vector6::Unit(5))});