File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
include/boost/geometry/index/detail/algorithms Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 1616#ifndef BOOST_GEOMETRY_INDEX_DETAIL_ALGORITHMS_CONTENT_HPP
1717#define BOOST_GEOMETRY_INDEX_DETAIL_ALGORITHMS_CONTENT_HPP
1818
19+ #include < boost/config.hpp>
20+
1921#include < boost/geometry/core/access.hpp>
2022#include < boost/geometry/core/coordinate_dimension.hpp>
2123#include < boost/geometry/core/coordinate_type.hpp>
2628
2729namespace boost { namespace geometry { namespace index { namespace detail {
2830
31+ #if defined(BOOST_GCC)
32+ #pragma GCC push_options
33+ #pragma GCC optimize ("fp-contract=off")
34+ #endif
35+
2936template <typename Indexable>
3037struct default_content_result
3138{
@@ -98,6 +105,10 @@ typename default_content_result<Indexable>::type content(Indexable const& b)
98105 >::apply (b);
99106}
100107
108+ #if defined(BOOST_GCC)
109+ #pragma GCC pop_options
110+ #endif
111+
101112}}}} // namespace boost::geometry::index::detail
102113
103114#endif // BOOST_GEOMETRY_INDEX_DETAIL_ALGORITHMS_CONTENT_HPP
You can’t perform that action at this time.
0 commit comments