Skip to content
Snippets Groups Projects
Verified Commit a564a065 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: fix exposition for type long on Windows

parent 359ae032
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,12 @@
namespace eigenpy {
void exposeMatrixLong() {
#ifdef WIN32
exposeType<__int64>();
exposeType<__int64, Eigen::RowMajor>();
#else
exposeType<long>();
exposeType<long, Eigen::RowMajor>();
#endif
}
} // namespace eigenpy
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment