fix compilation on FreeBSD by defining a symbol...

...which enables strtoll and strtoull routines
This commit is contained in:
Iurii Chernyi 2009-07-02 21:04:23 +00:00
parent ea434642b0
commit b1b383f83a

View file

@ -41,6 +41,10 @@
#define DEBUG_THROW(id) throw id;
#else
#ifdef __FreeBSD__
#define __LONG_LONG_SUPPORTED
#endif
#include <string>
#include <sstream>
#include <boost/mpl/set.hpp>