pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc boost: updated to 1.72.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/76f76ec594b8
branches:  trunk
changeset: 421163:76f76ec594b8
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Jan 12 10:10:03 2020 +0000

description:
boost: updated to 1.72.0

Version 1.72.0

Asio:
Changed the async_initiate helper function to automatically deduce its return type, for C++11 or later.
Changed all asynchronous operations to use automatically deduced return types, for C++14 or later.
Introduced concepts to support async_initiate.
Added the nested template type rebind_executor to all I/O object types.
Changed the initiation function objects to report their associated I/O executor via the nested type executor_type and member function get_executor().
Added the default_completion_token trait, giving I/O executor types an associated default completion token type for use with asynchronous operations. This trait is specialised for the use_awaitable 
completion token, for example, to allow asynchronous operations to be used as follows: co_await socket.async_connect(my_endpoint).
Added missing async_initiate to the Windows-specific I/O objects' asynchronous operations.
Ensured that the executor type is propagated to newly accepted sockets.
Changed to require that Protocol copy and move operations never throw.
Changed to require that Endpoint default constructor and move operations never throw.
Added the noexcept qualifier to protocol accessors.
Added the noexcept qualifier to socket move constructors.
Fixed issues associated with opening serial ports on Windows:
Use the correct constant to initialise the RTS control flag.
Specify a default baud rate (9600).
Fixed a lost "outstanding work count" that can occur when an asynchronous accept operation is automatically restarted.
Consult the Revision History for further details.

Atomic:
Added a workaround for __float128 not being considered as a floating point type by some versions of libstdc++.
Improved compatibility with clang-win compiler.

Beast:
This is a maintenance update containing bug fixes, and updates to use the new features delivered in Boost.Asio.
We'd love to know how you or your company use Beast, consider adding an entry to the Companies and Individuals Using Beast list.
See the full Release Notes for a complete list of changes.

Circular Buffer:
Fix: max_size() now takes the allocator's max_size() into account. (Glen Fernandes)

Context:
architecture s390x supported
execution_context removed

Endian:
Made endian_reverse, conditional_reverse and *_to_* constexpr on GCC and Clang
Added convenience load and store functions
Added floating point convenience typedefs
Added a non-const overload of data(); changed its return type to unsigned char*
Added __int128 support to endian_reverse when available
Added a convenience header boost/endian.hpp

Filesystem:
Extracted filesystem_error to exception.hpp; file_status and associated enums and functions to file_status.hpp; directory_entry, directory_iterator and recursive_directory_iterator to directory.hpp.
Deprecated: For backward compatibility operations.hpp still includes the new headers exception.hpp, file_status.hpp and directory.hpp, unless BOOST_FILESYSTEM_NO_DEPRECATED macro is defined. These 
implicit includes are considered deprecated and will be removed in a future release. Users are encouraged to include the new headers directly or include filesystem.hpp.
The filesystem_error exception is now implemented in the compiled library of Boost.Filesystem. Users may need to add linking with Boost.Filesystem library in their projects.
On POSIX.1-2008 platforms, use utimensat instead of utime. utime is declared obsolete in POSIX.1-2008 and can be disabled e.g. in uClibc-ng.
directory_iterator is now left in the end state on memory allocation errors.
In directory_iterator on POSIX systems, support for readdir/readdir_r has been reworked to avoid memory allocations for dirent structures when readdir is used. This reduces memory consumption and 
eliminates the possibility of buffer overruns in case if readdir produces a very long directory name.
On Windows, use Boost.WinAPI to select the target Windows version.
New: Added directory_options enum, which reflects the same named enum from C++20. The enum is supported in directory_iterator and recursive_directory_iterator to customize iteration behavior. In 
particular, the iterators now support skipping directories that can't be opened due to insufficient permissions. The symlink_option enum is now deprecated and should be replaced with 
directory_options.
By default, recursive_directory_iterator is now reset to the end state in case of errors, as required by C++20.
New: Added directory_options::pop_on_error option, which configures recursive_directory_iterator so that it attempts to recover from iteration errors by repeatedly invoking pop() until it succeeds or 
the end state is reached.
New: Added directory_options::skip_dangling_symlinks option, which configures recursive_directory_iterator so that it doesn't follow dangling directory symlinks and continues iteration instead of 
reporting an error.
Deprecated: The following members of recursive_directory_iterator are now marked as deprecated: level(), no_push_pending(), no_push_request(), no_push(). Users are advised to replace their use with 
the standard counterparts: depth(), recursion_pending(), disable_recursion_pending(). Note that recursion_pending() has the opposite meaning compared to no_push_pending() and no_push_request(). 
Deprecated methods will be removed in a future release.
Fixed path::lexically_relative (and any dependent algorithms) to correctly handle empty, dot and dot-dot path elements in its argument. The behavior is made closer to C++17 
std::path::lexically_relative in that empty and dot path elements are ignored and dot-dot path elements are accounted by decreasing the number of dot-dot path elements to generate in the resulting 
relative path.

