We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea94263 commit 4bcfd89Copy full SHA for 4bcfd89
test/range_distance_compat_test.cpp
@@ -4,6 +4,15 @@
4
// (See accompanying file LICENSE_1_0.txt or copy at
5
// http://www.boost.org/LICENSE_1_0.txt)
6
7
+// The following Boost.MPL includes are needed to mitigate the missing includes in Boost.Range.
8
+// They can be removed once https://github.com/boostorg/range/pull/154 is merged.
9
+// -- Begin workaround includes
10
+#include <boost/mpl/assert.hpp>
11
+#include <boost/mpl/eval_if.hpp>
12
+#include <boost/mpl/and.hpp>
13
+#include <boost/mpl/identity.hpp>
14
+// -- End of workaround includes
15
+
16
#include <boost/range/distance.hpp>
17
#include <boost/range/iterator_range_core.hpp>
18
#include <boost/iterator/distance.hpp>
0 commit comments