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.67.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1cb00c2f95c2
branches:  trunk
changeset: 306947:1cb00c2f95c2
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Apr 29 20:41:11 2018 +0000
description:
boost: updated to 1.67.0

Version 1.67.0:
New Libraries:
- Contract: Contract programming for C++.
- HOF: Higher-order functions for C++.

Updated Libraries:
- Asio:
Added missing const qualifier to basic_socket_acceptor::get_option.
Worked around a parsing error that occurs with some versions of gcc.
Fixed broken code samples in tutorial.
Added new experimental features. (Note that "experimental" features may be changed without notice in subsequent releases.)
Added experimental::detached completion token.
Added experimental::redirect_error completion token.
Added experimental::co_spawn facility for integration with the coroutines technical specification.
Updated timeout examples to use latest features.
Used asio::steady_timer rather than asio::deadline_timer.
Used asio::dynamic_buffer rather than asio::streambuf.
Used timed asio::io_context::run_for() function for blocking clients.
Added example showing a custom completion token for blocking with timeouts.
Fixed unit tests to compile when BOOST_ASIO_NO_DEPRECATED is defined.
Changed socket iostreams to use chrono by default, to fix compatibility with the Networking TS. Define BOOST_ASIO_USE_BOOST_DATE_TIME_FOR_SOCKET_IOSTREAM to enable the old Boost.Date_Time interface 
in basic_socket_streambuf and basic_socket_iostream.
Updated examples to use chrono rather than Boost.Date_Time.
Fixed an incorrect member function detector in the is_dynamic_buffer trait.
Fixed an async_result incompatibility with deprecated handler_type.
Added a missing move optimisation in the SSL stream implementation.
Fixed incorrect basic_resolver_results::value_type typedef.
Fixed a compile error with some OpenSSL versions when SSL_OP_NO_COMPRESSION is defined.
Changed add_certificate_authority to process multiple certificates in a bundle.
Eliminated deprecation warning with MSVC by using std::invoke_result rather than std::result_of.
Changed to use std::string_view for C++17 or later, and std::experimental::string_view for C++14. Define the preprocessor macro BOOST_ASIO_DISABLE_STD_STRING_VIEW to force the use of 
std::experimental::string_view (assuming it is available) when compiling in C++17 mode.
Ensured DynamicBuffer template arguments are decayed before using in enable_if tests.
Changed documentation to distinguish legacy completion handlers (which are still required to be CopyConstructible) from new MoveConstructible handlers.
Suppressed a discarded return value warning in the buffer debugging support.
Fixed basic_yield_context to work with completion signatures containing reference parameters.
Ensured that stackful coroutines launched using spawn() correctly store decayed copies of their function and handler arguments.
Fixed some compatibility issues with Android.
Added cross-compilation support to Jamfiles.
Fixed some minor portability issues in examples.

- Atomic:
Breaking change: Changed the result of the (op)_and_test operations added in Boost 1.66 to the opposite - the functions now return true if the operation result is non-zero. This is consistent with 
other test methods in Boost.Atomic and the C++ standard library. Users can define BOOST_ATOMIC_DETAIL_HIGHLIGHT_OP_AND_TEST when compiling their code to emit warnings on every use of the changed 
functions. This way users can locate the code that needs to be updated.
Update for C++2a. On C++11 compilers that support scoped enums, the memory_order enumeration is now scoped and contains constants with shorter names like acquire, release or seq_cst (i.e. users can 
use memory_order::acquire instead of memory_order_acquire). The old constants are also provided for backward compatibility. (P0439R0)
Update for C++2a. Added experimental support for atomic operations on floating point types. In addition to general operations, add, sub, negate operations and their fetch_(op) and opaque_(op) 
versions are supported. Lock-free property can be tested with the new macros BOOST_ATOMIC_FLOAT/DOUBLE/LONG_DOUBLE_LOCK_FREE. The support for floating point types is optional and can be disabled by 
defining BOOST_ATOMIC_NO_FLOATING_POINT. (P0020R6)
Added new experimental operations:
negate_and_test and complement_and_test which perform negation or bitwise complement and return true if the result is not zero.
add, sub, negate, bitwise_and, bitwise_or, bitwise_xor, bitwise_complement operations which perform the operation and return its result.
For generic atomic<T> specialization, the default constructor is now trivial if T's default constructor is.
The internal implementation of atomic<T> has been updated to avoid undefined behavior that stems from signed integer overflows. As required by the C++ standard, the library uses two's complement 
representation of signed integers internally and accroding rules of overflow. Currently, the library requires the native signed integer types to also use two's complement representation (but no 
defined overflow semantics).
Improved Clang support. In particular, fixed DCAS not being lock-free and fixed possible incorrect code generated on 32-bit x86.
Improved MinGW support. For gcc versions up to 4.6, fixed compilation of DCAS on x86.
In x86 PIE code, asm blocks now preserve ebx value.