Functional/Factory:
Glen Fernandes rewrote the implementations of factory and value_factory to provide the following features:
Support r-value arguments when possible
Support arbitrary number of arguments via variadic templates when possible
Support allocators that are final
Support allocators that use fancy pointers
Support for disabled exceptions (BOOST_NO_EXCEPTIONS)
Improved compilation times
The following features have been removed:
Increasing limits for C++03 compilers through BOOST_FUNCTIONAL_VALUE_FACTORY_MAX_ARITY
Using boost::none_t in place of void through BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T

GIL:
Added
GSoC 2019: Lanczos resampling for image down scaling.
GSoC 2019: Methods for binary thresholding, inverted binary thresholding and truncation thresholding.
GSoC 2019: Otsu thresholding method.
GSoC 2019: Adaptive thresholding using mean or gaussian-weighted sum of the neighbourhood area.
GSoC 2019: Harris response calculation (corner detector without non-maximum filtering).
GSoC 2019: Hessian corner detector.
GSoC 2019: Types for defining 2D kernel, kernel_2d and kernel_2d_fixed, in Numeric extension.
GSoC 2019: Implementation of 2D convolution as new function convolve_2d.
GSoC 2019: Box filtering using the average filter.
GSoC 2019: Blur function based on normalized mean filter.
GSoC 2019: Sobel and Scharr operators.
GSoC 2019: Median filter to remove noise from image.
Continued adding new test cases and significantly improved overall test coverage.
Documented purpose of cached_location_t.
Function convolve_1d in Numeric extension for convenient use of convolve_rows and convolve_cols.
Function extend_boundary in Numeric extension to perform image boundary extension.
Project release notes maintained in Markdown file RELEASES.md.

Changed
Move all tests, core features and extensions, inside test/ directory.

Removed
Replace Boost.MPL with Boost.MP11.
Removed use of Boost.TypeTraits.
Dropped support for GCC <= 4.8.
Remove include/boost/gil/version.hpp file as unused.

Fixed
Undetermined value of default-initialized channel and pixel objects.
Undefined behaviour due to std::is_trivially_default_constructible specializations.
Crash when reading PNG files with an invalid header.
Applied the Rule of Three for numerous types.
Removed uses of deprecated implicit definition of defaulted copy assignment operator or copy constructor.

Histogram:
Several new features and performance improvements, some bug-fixes
See the full Release Notes for a complete list of changes

Log:
Improved compatibility with clang-win compiler.

MPI:
Documentation clarifications.
Fixed scatterv bug when using explicit input buffer offsets.
Enable usage of MPI_Probe and friend with Intel MPI >= 2019.4
Symbol visibility on Windows

