Skip to content

Commit

Permalink
Fix build with libboost >= 1.47. Closes pgRouting#45
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Santilli committed Mar 12, 2013
1 parent 18bfb76 commit e26cf82
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/edge_visitors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
#include <boost/property_map/property_map.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/limits.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION <= 14700
#include <boost/graph/detail/is_same.hpp>
#else
#include <boost/type_traits/is_same.hpp>
#endif

namespace boost
{
Expand Down

0 comments on commit e26cf82

Please sign in to comment.