Made sure to include the <random> header file when compiling with visual studio

This commit is contained in:
Benoit Steiner 2016-03-09 16:03:16 -08:00
parent f05fb449b8
commit b2100b83ad

View File

@ -38,7 +38,7 @@ typedef unsigned __int64 uint64_t;
#include <stdint.h>
#endif
#if __cplusplus > 199711
#if __cplusplus > 199711 || EIGEN_COMP_MSVC >= 1900
#include <random>
#endif