mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* missing cmake make_directory command
* show svn revision number if available * fix warnings about unused argc/argv Gael: I just saw your latest docs, it's completely awesome.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
// import most common Eigen's types
|
||||
USING_PART_OF_NAMESPACE_EIGEN
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
int main(int, char *[])
|
||||
{
|
||||
for (int size=1; size<=4; ++size)
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// import most common Eigen's types
|
||||
USING_PART_OF_NAMESPACE_EIGEN
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
int main(int, char *[])
|
||||
{
|
||||
Matrix3f m3;
|
||||
m3 << 1, 2, 3, 4, 5, 6, 7, 8, 9;
|
||||
|
||||
Reference in New Issue
Block a user