Closed chibi314 closed 4 years ago
If you just want to get rid of the warnings, maybe you can just apply a pragma flag to temporarily ignore them.
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
// your code
#pragma GCC diagnostic pop
Supposed that you are using gcc or clang for as your compiler.
Solved thanks to #48
Hi. When I compile the MPC example, there appears lots of warnings. The following is one of them.
What is the best way to cope with this warning? And what is the best way to convert
Eigen::Dense
matrix toEigen::SparseCompressedBase
matrix?