- Beast:
This version fixes significant defects in websocket::stream which can lead to asserts or undefined behavior. Users are encouraged to update to the latest Boost release.
For a complete list of changes, please view the official Release Notes.

- ContainerHash:
Extracted from the functional module to break a dependency cycle.
Moved headers to new location to reflect name change, the old include paths will still work.
Added support for std::string_view, std::error_code, std::error_condition, std::optional, std::variant, std::monostate where available.
Added explicit support for vector<bool>, so that it will work with libc++.
More detail in the library change log.

- Context:
fix i386/macho routines to correctly return transfer_t in EAX/EDX
__sanitizer_finish_switch_fiber should be called directly after context switch
Clang on Windows : error: No best alternative for libs/context/build/asm_sources
fixing C2492 for execution_context (v1)
known bug: including all.hpp + <context-impl>ucontext/winfib causes error 'forced_unwind: is not a member of boost::context::detail'

More info https://www.boost.org/users/history/version_1_67_0.html

diffstat:

 devel/boost-build/Makefile                                           |    6 +-
 devel/boost-build/PLIST                                              |    7 +-
 devel/boost-build/buildlink3.mk                                      |    4 +-
 devel/boost-headers/Makefile                                         |   10 +-
 devel/boost-headers/PLIST                                            |  472 +++++++++-
 devel/boost-headers/buildlink3.mk                                    |    4 +-
 devel/boost-jam/bjam.mk                                              |    3 +-
 devel/boost-jam/buildlink3.mk                                        |    4 +-
 devel/boost-libs/Makefile                                            |   26 +-
 devel/boost-libs/PLIST                                               |   20 +-
 devel/boost-libs/PLIST.Linux                                         |    4 -
 devel/boost-libs/buildlink3.mk                                       |    6 +-
 devel/boost-mpi/buildlink3.mk                                        |    6 +-
 devel/py-boost/Makefile                                              |   14 +-
 devel/py-boost/PLIST                                                 |   20 +-
 devel/py-boost/buildlink3.mk                                         |    6 +-
 meta-pkgs/boost/Makefile.common                                      |    6 +-
 meta-pkgs/boost/distinfo                                             |   20 +-
 meta-pkgs/boost/patches/patch-boost_asio_detail_config.hpp           |   17 -
 meta-pkgs/boost/patches/patch-boost_atomic_detail_ops_gcc_sparc.hpp  |   10 +-
 meta-pkgs/boost/patches/patch-boost_math_tools_config.hpp            |   17 +-
 meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp |   16 +-
 meta-pkgs/boost/patches/patch-boostcpp.jam                           |   21 +-
 meta-pkgs/boost/patches/patch-tools_build_src_tools_gcc.jam          |   17 -
 24 files changed, 567 insertions(+), 169 deletions(-)

diffs (truncated from 1635 to 300 lines):

diff -r f38dffe2d9e1 -r 1cb00c2f95c2 devel/boost-build/Makefile
--- a/devel/boost-build/Makefile        Sun Apr 29 20:41:04 2018 +0000
+++ b/devel/boost-build/Makefile        Sun Apr 29 20:41:11 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2014/08/13 10:56:35 adam Exp $
+# $NetBSD: Makefile,v 1.16 2018/04/29 20:41:11 adam Exp $
 
 BOOST_PACKAGE=         build
 BOOST_COMMENT=         (Boost.Build framework)
