* 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:
Benoit Jacob
2008-08-27 06:43:42 +00:00
parent a0cfe6ebdc
commit 252e0c45b2
5 changed files with 17 additions and 4 deletions

View File

@@ -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)
{

View File

@@ -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;