mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-07 09:31:35 +08:00
Move eigen to third party (#282)
* remove useless statement * Add eigen to third_party dir * remove reducdant lines
This commit is contained in:
13
third_party/eigen/failtest/const_qualified_transpose_method_retval.cpp
vendored
Normal file
13
third_party/eigen/failtest/const_qualified_transpose_method_retval.cpp
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "../Eigen/Core"
|
||||
|
||||
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
|
||||
#define CV_QUALIFIER const
|
||||
#else
|
||||
#define CV_QUALIFIER
|
||||
#endif
|
||||
|
||||
using namespace Eigen;
|
||||
|
||||
void foo(CV_QUALIFIER Matrix3d &m) { Transpose<Matrix3d> b(m.transpose()); }
|
||||
|
||||
int main() {}
|
Reference in New Issue
Block a user