@@ -31,8 +31,8 @@
 .include "toolset.mk"
 
 post-extract:
-       ${FIND} ${WRKSRC}/tools/build/src -type d -exec ${CHMOD} 755 {} \;
-       ${FIND} ${WRKSRC}/tools/build/src -type f -exec ${CHMOD} 644 {} \;
+       ${FIND} ${WRKSRC}/tools/build/src -type d -exec ${CHMOD} 755 {} +
+       ${FIND} ${WRKSRC}/tools/build/src -type f -exec ${CHMOD} 644 {} +
 
 do-build:
        { ${ECHO} '# System wide configuration file for Boost.Build.' ; \
diff -r f38dffe2d9e1 -r 1cb00c2f95c2 devel/boost-build/PLIST
--- a/devel/boost-build/PLIST   Sun Apr 29 20:41:04 2018 +0000
+++ b/devel/boost-build/PLIST   Sun Apr 29 20:41:11 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.25 2018/01/01 20:36:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.26 2018/04/29 20:41:11 adam Exp $
 share/boost-build/__init__.py
 share/boost-build/bootstrap.jam
 share/boost-build/build-system.jam
@@ -72,7 +72,6 @@
 share/boost-build/tools/clang.jam
 share/boost-build/tools/common.jam
 share/boost-build/tools/common.py
-share/boost-build/tools/common_clang_vc.jam
 share/boost-build/tools/como-linux.jam
 share/boost-build/tools/como-win.jam
 share/boost-build/tools/como.jam
@@ -126,6 +125,7 @@
 share/boost-build/tools/features/objcflags-feature.jam
 share/boost-build/tools/features/optimization-feature.jam
 share/boost-build/tools/features/os-feature.jam
+share/boost-build/tools/features/relevant-feature.jam
 share/boost-build/tools/features/rtti-feature.jam
 share/boost-build/tools/features/runtime-feature.jam
 share/boost-build/tools/features/search-feature.jam
@@ -140,6 +140,7 @@
 share/boost-build/tools/features/variant-feature.jam
 share/boost-build/tools/features/version-feature.jam
 share/boost-build/tools/features/warnings-feature.jam
+share/boost-build/tools/flags.jam
 share/boost-build/tools/fop.jam
 share/boost-build/tools/fortran.jam
 share/boost-build/tools/gcc.jam
@@ -253,6 +254,7 @@
 share/boost-build/tools/xsltproc/test.xml
 share/boost-build/tools/xsltproc/test.xsl
 share/boost-build/tools/zlib.jam
+share/boost-build/tools/zstd.jam
 share/boost-build/util/__init__.py
 share/boost-build/util/assert.jam
 share/boost-build/util/container.jam
@@ -267,6 +269,7 @@
 share/boost-build/util/order.py
 share/boost-build/util/os.jam
 share/boost-build/util/os_j.py
+share/boost-build/util/param.jam
 share/boost-build/util/path.jam
 share/boost-build/util/path.py
 share/boost-build/util/print.jam
diff -r f38dffe2d9e1 -r 1cb00c2f95c2 devel/boost-build/buildlink3.mk
--- a/devel/boost-build/buildlink3.mk   Sun Apr 29 20:41:04 2018 +0000
+++ b/devel/boost-build/buildlink3.mk   Sun Apr 29 20:41:11 2018 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.37 2018/01/13 16:09:59 jperkin Exp $
+# $NetBSD: buildlink3.mk,v 1.38 2018/04/29 20:41:11 adam Exp $
 
 BUILDLINK_TREE+=       boost-build
 
 .if !defined(BOOST_BUILD_BUILDLINK3_MK)
 BOOST_BUILD_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.boost-build+=    boost-build-1.66.*
+BUILDLINK_API_DEPENDS.boost-build+=    boost-build-1.67.*
 BUILDLINK_DEPMETHOD.boost-build?=      build
 BUILDLINK_PKGSRCDIR.boost-build?=      ../../devel/boost-build
 .endif # BOOST_BUILD_BUILDLINK3_MK
diff -r f38dffe2d9e1 -r 1cb00c2f95c2 devel/boost-headers/Makefile
--- a/devel/boost-headers/Makefile      Sun Apr 29 20:41:04 2018 +0000
+++ b/devel/boost-headers/Makefile      Sun Apr 29 20:41:11 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.45 2018/01/04 10:25:35 maya Exp $
+# $NetBSD: Makefile,v 1.46 2018/04/29 20:41:11 adam Exp $
 
 BOOST_PACKAGE=         headers
 BOOST_COMMENT=         (build-time headers)
@@ -6,9 +6,7 @@
 
 .include "../../meta-pkgs/boost/Makefile.common"
 
-PKGREVISION=           1
-
-BJAM_ARGS+=            --without-* # disable all libraries
+BJAM_ARGS+=            --without-\*
 
 NO_BUILD=              yes
 
@@ -16,9 +14,9 @@
 
 do-install: bjam-install
        ${FIND} ${DESTDIR}${PREFIX}/include/boost \
-               -type f -print | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
+               -type f -exec ${CHOWN} ${SHAREOWN}:${SHAREGRP} {} +
        ${FIND} ${DESTDIR}${PREFIX}/include/boost \
-               -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE}
+               -type d -exec ${CHMOD} ${PKGDIRMODE} {} +
 
 PTHREAD_OPTS+=         require
 .include "../../mk/pthread.buildlink3.mk"
