Change typedef into using.
parent
7cfcbff4db
commit
aa2d0f3dec
|
@ -357,7 +357,8 @@ inline Matrix wedge<Pose3>(const Vector& xi) {
|
|||
}
|
||||
|
||||
// Convenience typedef
|
||||
typedef std::pair<Pose3, Pose3> Pose3Pair;
|
||||
// typedef std::pair<Pose3, Pose3> Pose3Pair;
|
||||
using Pose3Pair = std::pair<Pose3, Pose3>;
|
||||
|
||||
// For MATLAB wrapper
|
||||
typedef std::vector<Pose3> Pose3Vector;
|
||||
|
|
Loading…
Reference in New Issue