Disable boost 64/32b intergers warning on Windows

This commit is contained in:
Simon Giraudot
2017-09-11 11:38:17 +02:00
parent fe8b47f373
commit 3bf3401c6f
6 changed files with 30 additions and 0 deletions
@@ -1,3 +1,8 @@
#if defined (_MSC_VER) && !defined (_WIN64)
#pragma warning(disable:4244) // boost::number_distance::distance()
// converts 64 to 32 bits integers
#endif
#include <cstdlib>
#include <fstream>
#include <iostream>