mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
int main() is a standard main() prototype, and makes for cleaner examples
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
using Eigen::MatrixXd;
|
||||
|
||||
int main(int, char *[])
|
||||
int main()
|
||||
{
|
||||
MatrixXd m(2,2);
|
||||
m(0,0) = 3;
|
||||
|
||||
Reference in New Issue
Block a user