diff -r f38dffe2d9e1 -r 1cb00c2f95c2 devel/boost-headers/PLIST
--- a/devel/boost-headers/PLIST Sun Apr 29 20:41:04 2018 +0000
+++ b/devel/boost-headers/PLIST Sun Apr 29 20:41:11 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.39 2018/01/01 20:36:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.40 2018/04/29 20:41:11 adam Exp $
 include/boost/accumulators/accumulators.hpp
 include/boost/accumulators/accumulators_fwd.hpp
 include/boost/accumulators/framework/accumulator_base.hpp
@@ -612,6 +612,13 @@
 include/boost/asio/execution_context.hpp
 include/boost/asio/executor.hpp
 include/boost/asio/executor_work_guard.hpp
+include/boost/asio/experimental.hpp
+include/boost/asio/experimental/co_spawn.hpp
+include/boost/asio/experimental/detached.hpp
+include/boost/asio/experimental/impl/co_spawn.hpp
+include/boost/asio/experimental/impl/detached.hpp
+include/boost/asio/experimental/impl/redirect_error.hpp
+include/boost/asio/experimental/redirect_error.hpp
 include/boost/asio/generic/basic_endpoint.hpp
 include/boost/asio/generic/datagram_protocol.hpp
 include/boost/asio/generic/detail/endpoint.hpp
@@ -816,9 +823,11 @@
 include/boost/atomic/atomic.hpp
 include/boost/atomic/atomic_flag.hpp
 include/boost/atomic/capabilities.hpp
+include/boost/atomic/detail/addressof.hpp
 include/boost/atomic/detail/atomic_flag.hpp
 include/boost/atomic/detail/atomic_template.hpp
 include/boost/atomic/detail/bitwise_cast.hpp
+include/boost/atomic/detail/bitwise_fp_cast.hpp
 include/boost/atomic/detail/caps_gcc_alpha.hpp
 include/boost/atomic/detail/caps_gcc_arm.hpp
 include/boost/atomic/detail/caps_gcc_atomic.hpp
@@ -831,18 +840,29 @@
 include/boost/atomic/detail/caps_msvc_x86.hpp
 include/boost/atomic/detail/caps_windows.hpp
 include/boost/atomic/detail/config.hpp
+include/boost/atomic/detail/extra_fp_operations.hpp
+include/boost/atomic/detail/extra_fp_operations_fwd.hpp
+include/boost/atomic/detail/extra_fp_ops_emulated.hpp
+include/boost/atomic/detail/extra_fp_ops_generic.hpp
 include/boost/atomic/detail/extra_operations.hpp
 include/boost/atomic/detail/extra_operations_fwd.hpp