Math:
Added Hypergeometric functions 1F0, 0F1, 2F0, 1F1 and pFq.
Added Jacobi polynomial (and derivatives) evaluation.
Added Gegenbauer polynomial (and derivatives) evaluation.
Added Cardinal B-Splines (and derivatives) as polynomial functions in their own right.
Added Cardinal Trigonometric Interpolation.
Added new statistics sub-section.
Added One Sample Student's T Test.
Added Anderson Darling test for normality.
Added Ljung Box test for auto-correlation.
Added Runs test for random sequences.
The headers boost/math/tools/univariate_statistics.hpp and boost/math/tools/bivariate_statistics.hpp, have been deprecated in favor of boost/math/statistics/univariate_statistics.hpp and 
boost/math/statistics/bivariate_statistics.hpp.
Added The Empirical CDF distribution.
Reworked the Sterling approximation used by multiprecision gamma functions to be applicable to all the function that use the Lanczos approximation at regular precision. Also extended Lanczos 
approximations up to 100 decimal digit precision.

Multiprecision:
Big constexpr update allows cpp_int and float128 arithmetic to be fully constexpr with gcc and clang 9 or later, or any compiler supporting std::is_constant_evaluated().
Fix bug in variable precision mpf_float which causes it to go into a tailspin trying to select the correct precision - see https://github.com/boostorg/multiprecision/issues/164.

