Skip to content

Commit

Permalink
Add boost version check for vector/small_vector include in future_dat…
Browse files Browse the repository at this point in the history
…a.hpp
  • Loading branch information
msimberg committed Feb 5, 2018
1 parent b905b35 commit 2394aac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hpx/lcos/detail/future_data.hpp
Expand Up @@ -28,7 +28,12 @@
#include <hpx/util/unused.hpp>

#include <boost/intrusive_ptr.hpp>

#if BOOST_VERSION < 105800
#include <vector>
#else
#include <boost/container/small_vector.hpp>
#endif

#include <chrono>
#include <cstddef>
Expand Down

0 comments on commit 2394aac

Please sign in to comment.