merge with default branch

This commit is contained in:
Gael Guennebaud
2014-04-22 17:00:38 +02:00
19 changed files with 108 additions and 24 deletions

View File

@@ -89,7 +89,7 @@ inline void throw_std_bad_alloc()
#ifdef EIGEN_EXCEPTIONS
throw std::bad_alloc();
#else
std::size_t huge = -1;
std::size_t huge = static_cast<std::size_t>(-1);
new int[huge];
#endif
}