Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
[submodule "sdk-extensions"]
path = sdk-extensions
url = ../sdk-extensions.git
branch = master
17 changes: 17 additions & 0 deletions ouster_client/include/ouster/typedefs.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
#pragma once
#include <Eigen/Core>

#if !EIGEN_VERSION_AT_LEAST(3,4,0)
namespace Eigen {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
namespace Eigen {
namespace Eigen {

[nit] just for consistency with rest of the file.

template<typename Scalar, int Rows>
using Vector = Matrix<Scalar, Rows, 1>;

template<typename Scalar>
using Vector3 = Vector<Scalar, 3>;

template <typename Scalar>
using VectorX = Vector<Scalar, Eigen::Dynamic>;

template <typename Scalar>
using ArrayX = Array<Scalar, Eigen::Dynamic, 1>;

}
#endif

#include "ouster/visibility.h"

namespace ouster {
Expand Down
1 change: 0 additions & 1 deletion sdk-extensions
Submodule sdk-extensions deleted from dcd66c