fix a number of compiler errors and warnings with gcc 4.3. There was a missing

#include<algorithm> so I'm not sure how it compiled at all for you :)
This commit is contained in:
Benoit Jacob
2008-08-22 01:19:53 +00:00
parent db628c6ad7
commit a814ebe180
7 changed files with 12 additions and 5 deletions

View File

@@ -4,8 +4,9 @@
#include "Core"
#include <vector>
#include <map>
#include <stdlib.h>
#include <string.h>
#include <cstdlib>
#include <cstring>
#include <algorithm>
namespace Eigen {