+include/boost/atomic/detail/extra_ops_emulated.hpp
 include/boost/atomic/detail/extra_ops_gcc_arm.hpp
 include/boost/atomic/detail/extra_ops_gcc_ppc.hpp
 include/boost/atomic/detail/extra_ops_gcc_x86.hpp
 include/boost/atomic/detail/extra_ops_generic.hpp
 include/boost/atomic/detail/extra_ops_msvc_arm.hpp
 include/boost/atomic/detail/extra_ops_msvc_x86.hpp
+include/boost/atomic/detail/float_sizes.hpp
+include/boost/atomic/detail/fp_operations.hpp
+include/boost/atomic/detail/fp_operations_fwd.hpp
+include/boost/atomic/detail/fp_ops_emulated.hpp
+include/boost/atomic/detail/fp_ops_generic.hpp
 include/boost/atomic/detail/hwcaps_gcc_arm.hpp
 include/boost/atomic/detail/hwcaps_gcc_ppc.hpp
 include/boost/atomic/detail/hwcaps_gcc_x86.hpp
 include/boost/atomic/detail/int_sizes.hpp
+include/boost/atomic/detail/integral_extend.hpp
 include/boost/atomic/detail/interlocked.hpp
 include/boost/atomic/detail/link.hpp
 include/boost/atomic/detail/lockpool.hpp
@@ -870,11 +890,17 @@
 include/boost/atomic/detail/pause.hpp
 include/boost/atomic/detail/platform.hpp
 include/boost/atomic/detail/storage_type.hpp
+include/boost/atomic/detail/string_ops.hpp
 include/boost/atomic/detail/type_traits/conditional.hpp
+include/boost/atomic/detail/type_traits/integral_constant.hpp
+include/boost/atomic/detail/type_traits/is_floating_point.hpp
 include/boost/atomic/detail/type_traits/is_function.hpp
+include/boost/atomic/detail/type_traits/is_iec559.hpp
 include/boost/atomic/detail/type_traits/is_integral.hpp
 include/boost/atomic/detail/type_traits/is_signed.hpp
+include/boost/atomic/detail/type_traits/is_trivially_default_constructible.hpp
 include/boost/atomic/detail/type_traits/make_signed.hpp
+include/boost/atomic/detail/type_traits/make_unsigned.hpp
 include/boost/atomic/fences.hpp
 include/boost/beast.hpp
 include/boost/beast/core.hpp
@@ -893,7 +919,6 @@
 include/boost/beast/core/detail/config.hpp
 include/boost/beast/core/detail/cpu_info.hpp
 include/boost/beast/core/detail/empty_base_optimization.hpp
-include/boost/beast/core/detail/in_place_init.hpp
 include/boost/beast/core/detail/integer_sequence.hpp
 include/boost/beast/core/detail/ostream.hpp
 include/boost/beast/core/detail/sha1.hpp
@@ -981,11 +1006,13 @@
 include/boost/beast/http/write.hpp
 include/boost/beast/version.hpp
 include/boost/beast/websocket.hpp
+include/boost/beast/websocket/detail/error.hpp
 include/boost/beast/websocket/detail/frame.hpp
 include/boost/beast/websocket/detail/hybi13.hpp
 include/boost/beast/websocket/detail/mask.hpp
 include/boost/beast/websocket/detail/pausation.hpp
 include/boost/beast/websocket/detail/pmd_extension.hpp
+include/boost/beast/websocket/detail/stream_base.hpp
 include/boost/beast/websocket/detail/type_traits.hpp
 include/boost/beast/websocket/detail/utf8_checker.hpp
 include/boost/beast/websocket/error.hpp
@@ -1005,6 +1032,7 @@
 include/boost/beast/websocket/role.hpp
 include/boost/beast/websocket/ssl.hpp
 include/boost/beast/websocket/stream.hpp
+include/boost/beast/websocket/stream_fwd.hpp
 include/boost/beast/websocket/teardown.hpp
 include/boost/beast/zlib.hpp
 include/boost/beast/zlib/deflate_stream.hpp