Outcome:
Enhancements:
Standalone outcome is now make install-able, and cmake find_package() can find it. Note that you must separately install and find_package() Outcome's dependency, quickcpplib, else find_package() of 
Outcome will fail.
The git submodule mechanism used by standalone Outcome of specifying dependent libraries has been replaced with a cmake superbuild of dependencies mechanism instead. Upon cmake configure, an internal 
copy of quickcpplib will be git cloned, built and installed into the build directory from where an internal find_package() uses it. This breaks the use of the unconfigured Outcome repo as an 
implementation of Outcome, one must now do one of: 1. Add Outcome as subdirectory to cmake build. 2. Use cmake superbuild (i.e. ExternalProject_Add()) to build and install Outcome into a local 
installation. 3. Use one of the single header editions.
For standalone Outcome, the current compiler is now checked for whether it will compile code containing C++ Concepts, and if it does, all cmake consumers of Outcome will enable C++ Concepts. Set the 
cmake variable CXX_CONCEPTS_FLAGS to an empty string to prevent auto detection and enabling of C++ Concepts support occurring.
OUTCOME_TRY operation now hints to the compiler that operation will be successful. [P1886 Error speed benchmarking](https://wg21.link/P1886) showed that there is considerable gain in very small 
functions by hinting to the compiler whether the expression is expected to be successful or not. OUTCOME_TRY previously did not hint to the compiler at all, but now it does. A new suite of macros 
OUTCOME_TRY_FAILURE_LIKELY hint to the compiler that failure is expected. If you wish to return to the previously unhinted behaviour, define OUTCOME_TRY_LIKELY(expr) to (!!expr).
Support for C++ Coroutines has been added. This comes in two parts, firstly there is now an OUTCOME_CO_TRY() operation suitable for performing the TRY operation from within a C++ Coroutine. Secondly, 
in the header outcome/coroutine_support.hpp there are implementations of eager<OutcomeType> and lazy<OutcomeType> which let you more naturally and efficiently use basic_result or basic_outcome from 
within C++ Coroutines -- specifically, if the result or outcome will construct from an exception pointer, exceptions thrown in the coroutine return an errored or excepted result with the thrown 
exception instead of throwing the exception through the coroutine machinery (which in current compilers, has a high likelihood of blowing up the program). Both eager<T> and lazy<T> can accept any T 
as well. Both have been tested and found working on VS2019 and clang 9.
make_error_code() and make_exception_ptr() are now additionally considered for compatible copy and move conversions for basic_result<>. This lets you construct a basic_result<T, E> into a 
basic_result<T, error_code>, where E is a custom type which has implemented the ADL discovered free function error_code make_error_code(E), but is otherwise unrelated to error_code. The same 
availability applies for exception_ptr with make_exception_ptr() being the ADL discovered free function. basic_outcome<> has less support for this than basic_result<> in order to keep constructor 
count down, but it will accept via this mechanism conversions from basic_result<> and failure_type<>.

Bug fixes:
The detection of [[nodiscard]] support in the compiler was very mildly broken.

PolyCollection:
Maintenance work.

Preprocessor:
Topic added which discusses emptiness
Support for the C++20 __VA_OPT__ construct
BOOST_PP_VARIADIC_HAS_OPT whether __VA_OPT__ is supported at the C++20 level
BOOST_PP_CHECK_EMPTY test for emptiness using __VA_OPT__ at the C++20 level
BOOST_PP_VA_OPT more flexible alternative to __VA_OPT__ at the C++20 level

Smart Pointers:
Implemented allocate_unique for scalars and arrays. (Glen Fernandes)

Test:
Boost.test v3.12 see the Changes log for more details.
New feature:
Support for C++17 std::string_view has been added.
Better diagnostic on boost::exception and no rtti mode (thanks to Mikhail Pilin / [pull_request 234])

VMD:
BOOST_VMD_IS_EMPTY updated to use __VA_OPT__ at the C++20 level has 100% reliability

diffstat:

 devel/boost-build/buildlink3.mk                                      |    4 +-
 devel/boost-headers/Makefile                                         |    3 +-
 devel/boost-headers/PLIST                                            |  125 +++++++-
 devel/boost-headers/buildlink3.mk                                    |    4 +-
 devel/boost-jam/Makefile                                             |    9 +-
 devel/boost-jam/buildlink3.mk                                        |    4 +-
 devel/boost-libs/PLIST                                               |  146 +++++-----
 devel/boost-libs/buildlink3.mk                                       |    6 +-
 devel/boost-mpi/PLIST                                                |    4 +-
 devel/boost-mpi/buildlink3.mk                                        |    6 +-
 devel/py-boost/Makefile                                              |   17 +-
 devel/py-boost/PLIST                                                 |    6 +-
 devel/py-boost/buildlink3.mk                                         |    6 +-
 meta-pkgs/boost/Makefile.common                                      |    4 +-
 meta-pkgs/boost/distinfo                                             |   12 +-
 meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp |   23 +-
 16 files changed, 221 insertions(+), 158 deletions(-)

diffs (truncated from 1072 to 300 lines):

diff -r a09f13439014 -r 76f76ec594b8 devel/boost-build/buildlink3.mk
--- a/devel/boost-build/buildlink3.mk   Sun Jan 12 09:09:41 2020 +0000
+++ b/devel/boost-build/buildlink3.mk   Sun Jan 12 10:10:03 2020 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.42 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.43 2020/01/12 10:10:03 adam Exp $
 
 BUILDLINK_TREE+=       boost-build
 
 .if !defined(BOOST_BUILD_BUILDLINK3_MK)
 BOOST_BUILD_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.boost-build+=    boost-build-1.71.*
+BUILDLINK_API_DEPENDS.boost-build+=    boost-build-1.72.*
 BUILDLINK_DEPMETHOD.boost-build?=      build
 BUILDLINK_PKGSRCDIR.boost-build?=      ../../devel/boost-build
 .endif # BOOST_BUILD_BUILDLINK3_MK
diff -r a09f13439014 -r 76f76ec594b8 devel/boost-headers/Makefile
--- a/devel/boost-headers/Makefile      Sun Jan 12 09:09:41 2020 +0000
+++ b/devel/boost-headers/Makefile      Sun Jan 12 10:10:03 2020 +0000
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.57 2019/10/09 19:17:45 ryoon Exp $
+# $NetBSD: Makefile,v 1.58 2020/01/12 10:10:03 adam Exp $
 
-PKGREVISION=           2
 BOOST_PACKAGE=         headers
 BOOST_COMMENT=         (build-time headers)
 BOOST_CONFIG=          generate
diff -r a09f13439014 -r 76f76ec594b8 devel/boost-headers/PLIST
--- a/devel/boost-headers/PLIST Sun Jan 12 09:09:41 2020 +0000
+++ b/devel/boost-headers/PLIST Sun Jan 12 10:10:03 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.45 2019/08/23 01:08:50 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.46 2020/01/12 10:10:03 adam Exp $
 include/boost/accumulators/accumulators.hpp
 include/boost/accumulators/accumulators_fwd.hpp
 include/boost/accumulators/framework/accumulator_base.hpp
@@ -1941,10 +1941,6 @@
 include/boost/context/detail/invoke.hpp
 include/boost/context/detail/prefetch.hpp
 include/boost/context/detail/tuple.hpp
-include/boost/context/execution_context.hpp
-include/boost/context/execution_context_v1.hpp
-include/boost/context/execution_context_v2.hpp
-include/boost/context/execution_context_v2_void.ipp
 include/boost/context/fiber.hpp
 include/boost/context/fiber_fcontext.hpp
 include/boost/context/fiber_ucontext.hpp
@@ -1986,6 +1982,7 @@
 include/boost/contract/detail/debug.hpp
 include/boost/contract/detail/decl.hpp
 include/boost/contract/detail/declspec.hpp
+include/boost/contract/detail/exception.hpp
 include/boost/contract/detail/inlined.hpp
 include/boost/contract/detail/inlined/core/exception.hpp
 include/boost/contract/detail/inlined/detail/checking.hpp
@@ -2048,6 +2045,7 @@
 include/boost/core/noinit_adaptor.hpp
 include/boost/core/noncopyable.hpp
 include/boost/core/null_deleter.hpp
+include/boost/core/nvp.hpp
 include/boost/core/pointer_traits.hpp
 include/boost/core/quick_exit.hpp
 include/boost/core/ref.hpp
@@ -2360,6 +2358,7 @@
 include/boost/dynamic_bitset/serialization.hpp
 include/boost/dynamic_bitset_fwd.hpp
 include/boost/enable_shared_from_this.hpp
+include/boost/endian.hpp
 include/boost/endian/arithmetic.hpp
 include/boost/endian/buffers.hpp
 include/boost/endian/conversion.hpp
@@ -2470,7 +2469,9 @@
 include/boost/filesystem/convenience.hpp
 include/boost/filesystem/detail/macro_value.hpp
 include/boost/filesystem/detail/utf8_codecvt_facet.hpp
+include/boost/filesystem/directory.hpp
 include/boost/filesystem/exception.hpp
+include/boost/filesystem/file_status.hpp
 include/boost/filesystem/fstream.hpp
 include/boost/filesystem/operations.hpp
 include/boost/filesystem/path.hpp
@@ -3694,10 +3695,10 @@
 include/boost/geometry/algorithms/detail/buffer/buffered_ring.hpp
 include/boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp
 include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp
-include/boost/geometry/algorithms/detail/buffer/parallel_continue.hpp
 include/boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp
 include/boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp
 include/boost/geometry/algorithms/detail/calculate_null.hpp
+include/boost/geometry/algorithms/detail/calculate_point_order.hpp
 include/boost/geometry/algorithms/detail/calculate_sum.hpp
 include/boost/geometry/algorithms/detail/centroid/translating_transformer.hpp
 include/boost/geometry/algorithms/detail/check_iterator_range.hpp
@@ -3804,6 +3805,7 @@
 include/boost/geometry/algorithms/detail/is_valid/polygon.hpp
 include/boost/geometry/algorithms/detail/is_valid/ring.hpp
 include/boost/geometry/algorithms/detail/is_valid/segment.hpp
+include/boost/geometry/algorithms/detail/make/make.hpp
 include/boost/geometry/algorithms/detail/max_interval_gap.hpp
 include/boost/geometry/algorithms/detail/multi_modify.hpp
 include/boost/geometry/algorithms/detail/multi_modify_with_predicate.hpp
@@ -3856,6 +3858,7 @@
 include/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
 include/boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp
 include/boost/geometry/algorithms/detail/overlay/ring_properties.hpp
+include/boost/geometry/algorithms/detail/overlay/segment_as_subrange.hpp
 include/boost/geometry/algorithms/detail/overlay/segment_identifier.hpp
 include/boost/geometry/algorithms/detail/overlay/select_rings.hpp
 include/boost/geometry/algorithms/detail/overlay/self_turn_points.hpp
@@ -3959,6 +3962,7 @@
 include/boost/geometry/arithmetic/cross_product.hpp
 include/boost/geometry/arithmetic/determinant.hpp
 include/boost/geometry/arithmetic/dot_product.hpp
+include/boost/geometry/arithmetic/infinite_line_functions.hpp
 include/boost/geometry/arithmetic/normalize.hpp
 include/boost/geometry/core/access.hpp
 include/boost/geometry/core/assert.hpp
@@ -3996,6 +4000,7 @@
 include/boost/geometry/formulas/gnomonic_spheroid.hpp
 include/boost/geometry/formulas/interpolate_point_spherical.hpp
 include/boost/geometry/formulas/karney_direct.hpp
+include/boost/geometry/formulas/karney_inverse.hpp
 include/boost/geometry/formulas/mean_radius.hpp
 include/boost/geometry/formulas/meridian_direct.hpp
 include/boost/geometry/formulas/meridian_inverse.hpp
@@ -4045,6 +4050,7 @@
 include/boost/geometry/geometries/concepts/segment_concept.hpp
 include/boost/geometry/geometries/geometries.hpp
 include/boost/geometry/geometries/helper_geometry.hpp
+include/boost/geometry/geometries/infinite_line.hpp
 include/boost/geometry/geometries/linestring.hpp
 include/boost/geometry/geometries/multi_linestring.hpp
 include/boost/geometry/geometries/multi_point.hpp
@@ -4257,6 +4263,7 @@
 include/boost/geometry/policies/robustness/get_rescale_policy.hpp
 include/boost/geometry/policies/robustness/no_rescale_policy.hpp
 include/boost/geometry/policies/robustness/rescale_policy.hpp
+include/boost/geometry/policies/robustness/rescale_policy_tags.hpp
 include/boost/geometry/policies/robustness/robust_point_type.hpp
 include/boost/geometry/policies/robustness/robust_type.hpp
 include/boost/geometry/policies/robustness/segment_ratio.hpp
@@ -4276,7 +4283,6 @@
 include/boost/geometry/srs/projections/esri_traits.hpp
 include/boost/geometry/srs/projections/exception.hpp
 include/boost/geometry/srs/projections/factory.hpp
-include/boost/geometry/srs/projections/factory_key.hpp
 include/boost/geometry/srs/projections/grids.hpp
 include/boost/geometry/srs/projections/iau2000.hpp
 include/boost/geometry/srs/projections/iau2000_params.hpp
@@ -4290,7 +4296,6 @@
 include/boost/geometry/srs/projections/impl/function_overloads.hpp
 include/boost/geometry/srs/projections/impl/geocent.hpp
 include/boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp
-include/boost/geometry/srs/projections/impl/pj_apply_gridshift_shared.hpp
 include/boost/geometry/srs/projections/impl/pj_auth.hpp
 include/boost/geometry/srs/projections/impl/pj_datum_set.hpp
 include/boost/geometry/srs/projections/impl/pj_datums.hpp
@@ -4300,7 +4305,6 @@
 include/boost/geometry/srs/projections/impl/pj_gauss.hpp
 include/boost/geometry/srs/projections/impl/pj_gridinfo.hpp
 include/boost/geometry/srs/projections/impl/pj_gridlist.hpp
-include/boost/geometry/srs/projections/impl/pj_gridlist_shared.hpp
 include/boost/geometry/srs/projections/impl/pj_init.hpp
 include/boost/geometry/srs/projections/impl/pj_inv.hpp
 include/boost/geometry/srs/projections/impl/pj_mlfn.hpp
@@ -4416,11 +4420,12 @@
 include/boost/geometry/srs/projections/proj/wink1.hpp
 include/boost/geometry/srs/projections/proj/wink2.hpp
 include/boost/geometry/srs/projections/proj4.hpp
-include/boost/geometry/srs/projections/shared_grids.hpp
 include/boost/geometry/srs/projections/spar.hpp
 include/boost/geometry/srs/projections/srid_traits.hpp
 include/boost/geometry/srs/projections/str_cast.hpp
 include/boost/geometry/srs/shared_grids.hpp
+include/boost/geometry/srs/shared_grids_boost.hpp
+include/boost/geometry/srs/shared_grids_std.hpp
 include/boost/geometry/srs/sphere.hpp
 include/boost/geometry/srs/spheroid.hpp
 include/boost/geometry/srs/srs.hpp
@@ -4471,12 +4476,14 @@
 include/boost/geometry/strategies/cartesian/expand_segment.hpp
 include/boost/geometry/strategies/cartesian/index.hpp
 include/boost/geometry/strategies/cartesian/intersection.hpp
+include/boost/geometry/strategies/cartesian/io.hpp
 include/boost/geometry/strategies/cartesian/line_interpolate.hpp
 include/boost/geometry/strategies/cartesian/point_in_box.hpp
 include/boost/geometry/strategies/cartesian/point_in_point.hpp
 include/boost/geometry/strategies/cartesian/point_in_poly_crossings_multiply.hpp
 include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp
 include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp
+include/boost/geometry/strategies/cartesian/point_order.hpp
 include/boost/geometry/strategies/cartesian/side_by_triangle.hpp
 include/boost/geometry/strategies/cartesian/side_of_intersection.hpp
 include/boost/geometry/strategies/centroid.hpp
@@ -4512,6 +4519,7 @@
 include/boost/geometry/strategies/geographic/distance_cross_track.hpp
 include/boost/geometry/strategies/geographic/distance_cross_track_box_box.hpp
 include/boost/geometry/strategies/geographic/distance_cross_track_point_box.hpp
+include/boost/geometry/strategies/geographic/distance_karney.hpp
 include/boost/geometry/strategies/geographic/distance_segment_box.hpp
 include/boost/geometry/strategies/geographic/distance_thomas.hpp
 include/boost/geometry/strategies/geographic/distance_vincenty.hpp
@@ -4521,10 +4529,12 @@
 include/boost/geometry/strategies/geographic/index.hpp
 include/boost/geometry/strategies/geographic/intersection.hpp
 include/boost/geometry/strategies/geographic/intersection_elliptic.hpp
+include/boost/geometry/strategies/geographic/io.hpp
 include/boost/geometry/strategies/geographic/line_interpolate.hpp
 include/boost/geometry/strategies/geographic/mapping_ssf.hpp
 include/boost/geometry/strategies/geographic/parameters.hpp
 include/boost/geometry/strategies/geographic/point_in_poly_winding.hpp
+include/boost/geometry/strategies/geographic/point_order.hpp
 include/boost/geometry/strategies/geographic/side.hpp
 include/boost/geometry/strategies/geographic/side_andoyer.hpp
 include/boost/geometry/strategies/geographic/side_thomas.hpp
@@ -4533,8 +4543,10 @@
 include/boost/geometry/strategies/intersection.hpp
 include/boost/geometry/strategies/intersection_result.hpp
 include/boost/geometry/strategies/intersection_strategies.hpp
+include/boost/geometry/strategies/io.hpp
 include/boost/geometry/strategies/line_interpolate.hpp
 include/boost/geometry/strategies/normalize.hpp
+include/boost/geometry/strategies/point_order.hpp
 include/boost/geometry/strategies/relate.hpp
 include/boost/geometry/strategies/side.hpp
 include/boost/geometry/strategies/side_info.hpp
@@ -4560,9 +4572,11 @@
 include/boost/geometry/strategies/spherical/get_radius.hpp
 include/boost/geometry/strategies/spherical/index.hpp
 include/boost/geometry/strategies/spherical/intersection.hpp
+include/boost/geometry/strategies/spherical/io.hpp
 include/boost/geometry/strategies/spherical/line_interpolate.hpp
 include/boost/geometry/strategies/spherical/point_in_point.hpp
 include/boost/geometry/strategies/spherical/point_in_poly_winding.hpp
+include/boost/geometry/strategies/spherical/point_order.hpp
 include/boost/geometry/strategies/spherical/side_by_cross_track.hpp
 include/boost/geometry/strategies/spherical/ssf.hpp
 include/boost/geometry/strategies/strategies.hpp
@@ -4646,6 +4660,11 @@
 include/boost/gil/concepts/pixel_locator.hpp
 include/boost/gil/concepts/point.hpp
 include/boost/gil/deprecated.hpp
+include/boost/gil/detail/is_channel_integral.hpp
+include/boost/gil/detail/math.hpp
+include/boost/gil/detail/mp11.hpp
+include/boost/gil/detail/std_common_type.hpp
+include/boost/gil/detail/type_traits.hpp
 include/boost/gil/device_n.hpp
 include/boost/gil/dynamic_step.hpp
 include/boost/gil/extension/dynamic_image/algorithm.hpp
@@ -4775,6 +4794,12 @@
 include/boost/gil/extension/toolbox/toolbox.hpp
 include/boost/gil/gray.hpp
 include/boost/gil/image.hpp
+include/boost/gil/image_processing/filter.hpp
+include/boost/gil/image_processing/harris.hpp
+include/boost/gil/image_processing/hessian.hpp
+include/boost/gil/image_processing/numeric.hpp
+include/boost/gil/image_processing/scaling.hpp
+include/boost/gil/image_processing/threshold.hpp
 include/boost/gil/image_view.hpp
 include/boost/gil/image_view_factory.hpp
 include/boost/gil/io/base.hpp
@@ -4823,7 +4848,6 @@
 include/boost/gil/step_iterator.hpp
 include/boost/gil/typedefs.hpp
 include/boost/gil/utilities.hpp
-include/boost/gil/version.hpp
 include/boost/gil/virtual_locator.hpp
 include/boost/graph/accounting.hpp
 include/boost/graph/adj_list_serialize.hpp
@@ -5535,6 +5559,8 @@
 include/boost/histogram/accumulators/thread_safe.hpp
 include/boost/histogram/accumulators/weighted_mean.hpp
 include/boost/histogram/accumulators/weighted_sum.hpp
+include/boost/histogram/algorithm.hpp
+include/boost/histogram/algorithm/empty.hpp
 include/boost/histogram/algorithm/project.hpp
 include/boost/histogram/algorithm/reduce.hpp
 include/boost/histogram/algorithm/sum.hpp
@@ -5543,6 +5569,7 @@
 include/boost/histogram/axis/integer.hpp
 include/boost/histogram/axis/interval_view.hpp
 include/boost/histogram/axis/iterator.hpp
+include/boost/histogram/axis/metadata_base.hpp
 include/boost/histogram/axis/option.hpp
 include/boost/histogram/axis/ostream.hpp
 include/boost/histogram/axis/polymorphic_bin.hpp
@@ -5550,28 +5577,36 @@
 include/boost/histogram/axis/traits.hpp
 include/boost/histogram/axis/variable.hpp
 include/boost/histogram/axis/variant.hpp
+include/boost/histogram/detail/accumulator_traits.hpp
 include/boost/histogram/detail/args_type.hpp
-include/boost/histogram/detail/attribute.hpp
+include/boost/histogram/detail/argument_traits.hpp
+include/boost/histogram/detail/array_wrapper.hpp
+include/boost/histogram/detail/at.hpp
 include/boost/histogram/detail/axes.hpp



Home | Main Index | Thread Index | Old Index