Blame SOURCES/boost-1.58.0-variant-includes.patch

e1f61e
commit 2b2cc6543c44beeb8331dc8e1a7eff2e071a8cc8
e1f61e
Author: Antony Polukhin <antoshkka@gmail.com>
e1f61e
Date:   Sun May 10 21:53:27 2015 +0300
e1f61e
e1f61e
    Fix error with missing include, that was found by Maarten de Vries
e1f61e
e1f61e
diff --git a/include/boost/variant/detail/element_index.hpp b/include/boost/variant/detail/element_index.hpp
e1f61e
index bd80bdd..842b018 100644
e1f61e
--- a/include/boost/variant/detail/element_index.hpp
e1f61e
+++ b/include/boost/variant/detail/element_index.hpp
e1f61e
@@ -16,6 +16,7 @@
e1f61e
 #include "boost/variant/recursive_wrapper_fwd.hpp"
e1f61e
 #include "boost/variant/variant_fwd.hpp"
e1f61e
 
e1f61e
+#include "boost/type_traits/remove_cv.hpp"
e1f61e
 #include "boost/mpl/find_if.hpp"
e1f61e
 
e1f61e
 namespace boost { namespace detail { namespace variant {