Fix: Avoid compiler warning if BOOST_NO_HASH is already defined.

[SVN r51550]
This commit is contained in:
Jürgen Hunold 2009-03-03 07:56:36 +00:00
parent 71e23c2304
commit dd5aff7029

View File

@ -8,7 +8,9 @@
#include <boost/random/mersenne_twister.hpp>
#define BOOST_NO_HASH
#if !defined(BOOST_NO_HASH)
# define BOOST_NO_HASH
#endif
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/subgraph.hpp>