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:
@@ -4,7 +4,7 @@
|
||||
using Eigen::Matrix3d;
|
||||
using Eigen::Vector3d;
|
||||
|
||||
int main(int, char *[])
|
||||
int main()
|
||||
{
|
||||
Matrix3d m;
|
||||
for (int row = 0; row < 3; ++row)
|
||||
|
||||
Reference in New Issue
Block a user