@@ -1249,6 +1277,33 @@
 include/boost/chrono/io_v1/chrono_io.hpp
 include/boost/chrono/process_cpu_clocks.hpp
 include/boost/chrono/round.hpp
+include/boost/chrono/stopwatches.hpp
+include/boost/chrono/stopwatches/collectors/laps_accumulator_set.hpp
+include/boost/chrono/stopwatches/collectors/laps_sequence_container.hpp
+include/boost/chrono/stopwatches/collectors/last_lap.hpp
+include/boost/chrono/stopwatches/collectors/no_memory.hpp
+include/boost/chrono/stopwatches/dont_start.hpp
+include/boost/chrono/stopwatches/formatters/accumulator_set_formatter.hpp
+include/boost/chrono/stopwatches/formatters/base_formatter.hpp
+include/boost/chrono/stopwatches/formatters/elapsed_formatter.hpp
+include/boost/chrono/stopwatches/formatters/times_formatter.hpp
+include/boost/chrono/stopwatches/laps_stopwatch.hpp
+include/boost/chrono/stopwatches/reporters/clock_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/laps_accumulator_set_stopwatch_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/laps_stopclock.hpp
+include/boost/chrono/stopwatches/reporters/laps_stopwatch_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/stopclock.hpp
+include/boost/chrono/stopwatches/reporters/stopwatch_reporter.hpp
+include/boost/chrono/stopwatches/reporters/stopwatch_reporter_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/strict_stopclock.hpp
+include/boost/chrono/stopwatches/reporters/system_default_formatter.hpp
+include/boost/chrono/stopwatches/reporters/thread_default_formatter.hpp
+include/boost/chrono/stopwatches/simple_stopwatch.hpp
+include/boost/chrono/stopwatches/stopwatch.hpp
+include/boost/chrono/stopwatches/stopwatch_scoped.hpp
+include/boost/chrono/stopwatches/strict_stopwatch.hpp
+include/boost/chrono/stopwatches/suspendable_stopwatch.hpp
 include/boost/chrono/system_clocks.hpp
 include/boost/chrono/thread_clock.hpp
 include/boost/chrono/time_point.hpp
@@ -1648,6 +1703,8 @@
 include/boost/config/detail/select_platform_config.hpp
 include/boost/config/detail/select_stdlib_config.hpp
 include/boost/config/detail/suffix.hpp
+include/boost/config/header_deprecated.hpp
+include/boost/config/helper_macros.hpp
 include/boost/config/no_tr1/cmath.hpp
 include/boost/config/no_tr1/complex.hpp
 include/boost/config/no_tr1/functional.hpp
@@ -1672,6 +1729,7 @@
 include/boost/config/platform/vxworks.hpp
 include/boost/config/platform/win32.hpp
 include/boost/config/platform/zos.hpp
+include/boost/config/pragma_message.hpp
 include/boost/config/requires_threads.hpp
 include/boost/config/stdlib/dinkumware.hpp
 include/boost/config/stdlib/libcomo.hpp
@@ -1743,6 +1801,7 @@
 include/boost/container/detail/transform_iterator.hpp
 include/boost/container/detail/tree.hpp
 include/boost/container/detail/type_traits.hpp
+include/boost/container/detail/value_functors.hpp
 include/boost/container/detail/value_init.hpp
 include/boost/container/detail/variadic_templates_tools.hpp
 include/boost/container/detail/version_type.hpp
@@ -1786,6 +1845,12 @@
 include/boost/container/uses_allocator.hpp
 include/boost/container/uses_allocator_fwd.hpp
 include/boost/container/vector.hpp
+include/boost/container_hash/detail/float_functions.hpp
+include/boost/container_hash/detail/hash_float.hpp
+include/boost/container_hash/detail/limits.hpp
+include/boost/container_hash/extensions.hpp
+include/boost/container_hash/hash.hpp
+include/boost/container_hash/hash_fwd.hpp



Home | Main Index | Thread Index | Old Index