Skip to content

Commit

Permalink
Merge pull request pgRouting#82 from strk/master-boost147
Browse files Browse the repository at this point in the history
Fix build with libboost >= 1.47. Closes pgRouting#45
  • Loading branch information
woodbri committed Mar 19, 2013
2 parents 18bfb76 + e26cf82 commit 6111c06
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 6111c06

Please sign in to comment.