Skip to content
Snippets Groups Projects
Commit 39af18b2 authored by Vicente Bolea's avatar Vicente Bolea
Browse files

vtkBoostGraphAdapter: fix known boost graph bug

parent ab0e8d3a
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,13 @@ using ::boost::put;
#include <utility> // STL Header
#include <boost/config.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION > 107300 && BOOST_VERSION < 107600
#define BOOST_ALLOW_DEPRECATED_HEADERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment