switch typedef to using per popular request
parent
3121604f63
commit
9f5acb1890
|
|
@ -35,7 +35,7 @@ namespace gtsam {
|
||||||
typedef Vector3 Point3;
|
typedef Vector3 Point3;
|
||||||
|
|
||||||
// Convenience typedef
|
// Convenience typedef
|
||||||
typedef std::pair<Point3, Point3> Point3Pair;
|
using Point3Pair = std::pair<Point3, Point3>;
|
||||||
GTSAM_EXPORT std::ostream &operator<<(std::ostream &os, const gtsam::Point3Pair &p);
|
GTSAM_EXPORT std::ostream &operator<<(std::ostream &os, const gtsam::Point3Pair &p);
|
||||||
|
|
||||||
using Point3Pairs = std::vector<Point3Pair>;
|
using Point3Pairs = std::vector<Point3Pair>;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue