From 979433eddb5a8f2180aba134befb08b222718bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Wed, 13 Mar 2019 18:35:29 +0100 Subject: [build] update Boost to 1.69 and remove RTTI --- CMakeLists.txt | 2 + cmake/glfw.cmake | 3 + cmake/offline.cmake | 3 + cmake/render.cmake | 3 + platform/android/MapboxGLAndroidSDK/build.gradle | 2 +- platform/ios/ios.xcodeproj/project.pbxproj | 3 + platform/macos/macos.xcodeproj/project.pbxproj | 2 + scripts/update-boost.sh | 31 + .../layers/render_fill_extrusion_layer.cpp | 1 - src/mbgl/renderer/layers/render_fill_layer.cpp | 1 - src/mbgl/renderer/layers/render_line_layer.cpp | 1 - src/mbgl/sprite/sprite_loader.cpp | 4 +- vendor/boost | 2 +- vendor/boost-files.json | 782 +++------------------ 14 files changed, 146 insertions(+), 694 deletions(-) create mode 100755 scripts/update-boost.sh diff --git a/CMakeLists.txt b/CMakeLists.txt index cdd14ee10f..ca33c36be2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,6 +88,8 @@ else() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wshadow -Wno-variadic-macros -Wno-unknown-pragmas") endif() +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti") + if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES ".*Clang") # -Wno-error=unused-command-line-argument is required due to https://llvm.org/bugs/show_bug.cgi?id=7798 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=unused-command-line-argument") diff --git a/cmake/glfw.cmake b/cmake/glfw.cmake index b87ba74caf..a2adb9fbb5 100644 --- a/cmake/glfw.cmake +++ b/cmake/glfw.cmake @@ -2,6 +2,9 @@ add_executable(mbgl-glfw platform/glfw/main.cpp ) +# args requires RTTI +set_source_files_properties(platform/glfw/main.cpp PROPERTIES COMPILE_OPTIONS "-frtti") + target_sources(mbgl-glfw PRIVATE platform/glfw/glfw_view.hpp PRIVATE platform/glfw/glfw_view.cpp diff --git a/cmake/offline.cmake b/cmake/offline.cmake index 9f7261cd6c..b751125297 100644 --- a/cmake/offline.cmake +++ b/cmake/offline.cmake @@ -2,6 +2,9 @@ add_executable(mbgl-offline bin/offline.cpp ) +# args requires RTTI +set_source_files_properties(bin/offline.cpp PROPERTIES COMPILE_OPTIONS "-frtti") + target_sources(mbgl-offline PRIVATE platform/default/include/mbgl/util/default_styles.hpp ) diff --git a/cmake/render.cmake b/cmake/render.cmake index 9a67a2a25e..776c859bad 100644 --- a/cmake/render.cmake +++ b/cmake/render.cmake @@ -2,6 +2,9 @@ add_executable(mbgl-render bin/render.cpp ) +# args requires RTTI +set_source_files_properties(bin/render.cpp PROPERTIES COMPILE_OPTIONS "-frtti") + target_include_directories(mbgl-render PRIVATE platform/default/include ) diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle index 257da91b6b..89937448e9 100644 --- a/platform/android/MapboxGLAndroidSDK/build.gradle +++ b/platform/android/MapboxGLAndroidSDK/build.gradle @@ -76,7 +76,7 @@ android { cmake { arguments "-DANDROID_TOOLCHAIN=clang" arguments "-DANDROID_STL=" + stl - arguments "-DANDROID_CPP_FEATURES=rtti;exceptions" + arguments "-DANDROID_CPP_FEATURES=exceptions" arguments "-DMBGL_PLATFORM=android" arguments "-DMASON_PLATFORM=android" arguments "-DNodeJS_EXECUTABLE=" + node diff --git a/platform/ios/ios.xcodeproj/project.pbxproj b/platform/ios/ios.xcodeproj/project.pbxproj index bfbdcf53da..51e9ba19b0 100644 --- a/platform/ios/ios.xcodeproj/project.pbxproj +++ b/platform/ios/ios.xcodeproj/project.pbxproj @@ -3804,6 +3804,7 @@ ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_CPP_RTTI = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_PREPROCESSOR_DEFINITIONS = ""; "GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = ""; @@ -4064,6 +4065,7 @@ ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_CPP_RTTI = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -4130,6 +4132,7 @@ ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_CPP_RTTI = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_PREPROCESSOR_DEFINITIONS = ""; "GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = ""; diff --git a/platform/macos/macos.xcodeproj/project.pbxproj b/platform/macos/macos.xcodeproj/project.pbxproj index d70971ae66..739a388e6e 100644 --- a/platform/macos/macos.xcodeproj/project.pbxproj +++ b/platform/macos/macos.xcodeproj/project.pbxproj @@ -1933,6 +1933,7 @@ ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_CPP_RTTI = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -1997,6 +1998,7 @@ ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_CPP_RTTI = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; diff --git a/scripts/update-boost.sh b/scripts/update-boost.sh new file mode 100755 index 0000000000..03df5569aa --- /dev/null +++ b/scripts/update-boost.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +set -eu + +pushd "$BOOST" +if [ ! -f dist/bin/bcp ]; then + # Build bcp + ./bootstrap.sh + ./b2 tools/bcp +fi +popd + +# Extract boost modules that we need +rm -rf vendor/boost/include +mkdir -p vendor/boost/include +"$BOOST/dist/bin/bcp" --boost="$BOOST" --scan $(find {src,include,test,platform,bin} -name "*.cpp" -o -name "*.hpp") vendor/boost/include + +pushd vendor/boost +VERSION=$(sed -n 's/^#define BOOST_LIB_VERSION "\([^"]*\)"$/\1/p' include/boost/version.hpp) +echo "libboost ${VERSION/_/.} for Mapbox GL Native" > README.md +git add README.md include +popd + +echo "If everything works, run:" +echo "" +echo " git -C vendor/boost checkout master" +echo " git -C vendor/boost commit -m \"update boost to ${VERSION/_/.}\"" +echo " git -C vendor/boost push" +echo " git add vendor/boost" +echo "" +echo "and commit." diff --git a/src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp b/src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp index 99bdc3a8c6..08f35f1c76 100644 --- a/src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp +++ b/src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp @@ -136,7 +136,6 @@ void RenderFillExtrusionLayer::render(PaintParameters& parameters, RenderSource* continue; } const auto fillPatternValue = evaluated.get().constantOr(mbgl::Faded >{"", ""}); - assert(dynamic_cast(&tile.tile)); GeometryTile& geometryTile = static_cast(tile.tile); optional patternPosA = geometryTile.getPattern(fillPatternValue.from); optional patternPosB = geometryTile.getPattern(fillPatternValue.to); diff --git a/src/mbgl/renderer/layers/render_fill_layer.cpp b/src/mbgl/renderer/layers/render_fill_layer.cpp index 3e36561ffb..83989fa012 100644 --- a/src/mbgl/renderer/layers/render_fill_layer.cpp +++ b/src/mbgl/renderer/layers/render_fill_layer.cpp @@ -147,7 +147,6 @@ void RenderFillLayer::render(PaintParameters& parameters, RenderSource*) { } const auto fillPatternValue = evaluated.get().constantOr(Faded>{"", ""}); for (const RenderTile& tile : renderTiles) { - assert(dynamic_cast(&tile.tile)); GeometryTile& geometryTile = static_cast(tile.tile); optional patternPosA = geometryTile.getPattern(fillPatternValue.from); optional patternPosB = geometryTile.getPattern(fillPatternValue.to); diff --git a/src/mbgl/renderer/layers/render_line_layer.cpp b/src/mbgl/renderer/layers/render_line_layer.cpp index f3947685fe..096afadf7d 100644 --- a/src/mbgl/renderer/layers/render_line_layer.cpp +++ b/src/mbgl/renderer/layers/render_line_layer.cpp @@ -128,7 +128,6 @@ void RenderLineLayer::render(PaintParameters& parameters, RenderSource*) { } else if (!unevaluated.get().isUndefined()) { const auto linePatternValue = evaluated.get().constantOr(Faded>{ "", ""}); - assert(dynamic_cast(&tile.tile)); GeometryTile& geometryTile = static_cast(tile.tile); const Size texsize = geometryTile.iconAtlasTexture->size; diff --git a/src/mbgl/sprite/sprite_loader.cpp b/src/mbgl/sprite/sprite_loader.cpp index df4fe6e8df..ce8fbe5894 100644 --- a/src/mbgl/sprite/sprite_loader.cpp +++ b/src/mbgl/sprite/sprite_loader.cpp @@ -55,7 +55,7 @@ void SpriteLoader::load(const std::string& url, Scheduler& scheduler, FileSource } else if (res.notModified) { return; } else if (res.noContent) { - loader->json = std::make_shared(); + loader->json = std::make_shared(); emitSpriteLoadedIfComplete(); } else { // Only trigger a sprite loaded event we got new data. @@ -70,7 +70,7 @@ void SpriteLoader::load(const std::string& url, Scheduler& scheduler, FileSource } else if (res.notModified) { return; } else if (res.noContent) { - loader->image = std::make_shared(); + loader->image = std::make_shared(); emitSpriteLoadedIfComplete(); } else { loader->image = res.data; diff --git a/vendor/boost b/vendor/boost index e841ea9b8f..2499bc0982 160000 --- a/vendor/boost +++ b/vendor/boost @@ -1 +1 @@ -Subproject commit e841ea9b8fd7ceb6592766829c8f6ecaf9f0eb0a +Subproject commit 2499bc09829ad3bb913271f4b6889df8e4d692b7 diff --git a/vendor/boost-files.json b/vendor/boost-files.json index 3f41f7ba73..3ee6f74bf4 100644 --- a/vendor/boost-files.json +++ b/vendor/boost-files.json @@ -2,7 +2,7 @@ "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js", "sources": [], "public_headers": { - "boost/algorithm/cxx11/all_of.hpp": "vendor/boost/include/boost/algorithm/cxx11/all_of.hpp", + "boost/algorithm/minmax.hpp": "vendor/boost/include/boost/algorithm/minmax.hpp", "boost/algorithm/minmax_element.hpp": "vendor/boost/include/boost/algorithm/minmax_element.hpp", "boost/algorithm/string.hpp": "vendor/boost/include/boost/algorithm/string.hpp", "boost/algorithm/string/case_conv.hpp": "vendor/boost/include/boost/algorithm/string/case_conv.hpp", @@ -18,9 +18,7 @@ "boost/algorithm/string/detail/find_format_store.hpp": "vendor/boost/include/boost/algorithm/string/detail/find_format_store.hpp", "boost/algorithm/string/detail/find_iterator.hpp": "vendor/boost/include/boost/algorithm/string/detail/find_iterator.hpp", "boost/algorithm/string/detail/finder.hpp": "vendor/boost/include/boost/algorithm/string/detail/finder.hpp", - "boost/algorithm/string/detail/finder_regex.hpp": "vendor/boost/include/boost/algorithm/string/detail/finder_regex.hpp", "boost/algorithm/string/detail/formatter.hpp": "vendor/boost/include/boost/algorithm/string/detail/formatter.hpp", - "boost/algorithm/string/detail/formatter_regex.hpp": "vendor/boost/include/boost/algorithm/string/detail/formatter_regex.hpp", "boost/algorithm/string/detail/predicate.hpp": "vendor/boost/include/boost/algorithm/string/detail/predicate.hpp", "boost/algorithm/string/detail/replace_storage.hpp": "vendor/boost/include/boost/algorithm/string/detail/replace_storage.hpp", "boost/algorithm/string/detail/sequence.hpp": "vendor/boost/include/boost/algorithm/string/detail/sequence.hpp", @@ -36,8 +34,6 @@ "boost/algorithm/string/join.hpp": "vendor/boost/include/boost/algorithm/string/join.hpp", "boost/algorithm/string/predicate.hpp": "vendor/boost/include/boost/algorithm/string/predicate.hpp", "boost/algorithm/string/predicate_facade.hpp": "vendor/boost/include/boost/algorithm/string/predicate_facade.hpp", - "boost/algorithm/string/regex.hpp": "vendor/boost/include/boost/algorithm/string/regex.hpp", - "boost/algorithm/string/regex_find_format.hpp": "vendor/boost/include/boost/algorithm/string/regex_find_format.hpp", "boost/algorithm/string/replace.hpp": "vendor/boost/include/boost/algorithm/string/replace.hpp", "boost/algorithm/string/sequence_traits.hpp": "vendor/boost/include/boost/algorithm/string/sequence_traits.hpp", "boost/algorithm/string/split.hpp": "vendor/boost/include/boost/algorithm/string/split.hpp", @@ -48,33 +44,16 @@ "boost/algorithm/string/trim.hpp": "vendor/boost/include/boost/algorithm/string/trim.hpp", "boost/algorithm/string/yes_no_type.hpp": "vendor/boost/include/boost/algorithm/string/yes_no_type.hpp", "boost/aligned_storage.hpp": "vendor/boost/include/boost/aligned_storage.hpp", - "boost/any.hpp": "vendor/boost/include/boost/any.hpp", - "boost/archive/archive_exception.hpp": "vendor/boost/include/boost/archive/archive_exception.hpp", - "boost/archive/detail/abi_prefix.hpp": "vendor/boost/include/boost/archive/detail/abi_prefix.hpp", - "boost/archive/detail/abi_suffix.hpp": "vendor/boost/include/boost/archive/detail/abi_suffix.hpp", - "boost/archive/detail/decl.hpp": "vendor/boost/include/boost/archive/detail/decl.hpp", "boost/array.hpp": "vendor/boost/include/boost/array.hpp", "boost/assert.hpp": "vendor/boost/include/boost/assert.hpp", - "boost/bind.hpp": "vendor/boost/include/boost/bind.hpp", - "boost/bind/arg.hpp": "vendor/boost/include/boost/bind/arg.hpp", - "boost/bind/bind.hpp": "vendor/boost/include/boost/bind/bind.hpp", - "boost/bind/bind_cc.hpp": "vendor/boost/include/boost/bind/bind_cc.hpp", - "boost/bind/bind_mf2_cc.hpp": "vendor/boost/include/boost/bind/bind_mf2_cc.hpp", - "boost/bind/bind_mf_cc.hpp": "vendor/boost/include/boost/bind/bind_mf_cc.hpp", - "boost/bind/bind_template.hpp": "vendor/boost/include/boost/bind/bind_template.hpp", "boost/bind/mem_fn.hpp": "vendor/boost/include/boost/bind/mem_fn.hpp", "boost/bind/mem_fn_cc.hpp": "vendor/boost/include/boost/bind/mem_fn_cc.hpp", "boost/bind/mem_fn_template.hpp": "vendor/boost/include/boost/bind/mem_fn_template.hpp", "boost/bind/mem_fn_vw.hpp": "vendor/boost/include/boost/bind/mem_fn_vw.hpp", - "boost/bind/placeholders.hpp": "vendor/boost/include/boost/bind/placeholders.hpp", - "boost/bind/protect.hpp": "vendor/boost/include/boost/bind/protect.hpp", - "boost/bind/storage.hpp": "vendor/boost/include/boost/bind/storage.hpp", "boost/blank.hpp": "vendor/boost/include/boost/blank.hpp", "boost/blank_fwd.hpp": "vendor/boost/include/boost/blank_fwd.hpp", "boost/call_traits.hpp": "vendor/boost/include/boost/call_traits.hpp", - "boost/cerrno.hpp": "vendor/boost/include/boost/cerrno.hpp", "boost/checked_delete.hpp": "vendor/boost/include/boost/checked_delete.hpp", - "boost/compressed_pair.hpp": "vendor/boost/include/boost/compressed_pair.hpp", "boost/concept/assert.hpp": "vendor/boost/include/boost/concept/assert.hpp", "boost/concept/detail/backward_compatibility.hpp": "vendor/boost/include/boost/concept/detail/backward_compatibility.hpp", "boost/concept/detail/borland.hpp": "vendor/boost/include/boost/concept/detail/borland.hpp", @@ -125,6 +104,8 @@ "boost/config/detail/select_platform_config.hpp": "vendor/boost/include/boost/config/detail/select_platform_config.hpp", "boost/config/detail/select_stdlib_config.hpp": "vendor/boost/include/boost/config/detail/select_stdlib_config.hpp", "boost/config/detail/suffix.hpp": "vendor/boost/include/boost/config/detail/suffix.hpp", + "boost/config/header_deprecated.hpp": "vendor/boost/include/boost/config/header_deprecated.hpp", + "boost/config/helper_macros.hpp": "vendor/boost/include/boost/config/helper_macros.hpp", "boost/config/no_tr1/cmath.hpp": "vendor/boost/include/boost/config/no_tr1/cmath.hpp", "boost/config/no_tr1/complex.hpp": "vendor/boost/include/boost/config/no_tr1/complex.hpp", "boost/config/no_tr1/functional.hpp": "vendor/boost/include/boost/config/no_tr1/functional.hpp", @@ -149,6 +130,7 @@ "boost/config/platform/vxworks.hpp": "vendor/boost/include/boost/config/platform/vxworks.hpp", "boost/config/platform/win32.hpp": "vendor/boost/include/boost/config/platform/win32.hpp", "boost/config/platform/zos.hpp": "vendor/boost/include/boost/config/platform/zos.hpp", + "boost/config/pragma_message.hpp": "vendor/boost/include/boost/config/pragma_message.hpp", "boost/config/requires_threads.hpp": "vendor/boost/include/boost/config/requires_threads.hpp", "boost/config/stdlib/dinkumware.hpp": "vendor/boost/include/boost/config/stdlib/dinkumware.hpp", "boost/config/stdlib/libcomo.hpp": "vendor/boost/include/boost/config/stdlib/libcomo.hpp", @@ -183,20 +165,28 @@ "boost/container/detail/placement_new.hpp": "vendor/boost/include/boost/container/detail/placement_new.hpp", "boost/container/detail/std_fwd.hpp": "vendor/boost/include/boost/container/detail/std_fwd.hpp", "boost/container/detail/type_traits.hpp": "vendor/boost/include/boost/container/detail/type_traits.hpp", + "boost/container/detail/value_functors.hpp": "vendor/boost/include/boost/container/detail/value_functors.hpp", "boost/container/detail/value_init.hpp": "vendor/boost/include/boost/container/detail/value_init.hpp", "boost/container/detail/variadic_templates_tools.hpp": "vendor/boost/include/boost/container/detail/variadic_templates_tools.hpp", "boost/container/detail/version_type.hpp": "vendor/boost/include/boost/container/detail/version_type.hpp", "boost/container/detail/workaround.hpp": "vendor/boost/include/boost/container/detail/workaround.hpp", "boost/container/new_allocator.hpp": "vendor/boost/include/boost/container/new_allocator.hpp", + "boost/container/options.hpp": "vendor/boost/include/boost/container/options.hpp", "boost/container/throw_exception.hpp": "vendor/boost/include/boost/container/throw_exception.hpp", "boost/container/vector.hpp": "vendor/boost/include/boost/container/vector.hpp", + "boost/container_hash/detail/float_functions.hpp": "vendor/boost/include/boost/container_hash/detail/float_functions.hpp", + "boost/container_hash/detail/hash_float.hpp": "vendor/boost/include/boost/container_hash/detail/hash_float.hpp", + "boost/container_hash/detail/limits.hpp": "vendor/boost/include/boost/container_hash/detail/limits.hpp", + "boost/container_hash/extensions.hpp": "vendor/boost/include/boost/container_hash/extensions.hpp", + "boost/container_hash/hash.hpp": "vendor/boost/include/boost/container_hash/hash.hpp", + "boost/container_hash/hash_fwd.hpp": "vendor/boost/include/boost/container_hash/hash_fwd.hpp", "boost/core/addressof.hpp": "vendor/boost/include/boost/core/addressof.hpp", "boost/core/checked_delete.hpp": "vendor/boost/include/boost/core/checked_delete.hpp", "boost/core/demangle.hpp": "vendor/boost/include/boost/core/demangle.hpp", + "boost/core/empty_value.hpp": "vendor/boost/include/boost/core/empty_value.hpp", "boost/core/enable_if.hpp": "vendor/boost/include/boost/core/enable_if.hpp", "boost/core/explicit_operator_bool.hpp": "vendor/boost/include/boost/core/explicit_operator_bool.hpp", "boost/core/ignore_unused.hpp": "vendor/boost/include/boost/core/ignore_unused.hpp", - "boost/core/is_same.hpp": "vendor/boost/include/boost/core/is_same.hpp", "boost/core/no_exceptions_support.hpp": "vendor/boost/include/boost/core/no_exceptions_support.hpp", "boost/core/noncopyable.hpp": "vendor/boost/include/boost/core/noncopyable.hpp", "boost/core/pointer_traits.hpp": "vendor/boost/include/boost/core/pointer_traits.hpp", @@ -207,162 +197,26 @@ "boost/crc.hpp": "vendor/boost/include/boost/crc.hpp", "boost/cstdint.hpp": "vendor/boost/include/boost/cstdint.hpp", "boost/current_function.hpp": "vendor/boost/include/boost/current_function.hpp", - "boost/date_time/adjust_functors.hpp": "vendor/boost/include/boost/date_time/adjust_functors.hpp", - "boost/date_time/c_time.hpp": "vendor/boost/include/boost/date_time/c_time.hpp", - "boost/date_time/compiler_config.hpp": "vendor/boost/include/boost/date_time/compiler_config.hpp", - "boost/date_time/constrained_value.hpp": "vendor/boost/include/boost/date_time/constrained_value.hpp", - "boost/date_time/date.hpp": "vendor/boost/include/boost/date_time/date.hpp", - "boost/date_time/date_clock_device.hpp": "vendor/boost/include/boost/date_time/date_clock_device.hpp", - "boost/date_time/date_defs.hpp": "vendor/boost/include/boost/date_time/date_defs.hpp", - "boost/date_time/date_duration.hpp": "vendor/boost/include/boost/date_time/date_duration.hpp", - "boost/date_time/date_duration_types.hpp": "vendor/boost/include/boost/date_time/date_duration_types.hpp", - "boost/date_time/date_facet.hpp": "vendor/boost/include/boost/date_time/date_facet.hpp", - "boost/date_time/date_format_simple.hpp": "vendor/boost/include/boost/date_time/date_format_simple.hpp", - "boost/date_time/date_formatting.hpp": "vendor/boost/include/boost/date_time/date_formatting.hpp", - "boost/date_time/date_formatting_limited.hpp": "vendor/boost/include/boost/date_time/date_formatting_limited.hpp", - "boost/date_time/date_formatting_locales.hpp": "vendor/boost/include/boost/date_time/date_formatting_locales.hpp", - "boost/date_time/date_generator_formatter.hpp": "vendor/boost/include/boost/date_time/date_generator_formatter.hpp", - "boost/date_time/date_generator_parser.hpp": "vendor/boost/include/boost/date_time/date_generator_parser.hpp", - "boost/date_time/date_generators.hpp": "vendor/boost/include/boost/date_time/date_generators.hpp", - "boost/date_time/date_iterator.hpp": "vendor/boost/include/boost/date_time/date_iterator.hpp", - "boost/date_time/date_names_put.hpp": "vendor/boost/include/boost/date_time/date_names_put.hpp", - "boost/date_time/date_parsing.hpp": "vendor/boost/include/boost/date_time/date_parsing.hpp", - "boost/date_time/dst_rules.hpp": "vendor/boost/include/boost/date_time/dst_rules.hpp", - "boost/date_time/dst_transition_generators.hpp": "vendor/boost/include/boost/date_time/dst_transition_generators.hpp", - "boost/date_time/filetime_functions.hpp": "vendor/boost/include/boost/date_time/filetime_functions.hpp", - "boost/date_time/format_date_parser.hpp": "vendor/boost/include/boost/date_time/format_date_parser.hpp", - "boost/date_time/gregorian/conversion.hpp": "vendor/boost/include/boost/date_time/gregorian/conversion.hpp", - "boost/date_time/gregorian/formatters.hpp": "vendor/boost/include/boost/date_time/gregorian/formatters.hpp", - "boost/date_time/gregorian/formatters_limited.hpp": "vendor/boost/include/boost/date_time/gregorian/formatters_limited.hpp", - "boost/date_time/gregorian/greg_calendar.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_calendar.hpp", - "boost/date_time/gregorian/greg_date.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_date.hpp", - "boost/date_time/gregorian/greg_day.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_day.hpp", - "boost/date_time/gregorian/greg_day_of_year.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_day_of_year.hpp", - "boost/date_time/gregorian/greg_duration.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_duration.hpp", - "boost/date_time/gregorian/greg_duration_types.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_duration_types.hpp", - "boost/date_time/gregorian/greg_facet.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_facet.hpp", - "boost/date_time/gregorian/greg_month.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_month.hpp", - "boost/date_time/gregorian/greg_weekday.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_weekday.hpp", - "boost/date_time/gregorian/greg_year.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_year.hpp", - "boost/date_time/gregorian/greg_ymd.hpp": "vendor/boost/include/boost/date_time/gregorian/greg_ymd.hpp", - "boost/date_time/gregorian/gregorian.hpp": "vendor/boost/include/boost/date_time/gregorian/gregorian.hpp", - "boost/date_time/gregorian/gregorian_io.hpp": "vendor/boost/include/boost/date_time/gregorian/gregorian_io.hpp", - "boost/date_time/gregorian/gregorian_types.hpp": "vendor/boost/include/boost/date_time/gregorian/gregorian_types.hpp", - "boost/date_time/gregorian/parsers.hpp": "vendor/boost/include/boost/date_time/gregorian/parsers.hpp", - "boost/date_time/gregorian_calendar.hpp": "vendor/boost/include/boost/date_time/gregorian_calendar.hpp", - "boost/date_time/int_adapter.hpp": "vendor/boost/include/boost/date_time/int_adapter.hpp", - "boost/date_time/iso_format.hpp": "vendor/boost/include/boost/date_time/iso_format.hpp", - "boost/date_time/local_time/conversion.hpp": "vendor/boost/include/boost/date_time/local_time/conversion.hpp", - "boost/date_time/local_time/custom_time_zone.hpp": "vendor/boost/include/boost/date_time/local_time/custom_time_zone.hpp", - "boost/date_time/local_time/date_duration_operators.hpp": "vendor/boost/include/boost/date_time/local_time/date_duration_operators.hpp", - "boost/date_time/local_time/dst_transition_day_rules.hpp": "vendor/boost/include/boost/date_time/local_time/dst_transition_day_rules.hpp", - "boost/date_time/local_time/local_date_time.hpp": "vendor/boost/include/boost/date_time/local_time/local_date_time.hpp", - "boost/date_time/local_time/local_time.hpp": "vendor/boost/include/boost/date_time/local_time/local_time.hpp", - "boost/date_time/local_time/local_time_io.hpp": "vendor/boost/include/boost/date_time/local_time/local_time_io.hpp", - "boost/date_time/local_time/local_time_types.hpp": "vendor/boost/include/boost/date_time/local_time/local_time_types.hpp", - "boost/date_time/local_time/posix_time_zone.hpp": "vendor/boost/include/boost/date_time/local_time/posix_time_zone.hpp", - "boost/date_time/local_time/tz_database.hpp": "vendor/boost/include/boost/date_time/local_time/tz_database.hpp", - "boost/date_time/locale_config.hpp": "vendor/boost/include/boost/date_time/locale_config.hpp", - "boost/date_time/microsec_time_clock.hpp": "vendor/boost/include/boost/date_time/microsec_time_clock.hpp", - "boost/date_time/parse_format_base.hpp": "vendor/boost/include/boost/date_time/parse_format_base.hpp", - "boost/date_time/period.hpp": "vendor/boost/include/boost/date_time/period.hpp", - "boost/date_time/period_formatter.hpp": "vendor/boost/include/boost/date_time/period_formatter.hpp", - "boost/date_time/period_parser.hpp": "vendor/boost/include/boost/date_time/period_parser.hpp", - "boost/date_time/posix_time/conversion.hpp": "vendor/boost/include/boost/date_time/posix_time/conversion.hpp", - "boost/date_time/posix_time/date_duration_operators.hpp": "vendor/boost/include/boost/date_time/posix_time/date_duration_operators.hpp", - "boost/date_time/posix_time/posix_time.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time.hpp", - "boost/date_time/posix_time/posix_time_config.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_config.hpp", - "boost/date_time/posix_time/posix_time_duration.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_duration.hpp", - "boost/date_time/posix_time/posix_time_io.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_io.hpp", - "boost/date_time/posix_time/posix_time_legacy_io.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_legacy_io.hpp", - "boost/date_time/posix_time/posix_time_system.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_system.hpp", - "boost/date_time/posix_time/posix_time_types.hpp": "vendor/boost/include/boost/date_time/posix_time/posix_time_types.hpp", - "boost/date_time/posix_time/ptime.hpp": "vendor/boost/include/boost/date_time/posix_time/ptime.hpp", - "boost/date_time/posix_time/time_formatters.hpp": "vendor/boost/include/boost/date_time/posix_time/time_formatters.hpp", - "boost/date_time/posix_time/time_formatters_limited.hpp": "vendor/boost/include/boost/date_time/posix_time/time_formatters_limited.hpp", - "boost/date_time/posix_time/time_parsers.hpp": "vendor/boost/include/boost/date_time/posix_time/time_parsers.hpp", - "boost/date_time/posix_time/time_period.hpp": "vendor/boost/include/boost/date_time/posix_time/time_period.hpp", - "boost/date_time/special_defs.hpp": "vendor/boost/include/boost/date_time/special_defs.hpp", - "boost/date_time/special_values_formatter.hpp": "vendor/boost/include/boost/date_time/special_values_formatter.hpp", - "boost/date_time/special_values_parser.hpp": "vendor/boost/include/boost/date_time/special_values_parser.hpp", - "boost/date_time/string_convert.hpp": "vendor/boost/include/boost/date_time/string_convert.hpp", - "boost/date_time/string_parse_tree.hpp": "vendor/boost/include/boost/date_time/string_parse_tree.hpp", - "boost/date_time/strings_from_facet.hpp": "vendor/boost/include/boost/date_time/strings_from_facet.hpp", - "boost/date_time/time.hpp": "vendor/boost/include/boost/date_time/time.hpp", - "boost/date_time/time_clock.hpp": "vendor/boost/include/boost/date_time/time_clock.hpp", - "boost/date_time/time_defs.hpp": "vendor/boost/include/boost/date_time/time_defs.hpp", - "boost/date_time/time_duration.hpp": "vendor/boost/include/boost/date_time/time_duration.hpp", - "boost/date_time/time_facet.hpp": "vendor/boost/include/boost/date_time/time_facet.hpp", - "boost/date_time/time_formatting_streams.hpp": "vendor/boost/include/boost/date_time/time_formatting_streams.hpp", - "boost/date_time/time_iterator.hpp": "vendor/boost/include/boost/date_time/time_iterator.hpp", - "boost/date_time/time_parsing.hpp": "vendor/boost/include/boost/date_time/time_parsing.hpp", - "boost/date_time/time_resolution_traits.hpp": "vendor/boost/include/boost/date_time/time_resolution_traits.hpp", - "boost/date_time/time_system_counted.hpp": "vendor/boost/include/boost/date_time/time_system_counted.hpp", - "boost/date_time/time_system_split.hpp": "vendor/boost/include/boost/date_time/time_system_split.hpp", - "boost/date_time/time_zone_base.hpp": "vendor/boost/include/boost/date_time/time_zone_base.hpp", - "boost/date_time/time_zone_names.hpp": "vendor/boost/include/boost/date_time/time_zone_names.hpp", - "boost/date_time/tz_db_base.hpp": "vendor/boost/include/boost/date_time/tz_db_base.hpp", - "boost/date_time/wrapping_int.hpp": "vendor/boost/include/boost/date_time/wrapping_int.hpp", - "boost/date_time/year_month_day.hpp": "vendor/boost/include/boost/date_time/year_month_day.hpp", - "boost/detail/allocator_utilities.hpp": "vendor/boost/include/boost/detail/allocator_utilities.hpp", "boost/detail/atomic_count.hpp": "vendor/boost/include/boost/detail/atomic_count.hpp", "boost/detail/basic_pointerbuf.hpp": "vendor/boost/include/boost/detail/basic_pointerbuf.hpp", - "boost/detail/bitmask.hpp": "vendor/boost/include/boost/detail/bitmask.hpp", "boost/detail/call_traits.hpp": "vendor/boost/include/boost/detail/call_traits.hpp", - "boost/detail/compressed_pair.hpp": "vendor/boost/include/boost/detail/compressed_pair.hpp", "boost/detail/container_fwd.hpp": "vendor/boost/include/boost/detail/container_fwd.hpp", - "boost/detail/endian.hpp": "vendor/boost/include/boost/detail/endian.hpp", "boost/detail/fenv.hpp": "vendor/boost/include/boost/detail/fenv.hpp", "boost/detail/indirect_traits.hpp": "vendor/boost/include/boost/detail/indirect_traits.hpp", "boost/detail/is_incrementable.hpp": "vendor/boost/include/boost/detail/is_incrementable.hpp", - "boost/detail/is_xxx.hpp": "vendor/boost/include/boost/detail/is_xxx.hpp", "boost/detail/iterator.hpp": "vendor/boost/include/boost/detail/iterator.hpp", "boost/detail/lcast_precision.hpp": "vendor/boost/include/boost/detail/lcast_precision.hpp", - "boost/detail/lightweight_mutex.hpp": "vendor/boost/include/boost/detail/lightweight_mutex.hpp", "boost/detail/no_exceptions_support.hpp": "vendor/boost/include/boost/detail/no_exceptions_support.hpp", "boost/detail/reference_content.hpp": "vendor/boost/include/boost/detail/reference_content.hpp", "boost/detail/scoped_enum_emulation.hpp": "vendor/boost/include/boost/detail/scoped_enum_emulation.hpp", + "boost/detail/select_type.hpp": "vendor/boost/include/boost/detail/select_type.hpp", "boost/detail/sp_typeinfo.hpp": "vendor/boost/include/boost/detail/sp_typeinfo.hpp", "boost/detail/templated_streams.hpp": "vendor/boost/include/boost/detail/templated_streams.hpp", - "boost/detail/winapi/basic_types.hpp": "vendor/boost/include/boost/detail/winapi/basic_types.hpp", - "boost/detail/winapi/character_code_conversion.hpp": "vendor/boost/include/boost/detail/winapi/character_code_conversion.hpp", - "boost/detail/winapi/config.hpp": "vendor/boost/include/boost/detail/winapi/config.hpp", - "boost/detail/winapi/error_codes.hpp": "vendor/boost/include/boost/detail/winapi/error_codes.hpp", - "boost/detail/winapi/error_handling.hpp": "vendor/boost/include/boost/detail/winapi/error_handling.hpp", - "boost/detail/winapi/get_last_error.hpp": "vendor/boost/include/boost/detail/winapi/get_last_error.hpp", - "boost/detail/winapi/local_memory.hpp": "vendor/boost/include/boost/detail/winapi/local_memory.hpp", "boost/detail/workaround.hpp": "vendor/boost/include/boost/detail/workaround.hpp", "boost/exception/error_info.hpp": "vendor/boost/include/boost/exception/error_info.hpp", "boost/exception/exception.hpp": "vendor/boost/include/boost/exception/exception.hpp", - "boost/filesystem.hpp": "vendor/boost/include/boost/filesystem.hpp", - "boost/filesystem/config.hpp": "vendor/boost/include/boost/filesystem/config.hpp", - "boost/filesystem/convenience.hpp": "vendor/boost/include/boost/filesystem/convenience.hpp", - "boost/filesystem/fstream.hpp": "vendor/boost/include/boost/filesystem/fstream.hpp", - "boost/filesystem/operations.hpp": "vendor/boost/include/boost/filesystem/operations.hpp", - "boost/filesystem/path.hpp": "vendor/boost/include/boost/filesystem/path.hpp", - "boost/filesystem/path_traits.hpp": "vendor/boost/include/boost/filesystem/path_traits.hpp", - "boost/filesystem/string_file.hpp": "vendor/boost/include/boost/filesystem/string_file.hpp", "boost/foreach.hpp": "vendor/boost/include/boost/foreach.hpp", "boost/foreach_fwd.hpp": "vendor/boost/include/boost/foreach_fwd.hpp", - "boost/format.hpp": "vendor/boost/include/boost/format.hpp", - "boost/format/alt_sstream.hpp": "vendor/boost/include/boost/format/alt_sstream.hpp", - "boost/format/alt_sstream_impl.hpp": "vendor/boost/include/boost/format/alt_sstream_impl.hpp", - "boost/format/detail/compat_workarounds.hpp": "vendor/boost/include/boost/format/detail/compat_workarounds.hpp", - "boost/format/detail/config_macros.hpp": "vendor/boost/include/boost/format/detail/config_macros.hpp", - "boost/format/detail/msvc_disambiguater.hpp": "vendor/boost/include/boost/format/detail/msvc_disambiguater.hpp", - "boost/format/detail/unset_macros.hpp": "vendor/boost/include/boost/format/detail/unset_macros.hpp", - "boost/format/detail/workarounds_gcc-2_95.hpp": "vendor/boost/include/boost/format/detail/workarounds_gcc-2_95.hpp", - "boost/format/detail/workarounds_stlport.hpp": "vendor/boost/include/boost/format/detail/workarounds_stlport.hpp", - "boost/format/exceptions.hpp": "vendor/boost/include/boost/format/exceptions.hpp", - "boost/format/feed_args.hpp": "vendor/boost/include/boost/format/feed_args.hpp", - "boost/format/format_class.hpp": "vendor/boost/include/boost/format/format_class.hpp", - "boost/format/format_fwd.hpp": "vendor/boost/include/boost/format/format_fwd.hpp", - "boost/format/format_implementation.hpp": "vendor/boost/include/boost/format/format_implementation.hpp", - "boost/format/free_funcs.hpp": "vendor/boost/include/boost/format/free_funcs.hpp", - "boost/format/group.hpp": "vendor/boost/include/boost/format/group.hpp", - "boost/format/internals.hpp": "vendor/boost/include/boost/format/internals.hpp", - "boost/format/internals_fwd.hpp": "vendor/boost/include/boost/format/internals_fwd.hpp", - "boost/format/parsing.hpp": "vendor/boost/include/boost/format/parsing.hpp", "boost/function.hpp": "vendor/boost/include/boost/function.hpp", "boost/function/detail/function_iterate.hpp": "vendor/boost/include/boost/function/detail/function_iterate.hpp", "boost/function/detail/maybe_include.hpp": "vendor/boost/include/boost/function/detail/maybe_include.hpp", @@ -449,13 +303,6 @@ "boost/function_types/parameter_types.hpp": "vendor/boost/include/boost/function_types/parameter_types.hpp", "boost/function_types/property_tags.hpp": "vendor/boost/include/boost/function_types/property_tags.hpp", "boost/function_types/result_type.hpp": "vendor/boost/include/boost/function_types/result_type.hpp", - "boost/functional/hash.hpp": "vendor/boost/include/boost/functional/hash.hpp", - "boost/functional/hash/detail/float_functions.hpp": "vendor/boost/include/boost/functional/hash/detail/float_functions.hpp", - "boost/functional/hash/detail/hash_float.hpp": "vendor/boost/include/boost/functional/hash/detail/hash_float.hpp", - "boost/functional/hash/detail/limits.hpp": "vendor/boost/include/boost/functional/hash/detail/limits.hpp", - "boost/functional/hash/extensions.hpp": "vendor/boost/include/boost/functional/hash/extensions.hpp", - "boost/functional/hash/hash.hpp": "vendor/boost/include/boost/functional/hash/hash.hpp", - "boost/functional/hash/hash_fwd.hpp": "vendor/boost/include/boost/functional/hash/hash_fwd.hpp", "boost/functional/hash_fwd.hpp": "vendor/boost/include/boost/functional/hash_fwd.hpp", "boost/fusion/adapted/mpl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl.hpp", "boost/fusion/adapted/mpl/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/at_impl.hpp", @@ -571,7 +418,6 @@ "boost/fusion/container/map/detail/cpp03/preprocessed/map40_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map40_fwd.hpp", "boost/fusion/container/map/detail/cpp03/preprocessed/map50_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map50_fwd.hpp", "boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp", - "boost/fusion/container/map/detail/map_impl.hpp": "vendor/boost/include/boost/fusion/container/map/detail/map_impl.hpp", "boost/fusion/container/map/map_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/map_fwd.hpp", "boost/fusion/container/set/detail/cpp03/limits.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/limits.hpp", "boost/fusion/container/set/detail/cpp03/preprocessed/set10_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set10_fwd.hpp", @@ -771,11 +617,10 @@ "boost/fusion/support/detail/access.hpp": "vendor/boost/include/boost/fusion/support/detail/access.hpp", "boost/fusion/support/detail/and.hpp": "vendor/boost/include/boost/fusion/support/detail/and.hpp", "boost/fusion/support/detail/as_fusion_element.hpp": "vendor/boost/include/boost/fusion/support/detail/as_fusion_element.hpp", - "boost/fusion/support/detail/category_of.hpp": "vendor/boost/include/boost/fusion/support/detail/category_of.hpp", "boost/fusion/support/detail/enabler.hpp": "vendor/boost/include/boost/fusion/support/detail/enabler.hpp", "boost/fusion/support/detail/index_sequence.hpp": "vendor/boost/include/boost/fusion/support/detail/index_sequence.hpp", "boost/fusion/support/detail/is_mpl_sequence.hpp": "vendor/boost/include/boost/fusion/support/detail/is_mpl_sequence.hpp", - "boost/fusion/support/detail/is_view.hpp": "vendor/boost/include/boost/fusion/support/detail/is_view.hpp", + "boost/fusion/support/detail/is_native_fusion_sequence.hpp": "vendor/boost/include/boost/fusion/support/detail/is_native_fusion_sequence.hpp", "boost/fusion/support/detail/mpl_iterator_category.hpp": "vendor/boost/include/boost/fusion/support/detail/mpl_iterator_category.hpp", "boost/fusion/support/detail/pp_round.hpp": "vendor/boost/include/boost/fusion/support/detail/pp_round.hpp", "boost/fusion/support/detail/segmented_fold_until_impl.hpp": "vendor/boost/include/boost/fusion/support/detail/segmented_fold_until_impl.hpp", @@ -855,7 +700,6 @@ "boost/fusion/view/single_view/single_view.hpp": "vendor/boost/include/boost/fusion/view/single_view/single_view.hpp", "boost/fusion/view/single_view/single_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/single_view/single_view_iterator.hpp", "boost/fusion/view/transform_view/detail/advance_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/advance_impl.hpp", - "boost/fusion/view/transform_view/detail/apply_transform_result.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/apply_transform_result.hpp", "boost/fusion/view/transform_view/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/at_impl.hpp", "boost/fusion/view/transform_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/begin_impl.hpp", "boost/fusion/view/transform_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/deref_impl.hpp", @@ -896,13 +740,14 @@ "boost/geometry/algorithms/convert.hpp": "vendor/boost/include/boost/geometry/algorithms/convert.hpp", "boost/geometry/algorithms/convex_hull.hpp": "vendor/boost/include/boost/geometry/algorithms/convex_hull.hpp", "boost/geometry/algorithms/correct.hpp": "vendor/boost/include/boost/geometry/algorithms/correct.hpp", + "boost/geometry/algorithms/correct_closure.hpp": "vendor/boost/include/boost/geometry/algorithms/correct_closure.hpp", "boost/geometry/algorithms/covered_by.hpp": "vendor/boost/include/boost/geometry/algorithms/covered_by.hpp", "boost/geometry/algorithms/crosses.hpp": "vendor/boost/include/boost/geometry/algorithms/crosses.hpp", + "boost/geometry/algorithms/densify.hpp": "vendor/boost/include/boost/geometry/algorithms/densify.hpp", "boost/geometry/algorithms/detail/as_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/as_range.hpp", "boost/geometry/algorithms/detail/assign_box_corners.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/assign_box_corners.hpp", "boost/geometry/algorithms/detail/assign_indexed_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/assign_indexed_point.hpp", "boost/geometry/algorithms/detail/assign_values.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/assign_values.hpp", - "boost/geometry/algorithms/detail/azimuth.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/azimuth.hpp", "boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp", "boost/geometry/algorithms/detail/buffer/buffer_policies.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/buffer_policies.hpp", "boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp", @@ -924,7 +769,6 @@ "boost/geometry/algorithms/detail/convert_indexed_to_indexed.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/convert_indexed_to_indexed.hpp", "boost/geometry/algorithms/detail/convert_point_to_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/convert_point_to_point.hpp", "boost/geometry/algorithms/detail/counting.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/counting.hpp", - "boost/geometry/algorithms/detail/course.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/course.hpp", "boost/geometry/algorithms/detail/covered_by/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/covered_by/implementation.hpp", "boost/geometry/algorithms/detail/covered_by/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/covered_by/interface.hpp", "boost/geometry/algorithms/detail/direction_code.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/direction_code.hpp", @@ -950,12 +794,14 @@ "boost/geometry/algorithms/detail/distance/is_comparable.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/is_comparable.hpp", "boost/geometry/algorithms/detail/distance/iterator_selector.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/iterator_selector.hpp", "boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp", + "boost/geometry/algorithms/detail/distance/linear_to_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/linear_to_box.hpp", "boost/geometry/algorithms/detail/distance/linear_to_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/linear_to_linear.hpp", "boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp", "boost/geometry/algorithms/detail/distance/point_to_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/point_to_geometry.hpp", "boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp", "boost/geometry/algorithms/detail/distance/segment_to_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/segment_to_box.hpp", "boost/geometry/algorithms/detail/distance/segment_to_segment.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/segment_to_segment.hpp", + "boost/geometry/algorithms/detail/envelope/areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/areal.hpp", "boost/geometry/algorithms/detail/envelope/box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/box.hpp", "boost/geometry/algorithms/detail/envelope/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/implementation.hpp", "boost/geometry/algorithms/detail/envelope/initialize.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/initialize.hpp", @@ -1025,7 +871,6 @@ "boost/geometry/algorithms/detail/overlaps/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlaps/implementation.hpp", "boost/geometry/algorithms/detail/overlaps/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlaps/interface.hpp", "boost/geometry/algorithms/detail/overlay/add_rings.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/add_rings.hpp", - "boost/geometry/algorithms/detail/overlay/aggregate_operations.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/aggregate_operations.hpp", "boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp", "boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp", "boost/geometry/algorithms/detail/overlay/assign_parents.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/assign_parents.hpp", @@ -1058,6 +903,7 @@ "boost/geometry/algorithms/detail/overlay/is_self_turn.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/is_self_turn.hpp", "boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp", "boost/geometry/algorithms/detail/overlay/linear_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/linear_linear.hpp", + "boost/geometry/algorithms/detail/overlay/needs_self_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/needs_self_turns.hpp", "boost/geometry/algorithms/detail/overlay/overlay.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/overlay.hpp", "boost/geometry/algorithms/detail/overlay/overlay_type.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/overlay_type.hpp", "boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp", @@ -1070,7 +916,6 @@ "boost/geometry/algorithms/detail/overlay/sort_by_side.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/sort_by_side.hpp", "boost/geometry/algorithms/detail/overlay/traversal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traversal.hpp", "boost/geometry/algorithms/detail/overlay/traversal_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traversal_info.hpp", - "boost/geometry/algorithms/detail/overlay/traversal_intersection_patterns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traversal_intersection_patterns.hpp", "boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp", "boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp", "boost/geometry/algorithms/detail/overlay/traverse.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/traverse.hpp", @@ -1086,7 +931,6 @@ "boost/geometry/algorithms/detail/relate/follow_helpers.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/follow_helpers.hpp", "boost/geometry/algorithms/detail/relate/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/implementation.hpp", "boost/geometry/algorithms/detail/relate/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/interface.hpp", - "boost/geometry/algorithms/detail/relate/less.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/less.hpp", "boost/geometry/algorithms/detail/relate/linear_areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/linear_areal.hpp", "boost/geometry/algorithms/detail/relate/linear_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/linear_linear.hpp", "boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp", @@ -1119,6 +963,8 @@ "boost/geometry/algorithms/detail/within/multi_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/within/multi_point.hpp", "boost/geometry/algorithms/detail/within/point_in_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/within/point_in_geometry.hpp", "boost/geometry/algorithms/difference.hpp": "vendor/boost/include/boost/geometry/algorithms/difference.hpp", + "boost/geometry/algorithms/discrete_frechet_distance.hpp": "vendor/boost/include/boost/geometry/algorithms/discrete_frechet_distance.hpp", + "boost/geometry/algorithms/discrete_hausdorff_distance.hpp": "vendor/boost/include/boost/geometry/algorithms/discrete_hausdorff_distance.hpp", "boost/geometry/algorithms/disjoint.hpp": "vendor/boost/include/boost/geometry/algorithms/disjoint.hpp", "boost/geometry/algorithms/dispatch/disjoint.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/disjoint.hpp", "boost/geometry/algorithms/dispatch/distance.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/distance.hpp", @@ -1183,21 +1029,29 @@ "boost/geometry/core/radius.hpp": "vendor/boost/include/boost/geometry/core/radius.hpp", "boost/geometry/core/reverse_dispatch.hpp": "vendor/boost/include/boost/geometry/core/reverse_dispatch.hpp", "boost/geometry/core/ring_type.hpp": "vendor/boost/include/boost/geometry/core/ring_type.hpp", - "boost/geometry/core/srs.hpp": "vendor/boost/include/boost/geometry/core/srs.hpp", "boost/geometry/core/tag.hpp": "vendor/boost/include/boost/geometry/core/tag.hpp", "boost/geometry/core/tag_cast.hpp": "vendor/boost/include/boost/geometry/core/tag_cast.hpp", "boost/geometry/core/tags.hpp": "vendor/boost/include/boost/geometry/core/tags.hpp", "boost/geometry/core/topological_dimension.hpp": "vendor/boost/include/boost/geometry/core/topological_dimension.hpp", "boost/geometry/formulas/andoyer_inverse.hpp": "vendor/boost/include/boost/geometry/formulas/andoyer_inverse.hpp", "boost/geometry/formulas/area_formulas.hpp": "vendor/boost/include/boost/geometry/formulas/area_formulas.hpp", + "boost/geometry/formulas/authalic_radius_sqr.hpp": "vendor/boost/include/boost/geometry/formulas/authalic_radius_sqr.hpp", "boost/geometry/formulas/differential_quantities.hpp": "vendor/boost/include/boost/geometry/formulas/differential_quantities.hpp", + "boost/geometry/formulas/eccentricity_sqr.hpp": "vendor/boost/include/boost/geometry/formulas/eccentricity_sqr.hpp", "boost/geometry/formulas/flattening.hpp": "vendor/boost/include/boost/geometry/formulas/flattening.hpp", + "boost/geometry/formulas/mean_radius.hpp": "vendor/boost/include/boost/geometry/formulas/mean_radius.hpp", + "boost/geometry/formulas/meridian_inverse.hpp": "vendor/boost/include/boost/geometry/formulas/meridian_inverse.hpp", + "boost/geometry/formulas/meridian_segment.hpp": "vendor/boost/include/boost/geometry/formulas/meridian_segment.hpp", + "boost/geometry/formulas/result_direct.hpp": "vendor/boost/include/boost/geometry/formulas/result_direct.hpp", "boost/geometry/formulas/result_inverse.hpp": "vendor/boost/include/boost/geometry/formulas/result_inverse.hpp", "boost/geometry/formulas/sjoberg_intersection.hpp": "vendor/boost/include/boost/geometry/formulas/sjoberg_intersection.hpp", "boost/geometry/formulas/spherical.hpp": "vendor/boost/include/boost/geometry/formulas/spherical.hpp", + "boost/geometry/formulas/thomas_direct.hpp": "vendor/boost/include/boost/geometry/formulas/thomas_direct.hpp", "boost/geometry/formulas/thomas_inverse.hpp": "vendor/boost/include/boost/geometry/formulas/thomas_inverse.hpp", + "boost/geometry/formulas/unit_spheroid.hpp": "vendor/boost/include/boost/geometry/formulas/unit_spheroid.hpp", "boost/geometry/formulas/vertex_latitude.hpp": "vendor/boost/include/boost/geometry/formulas/vertex_latitude.hpp", "boost/geometry/formulas/vertex_longitude.hpp": "vendor/boost/include/boost/geometry/formulas/vertex_longitude.hpp", + "boost/geometry/formulas/vincenty_direct.hpp": "vendor/boost/include/boost/geometry/formulas/vincenty_direct.hpp", "boost/geometry/formulas/vincenty_inverse.hpp": "vendor/boost/include/boost/geometry/formulas/vincenty_inverse.hpp", "boost/geometry/geometries/box.hpp": "vendor/boost/include/boost/geometry/geometries/box.hpp", "boost/geometry/geometries/concepts/box_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/box_concept.hpp", @@ -1322,7 +1176,6 @@ "boost/geometry/iterators/has_one_element.hpp": "vendor/boost/include/boost/geometry/iterators/has_one_element.hpp", "boost/geometry/iterators/point_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/point_iterator.hpp", "boost/geometry/iterators/segment_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/segment_iterator.hpp", - "boost/geometry/multi/geometries/multi_polygon.hpp": "vendor/boost/include/boost/geometry/multi/geometries/multi_polygon.hpp", "boost/geometry/policies/compare.hpp": "vendor/boost/include/boost/geometry/policies/compare.hpp", "boost/geometry/policies/disjoint_interrupt_policy.hpp": "vendor/boost/include/boost/geometry/policies/disjoint_interrupt_policy.hpp", "boost/geometry/policies/is_valid/default_policy.hpp": "vendor/boost/include/boost/geometry/policies/is_valid/default_policy.hpp", @@ -1339,6 +1192,9 @@ "boost/geometry/policies/robustness/robust_type.hpp": "vendor/boost/include/boost/geometry/policies/robustness/robust_type.hpp", "boost/geometry/policies/robustness/segment_ratio.hpp": "vendor/boost/include/boost/geometry/policies/robustness/segment_ratio.hpp", "boost/geometry/policies/robustness/segment_ratio_type.hpp": "vendor/boost/include/boost/geometry/policies/robustness/segment_ratio_type.hpp", + "boost/geometry/srs/sphere.hpp": "vendor/boost/include/boost/geometry/srs/sphere.hpp", + "boost/geometry/srs/spheroid.hpp": "vendor/boost/include/boost/geometry/srs/spheroid.hpp", + "boost/geometry/srs/srs.hpp": "vendor/boost/include/boost/geometry/srs/srs.hpp", "boost/geometry/strategies/agnostic/buffer_distance_asymmetric.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/buffer_distance_asymmetric.hpp", "boost/geometry/strategies/agnostic/buffer_distance_symmetric.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/buffer_distance_symmetric.hpp", "boost/geometry/strategies/agnostic/hull_graham_andrew.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/hull_graham_andrew.hpp", @@ -1347,9 +1203,10 @@ "boost/geometry/strategies/agnostic/point_in_poly_winding.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/point_in_poly_winding.hpp", "boost/geometry/strategies/agnostic/simplify_douglas_peucker.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/simplify_douglas_peucker.hpp", "boost/geometry/strategies/area.hpp": "vendor/boost/include/boost/geometry/strategies/area.hpp", + "boost/geometry/strategies/area_result.hpp": "vendor/boost/include/boost/geometry/strategies/area_result.hpp", "boost/geometry/strategies/azimuth.hpp": "vendor/boost/include/boost/geometry/strategies/azimuth.hpp", "boost/geometry/strategies/buffer.hpp": "vendor/boost/include/boost/geometry/strategies/buffer.hpp", - "boost/geometry/strategies/cartesian/area_surveyor.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/area_surveyor.hpp", + "boost/geometry/strategies/cartesian/area.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/area.hpp", "boost/geometry/strategies/cartesian/azimuth.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/azimuth.hpp", "boost/geometry/strategies/cartesian/box_in_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/box_in_box.hpp", "boost/geometry/strategies/cartesian/buffer_end_flat.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_end_flat.hpp", @@ -1363,17 +1220,20 @@ "boost/geometry/strategies/cartesian/centroid_average.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/centroid_average.hpp", "boost/geometry/strategies/cartesian/centroid_bashein_detmer.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/centroid_bashein_detmer.hpp", "boost/geometry/strategies/cartesian/centroid_weighted_length.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/centroid_weighted_length.hpp", + "boost/geometry/strategies/cartesian/densify.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/densify.hpp", "boost/geometry/strategies/cartesian/disjoint_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/disjoint_segment_box.hpp", "boost/geometry/strategies/cartesian/distance_projected_point.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_projected_point.hpp", "boost/geometry/strategies/cartesian/distance_projected_point_ax.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_projected_point_ax.hpp", "boost/geometry/strategies/cartesian/distance_pythagoras.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_pythagoras.hpp", "boost/geometry/strategies/cartesian/distance_pythagoras_box_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_pythagoras_box_box.hpp", "boost/geometry/strategies/cartesian/distance_pythagoras_point_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_pythagoras_point_box.hpp", + "boost/geometry/strategies/cartesian/distance_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/distance_segment_box.hpp", "boost/geometry/strategies/cartesian/envelope_segment.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/envelope_segment.hpp", "boost/geometry/strategies/cartesian/intersection.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/intersection.hpp", "boost/geometry/strategies/cartesian/point_in_box.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/point_in_box.hpp", "boost/geometry/strategies/cartesian/point_in_poly_crossings_multiply.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/point_in_poly_crossings_multiply.hpp", "boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp", + "boost/geometry/strategies/cartesian/point_in_poly_winding.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp", "boost/geometry/strategies/cartesian/side_by_triangle.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/side_by_triangle.hpp", "boost/geometry/strategies/cartesian/side_of_intersection.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/side_of_intersection.hpp", "boost/geometry/strategies/centroid.hpp": "vendor/boost/include/boost/geometry/strategies/centroid.hpp", @@ -1392,20 +1252,27 @@ "boost/geometry/strategies/default_distance_result.hpp": "vendor/boost/include/boost/geometry/strategies/default_distance_result.hpp", "boost/geometry/strategies/default_length_result.hpp": "vendor/boost/include/boost/geometry/strategies/default_length_result.hpp", "boost/geometry/strategies/default_strategy.hpp": "vendor/boost/include/boost/geometry/strategies/default_strategy.hpp", + "boost/geometry/strategies/densify.hpp": "vendor/boost/include/boost/geometry/strategies/densify.hpp", "boost/geometry/strategies/disjoint.hpp": "vendor/boost/include/boost/geometry/strategies/disjoint.hpp", "boost/geometry/strategies/distance.hpp": "vendor/boost/include/boost/geometry/strategies/distance.hpp", "boost/geometry/strategies/distance_result.hpp": "vendor/boost/include/boost/geometry/strategies/distance_result.hpp", "boost/geometry/strategies/envelope.hpp": "vendor/boost/include/boost/geometry/strategies/envelope.hpp", "boost/geometry/strategies/geographic/area.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/area.hpp", "boost/geometry/strategies/geographic/azimuth.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/azimuth.hpp", + "boost/geometry/strategies/geographic/densify.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/densify.hpp", "boost/geometry/strategies/geographic/disjoint_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/disjoint_segment_box.hpp", "boost/geometry/strategies/geographic/distance.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance.hpp", "boost/geometry/strategies/geographic/distance_andoyer.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_andoyer.hpp", + "boost/geometry/strategies/geographic/distance_cross_track.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_cross_track.hpp", + "boost/geometry/strategies/geographic/distance_cross_track_box_box.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_cross_track_box_box.hpp", + "boost/geometry/strategies/geographic/distance_cross_track_point_box.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_cross_track_point_box.hpp", + "boost/geometry/strategies/geographic/distance_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_segment_box.hpp", "boost/geometry/strategies/geographic/distance_thomas.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_thomas.hpp", "boost/geometry/strategies/geographic/distance_vincenty.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/distance_vincenty.hpp", "boost/geometry/strategies/geographic/envelope_segment.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/envelope_segment.hpp", "boost/geometry/strategies/geographic/intersection.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/intersection.hpp", "boost/geometry/strategies/geographic/parameters.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/parameters.hpp", + "boost/geometry/strategies/geographic/point_in_poly_winding.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/point_in_poly_winding.hpp", "boost/geometry/strategies/geographic/side.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/side.hpp", "boost/geometry/strategies/geographic/side_andoyer.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/side_andoyer.hpp", "boost/geometry/strategies/geographic/side_thomas.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/side_thomas.hpp", @@ -1418,13 +1285,18 @@ "boost/geometry/strategies/side_info.hpp": "vendor/boost/include/boost/geometry/strategies/side_info.hpp", "boost/geometry/strategies/spherical/area.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/area.hpp", "boost/geometry/strategies/spherical/azimuth.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/azimuth.hpp", - "boost/geometry/strategies/spherical/compare_circular.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/compare_circular.hpp", + "boost/geometry/strategies/spherical/compare.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/compare.hpp", + "boost/geometry/strategies/spherical/densify.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/densify.hpp", "boost/geometry/strategies/spherical/disjoint_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/disjoint_segment_box.hpp", "boost/geometry/strategies/spherical/distance_cross_track.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/distance_cross_track.hpp", + "boost/geometry/strategies/spherical/distance_cross_track_box_box.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/distance_cross_track_box_box.hpp", "boost/geometry/strategies/spherical/distance_cross_track_point_box.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/distance_cross_track_point_box.hpp", "boost/geometry/strategies/spherical/distance_haversine.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/distance_haversine.hpp", + "boost/geometry/strategies/spherical/distance_segment_box.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/distance_segment_box.hpp", "boost/geometry/strategies/spherical/envelope_segment.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/envelope_segment.hpp", + "boost/geometry/strategies/spherical/get_radius.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/get_radius.hpp", "boost/geometry/strategies/spherical/intersection.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/intersection.hpp", + "boost/geometry/strategies/spherical/point_in_poly_winding.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/point_in_poly_winding.hpp", "boost/geometry/strategies/spherical/ssf.hpp": "vendor/boost/include/boost/geometry/strategies/spherical/ssf.hpp", "boost/geometry/strategies/strategies.hpp": "vendor/boost/include/boost/geometry/strategies/strategies.hpp", "boost/geometry/strategies/strategy_transform.hpp": "vendor/boost/include/boost/geometry/strategies/strategy_transform.hpp", @@ -1444,6 +1316,7 @@ "boost/geometry/util/for_each_coordinate.hpp": "vendor/boost/include/boost/geometry/util/for_each_coordinate.hpp", "boost/geometry/util/has_nan_coordinate.hpp": "vendor/boost/include/boost/geometry/util/has_nan_coordinate.hpp", "boost/geometry/util/has_non_finite_coordinate.hpp": "vendor/boost/include/boost/geometry/util/has_non_finite_coordinate.hpp", + "boost/geometry/util/is_inverse_spheroidal_coordinates.hpp": "vendor/boost/include/boost/geometry/util/is_inverse_spheroidal_coordinates.hpp", "boost/geometry/util/math.hpp": "vendor/boost/include/boost/geometry/util/math.hpp", "boost/geometry/util/normalize_spheroidal_box_coordinates.hpp": "vendor/boost/include/boost/geometry/util/normalize_spheroidal_box_coordinates.hpp", "boost/geometry/util/normalize_spheroidal_coordinates.hpp": "vendor/boost/include/boost/geometry/util/normalize_spheroidal_coordinates.hpp", @@ -1455,6 +1328,7 @@ "boost/geometry/util/select_calculation_type.hpp": "vendor/boost/include/boost/geometry/util/select_calculation_type.hpp", "boost/geometry/util/select_coordinate_type.hpp": "vendor/boost/include/boost/geometry/util/select_coordinate_type.hpp", "boost/geometry/util/select_most_precise.hpp": "vendor/boost/include/boost/geometry/util/select_most_precise.hpp", + "boost/geometry/util/select_sequence_element.hpp": "vendor/boost/include/boost/geometry/util/select_sequence_element.hpp", "boost/geometry/util/transform_variant.hpp": "vendor/boost/include/boost/geometry/util/transform_variant.hpp", "boost/geometry/views/box_view.hpp": "vendor/boost/include/boost/geometry/views/box_view.hpp", "boost/geometry/views/closeable_view.hpp": "vendor/boost/include/boost/geometry/views/closeable_view.hpp", @@ -1470,15 +1344,6 @@ "boost/geometry/views/reversible_view.hpp": "vendor/boost/include/boost/geometry/views/reversible_view.hpp", "boost/geometry/views/segment_view.hpp": "vendor/boost/include/boost/geometry/views/segment_view.hpp", "boost/get_pointer.hpp": "vendor/boost/include/boost/get_pointer.hpp", - "boost/heap/detail/heap_comparison.hpp": "vendor/boost/include/boost/heap/detail/heap_comparison.hpp", - "boost/heap/detail/heap_node.hpp": "vendor/boost/include/boost/heap/detail/heap_node.hpp", - "boost/heap/detail/stable_heap.hpp": "vendor/boost/include/boost/heap/detail/stable_heap.hpp", - "boost/heap/detail/tree_iterator.hpp": "vendor/boost/include/boost/heap/detail/tree_iterator.hpp", - "boost/heap/fibonacci_heap.hpp": "vendor/boost/include/boost/heap/fibonacci_heap.hpp", - "boost/heap/heap_concepts.hpp": "vendor/boost/include/boost/heap/heap_concepts.hpp", - "boost/heap/heap_merge.hpp": "vendor/boost/include/boost/heap/heap_merge.hpp", - "boost/heap/policies.hpp": "vendor/boost/include/boost/heap/policies.hpp", - "boost/implicit_cast.hpp": "vendor/boost/include/boost/implicit_cast.hpp", "boost/integer.hpp": "vendor/boost/include/boost/integer.hpp", "boost/integer/common_factor_ct.hpp": "vendor/boost/include/boost/integer/common_factor_ct.hpp", "boost/integer/common_factor_rt.hpp": "vendor/boost/include/boost/integer/common_factor_rt.hpp", @@ -1486,59 +1351,24 @@ "boost/integer/static_min_max.hpp": "vendor/boost/include/boost/integer/static_min_max.hpp", "boost/integer_fwd.hpp": "vendor/boost/include/boost/integer_fwd.hpp", "boost/integer_traits.hpp": "vendor/boost/include/boost/integer_traits.hpp", - "boost/intrusive/circular_list_algorithms.hpp": "vendor/boost/include/boost/intrusive/circular_list_algorithms.hpp", - "boost/intrusive/detail/algo_type.hpp": "vendor/boost/include/boost/intrusive/detail/algo_type.hpp", "boost/intrusive/detail/algorithm.hpp": "vendor/boost/include/boost/intrusive/detail/algorithm.hpp", - "boost/intrusive/detail/array_initializer.hpp": "vendor/boost/include/boost/intrusive/detail/array_initializer.hpp", - "boost/intrusive/detail/assert.hpp": "vendor/boost/include/boost/intrusive/detail/assert.hpp", "boost/intrusive/detail/config_begin.hpp": "vendor/boost/include/boost/intrusive/detail/config_begin.hpp", "boost/intrusive/detail/config_end.hpp": "vendor/boost/include/boost/intrusive/detail/config_end.hpp", - "boost/intrusive/detail/default_header_holder.hpp": "vendor/boost/include/boost/intrusive/detail/default_header_holder.hpp", - "boost/intrusive/detail/ebo_functor_holder.hpp": "vendor/boost/include/boost/intrusive/detail/ebo_functor_holder.hpp", - "boost/intrusive/detail/equal_to_value.hpp": "vendor/boost/include/boost/intrusive/detail/equal_to_value.hpp", - "boost/intrusive/detail/exception_disposer.hpp": "vendor/boost/include/boost/intrusive/detail/exception_disposer.hpp", - "boost/intrusive/detail/function_detector.hpp": "vendor/boost/include/boost/intrusive/detail/function_detector.hpp", - "boost/intrusive/detail/generic_hook.hpp": "vendor/boost/include/boost/intrusive/detail/generic_hook.hpp", - "boost/intrusive/detail/get_value_traits.hpp": "vendor/boost/include/boost/intrusive/detail/get_value_traits.hpp", "boost/intrusive/detail/has_member_function_callable_with.hpp": "vendor/boost/include/boost/intrusive/detail/has_member_function_callable_with.hpp", - "boost/intrusive/detail/hook_traits.hpp": "vendor/boost/include/boost/intrusive/detail/hook_traits.hpp", - "boost/intrusive/detail/iiterator.hpp": "vendor/boost/include/boost/intrusive/detail/iiterator.hpp", - "boost/intrusive/detail/is_stateful_value_traits.hpp": "vendor/boost/include/boost/intrusive/detail/is_stateful_value_traits.hpp", "boost/intrusive/detail/iterator.hpp": "vendor/boost/include/boost/intrusive/detail/iterator.hpp", - "boost/intrusive/detail/key_nodeptr_comp.hpp": "vendor/boost/include/boost/intrusive/detail/key_nodeptr_comp.hpp", - "boost/intrusive/detail/list_iterator.hpp": "vendor/boost/include/boost/intrusive/detail/list_iterator.hpp", - "boost/intrusive/detail/list_node.hpp": "vendor/boost/include/boost/intrusive/detail/list_node.hpp", - "boost/intrusive/detail/minimal_less_equal_header.hpp": "vendor/boost/include/boost/intrusive/detail/minimal_less_equal_header.hpp", "boost/intrusive/detail/mpl.hpp": "vendor/boost/include/boost/intrusive/detail/mpl.hpp", - "boost/intrusive/detail/node_holder.hpp": "vendor/boost/include/boost/intrusive/detail/node_holder.hpp", - "boost/intrusive/detail/parent_from_member.hpp": "vendor/boost/include/boost/intrusive/detail/parent_from_member.hpp", "boost/intrusive/detail/reverse_iterator.hpp": "vendor/boost/include/boost/intrusive/detail/reverse_iterator.hpp", - "boost/intrusive/detail/simple_disposers.hpp": "vendor/boost/include/boost/intrusive/detail/simple_disposers.hpp", - "boost/intrusive/detail/size_holder.hpp": "vendor/boost/include/boost/intrusive/detail/size_holder.hpp", "boost/intrusive/detail/std_fwd.hpp": "vendor/boost/include/boost/intrusive/detail/std_fwd.hpp", - "boost/intrusive/detail/tree_value_compare.hpp": "vendor/boost/include/boost/intrusive/detail/tree_value_compare.hpp", - "boost/intrusive/detail/uncast.hpp": "vendor/boost/include/boost/intrusive/detail/uncast.hpp", "boost/intrusive/detail/workaround.hpp": "vendor/boost/include/boost/intrusive/detail/workaround.hpp", - "boost/intrusive/intrusive_fwd.hpp": "vendor/boost/include/boost/intrusive/intrusive_fwd.hpp", - "boost/intrusive/link_mode.hpp": "vendor/boost/include/boost/intrusive/link_mode.hpp", - "boost/intrusive/list.hpp": "vendor/boost/include/boost/intrusive/list.hpp", - "boost/intrusive/list_hook.hpp": "vendor/boost/include/boost/intrusive/list_hook.hpp", - "boost/intrusive/options.hpp": "vendor/boost/include/boost/intrusive/options.hpp", "boost/intrusive/pack_options.hpp": "vendor/boost/include/boost/intrusive/pack_options.hpp", "boost/intrusive/pointer_rebind.hpp": "vendor/boost/include/boost/intrusive/pointer_rebind.hpp", "boost/intrusive/pointer_traits.hpp": "vendor/boost/include/boost/intrusive/pointer_traits.hpp", - "boost/io/detail/quoted_manip.hpp": "vendor/boost/include/boost/io/detail/quoted_manip.hpp", - "boost/io/ios_state.hpp": "vendor/boost/include/boost/io/ios_state.hpp", - "boost/io_fwd.hpp": "vendor/boost/include/boost/io_fwd.hpp", "boost/iostreams/categories.hpp": "vendor/boost/include/boost/iostreams/categories.hpp", - "boost/iostreams/chain.hpp": "vendor/boost/include/boost/iostreams/chain.hpp", "boost/iostreams/char_traits.hpp": "vendor/boost/include/boost/iostreams/char_traits.hpp", "boost/iostreams/checked_operations.hpp": "vendor/boost/include/boost/iostreams/checked_operations.hpp", "boost/iostreams/close.hpp": "vendor/boost/include/boost/iostreams/close.hpp", "boost/iostreams/concepts.hpp": "vendor/boost/include/boost/iostreams/concepts.hpp", "boost/iostreams/constants.hpp": "vendor/boost/include/boost/iostreams/constants.hpp", - "boost/iostreams/copy.hpp": "vendor/boost/include/boost/iostreams/copy.hpp", - "boost/iostreams/detail/access_control.hpp": "vendor/boost/include/boost/iostreams/detail/access_control.hpp", "boost/iostreams/detail/adapter/concept_adapter.hpp": "vendor/boost/include/boost/iostreams/detail/adapter/concept_adapter.hpp", "boost/iostreams/detail/adapter/mode_adapter.hpp": "vendor/boost/include/boost/iostreams/detail/adapter/mode_adapter.hpp", "boost/iostreams/detail/adapter/non_blocking_adapter.hpp": "vendor/boost/include/boost/iostreams/detail/adapter/non_blocking_adapter.hpp", @@ -1551,10 +1381,8 @@ "boost/iostreams/detail/buffer.hpp": "vendor/boost/include/boost/iostreams/detail/buffer.hpp", "boost/iostreams/detail/call_traits.hpp": "vendor/boost/include/boost/iostreams/detail/call_traits.hpp", "boost/iostreams/detail/char_traits.hpp": "vendor/boost/include/boost/iostreams/detail/char_traits.hpp", - "boost/iostreams/detail/config/auto_link.hpp": "vendor/boost/include/boost/iostreams/detail/config/auto_link.hpp", "boost/iostreams/detail/config/codecvt.hpp": "vendor/boost/include/boost/iostreams/detail/config/codecvt.hpp", "boost/iostreams/detail/config/disable_warnings.hpp": "vendor/boost/include/boost/iostreams/detail/config/disable_warnings.hpp", - "boost/iostreams/detail/config/dyn_link.hpp": "vendor/boost/include/boost/iostreams/detail/config/dyn_link.hpp", "boost/iostreams/detail/config/enable_warnings.hpp": "vendor/boost/include/boost/iostreams/detail/config/enable_warnings.hpp", "boost/iostreams/detail/config/fpos.hpp": "vendor/boost/include/boost/iostreams/detail/config/fpos.hpp", "boost/iostreams/detail/config/gcc.hpp": "vendor/boost/include/boost/iostreams/detail/config/gcc.hpp", @@ -1562,7 +1390,6 @@ "boost/iostreams/detail/config/overload_resolution.hpp": "vendor/boost/include/boost/iostreams/detail/config/overload_resolution.hpp", "boost/iostreams/detail/config/unreachable_return.hpp": "vendor/boost/include/boost/iostreams/detail/config/unreachable_return.hpp", "boost/iostreams/detail/config/wide_streams.hpp": "vendor/boost/include/boost/iostreams/detail/config/wide_streams.hpp", - "boost/iostreams/detail/config/zlib.hpp": "vendor/boost/include/boost/iostreams/detail/config/zlib.hpp", "boost/iostreams/detail/default_arg.hpp": "vendor/boost/include/boost/iostreams/detail/default_arg.hpp", "boost/iostreams/detail/dispatch.hpp": "vendor/boost/include/boost/iostreams/detail/dispatch.hpp", "boost/iostreams/detail/double_object.hpp": "vendor/boost/include/boost/iostreams/detail/double_object.hpp", @@ -1582,21 +1409,13 @@ "boost/iostreams/detail/select.hpp": "vendor/boost/include/boost/iostreams/detail/select.hpp", "boost/iostreams/detail/select_by_size.hpp": "vendor/boost/include/boost/iostreams/detail/select_by_size.hpp", "boost/iostreams/detail/streambuf.hpp": "vendor/boost/include/boost/iostreams/detail/streambuf.hpp", - "boost/iostreams/detail/streambuf/chainbuf.hpp": "vendor/boost/include/boost/iostreams/detail/streambuf/chainbuf.hpp", "boost/iostreams/detail/streambuf/direct_streambuf.hpp": "vendor/boost/include/boost/iostreams/detail/streambuf/direct_streambuf.hpp", "boost/iostreams/detail/streambuf/indirect_streambuf.hpp": "vendor/boost/include/boost/iostreams/detail/streambuf/indirect_streambuf.hpp", "boost/iostreams/detail/streambuf/linked_streambuf.hpp": "vendor/boost/include/boost/iostreams/detail/streambuf/linked_streambuf.hpp", "boost/iostreams/detail/template_params.hpp": "vendor/boost/include/boost/iostreams/detail/template_params.hpp", - "boost/iostreams/detail/translate_int_type.hpp": "vendor/boost/include/boost/iostreams/detail/translate_int_type.hpp", "boost/iostreams/detail/wrap_unwrap.hpp": "vendor/boost/include/boost/iostreams/detail/wrap_unwrap.hpp", "boost/iostreams/device/array.hpp": "vendor/boost/include/boost/iostreams/device/array.hpp", - "boost/iostreams/device/back_inserter.hpp": "vendor/boost/include/boost/iostreams/device/back_inserter.hpp", "boost/iostreams/device/null.hpp": "vendor/boost/include/boost/iostreams/device/null.hpp", - "boost/iostreams/filter/gzip.hpp": "vendor/boost/include/boost/iostreams/filter/gzip.hpp", - "boost/iostreams/filter/symmetric.hpp": "vendor/boost/include/boost/iostreams/filter/symmetric.hpp", - "boost/iostreams/filter/zlib.hpp": "vendor/boost/include/boost/iostreams/filter/zlib.hpp", - "boost/iostreams/filtering_stream.hpp": "vendor/boost/include/boost/iostreams/filtering_stream.hpp", - "boost/iostreams/filtering_streambuf.hpp": "vendor/boost/include/boost/iostreams/filtering_streambuf.hpp", "boost/iostreams/flush.hpp": "vendor/boost/include/boost/iostreams/flush.hpp", "boost/iostreams/get.hpp": "vendor/boost/include/boost/iostreams/get.hpp", "boost/iostreams/imbue.hpp": "vendor/boost/include/boost/iostreams/imbue.hpp", @@ -1608,7 +1427,6 @@ "boost/iostreams/pipeline.hpp": "vendor/boost/include/boost/iostreams/pipeline.hpp", "boost/iostreams/positioning.hpp": "vendor/boost/include/boost/iostreams/positioning.hpp", "boost/iostreams/put.hpp": "vendor/boost/include/boost/iostreams/put.hpp", - "boost/iostreams/putback.hpp": "vendor/boost/include/boost/iostreams/putback.hpp", "boost/iostreams/read.hpp": "vendor/boost/include/boost/iostreams/read.hpp", "boost/iostreams/seek.hpp": "vendor/boost/include/boost/iostreams/seek.hpp", "boost/iostreams/stream.hpp": "vendor/boost/include/boost/iostreams/stream.hpp", @@ -1617,13 +1435,14 @@ "boost/iostreams/traits_fwd.hpp": "vendor/boost/include/boost/iostreams/traits_fwd.hpp", "boost/iostreams/write.hpp": "vendor/boost/include/boost/iostreams/write.hpp", "boost/is_placeholder.hpp": "vendor/boost/include/boost/is_placeholder.hpp", - "boost/iterator.hpp": "vendor/boost/include/boost/iterator.hpp", "boost/iterator/advance.hpp": "vendor/boost/include/boost/iterator/advance.hpp", "boost/iterator/detail/config_def.hpp": "vendor/boost/include/boost/iterator/detail/config_def.hpp", "boost/iterator/detail/config_undef.hpp": "vendor/boost/include/boost/iterator/detail/config_undef.hpp", "boost/iterator/detail/enable_if.hpp": "vendor/boost/include/boost/iterator/detail/enable_if.hpp", "boost/iterator/detail/facade_iterator_category.hpp": "vendor/boost/include/boost/iterator/detail/facade_iterator_category.hpp", + "boost/iterator/distance.hpp": "vendor/boost/include/boost/iterator/distance.hpp", "boost/iterator/filter_iterator.hpp": "vendor/boost/include/boost/iterator/filter_iterator.hpp", + "boost/iterator/function_output_iterator.hpp": "vendor/boost/include/boost/iterator/function_output_iterator.hpp", "boost/iterator/interoperable.hpp": "vendor/boost/include/boost/iterator/interoperable.hpp", "boost/iterator/iterator_adaptor.hpp": "vendor/boost/include/boost/iterator/iterator_adaptor.hpp", "boost/iterator/iterator_categories.hpp": "vendor/boost/include/boost/iterator/iterator_categories.hpp", @@ -1649,7 +1468,6 @@ "boost/locale/encoding_errors.hpp": "vendor/boost/include/boost/locale/encoding_errors.hpp", "boost/locale/encoding_utf.hpp": "vendor/boost/include/boost/locale/encoding_utf.hpp", "boost/locale/utf.hpp": "vendor/boost/include/boost/locale/utf.hpp", - "boost/make_shared.hpp": "vendor/boost/include/boost/make_shared.hpp", "boost/math/common_factor_ct.hpp": "vendor/boost/include/boost/math/common_factor_ct.hpp", "boost/math/common_factor_rt.hpp": "vendor/boost/include/boost/math/common_factor_rt.hpp", "boost/math/constants/calculate_constants.hpp": "vendor/boost/include/boost/math/constants/calculate_constants.hpp", @@ -1794,9 +1612,12 @@ "boost/move/algo/adaptive_merge.hpp": "vendor/boost/include/boost/move/algo/adaptive_merge.hpp", "boost/move/algo/detail/adaptive_sort_merge.hpp": "vendor/boost/include/boost/move/algo/detail/adaptive_sort_merge.hpp", "boost/move/algo/detail/basic_op.hpp": "vendor/boost/include/boost/move/algo/detail/basic_op.hpp", + "boost/move/algo/detail/heap_sort.hpp": "vendor/boost/include/boost/move/algo/detail/heap_sort.hpp", "boost/move/algo/detail/insertion_sort.hpp": "vendor/boost/include/boost/move/algo/detail/insertion_sort.hpp", + "boost/move/algo/detail/is_sorted.hpp": "vendor/boost/include/boost/move/algo/detail/is_sorted.hpp", "boost/move/algo/detail/merge.hpp": "vendor/boost/include/boost/move/algo/detail/merge.hpp", "boost/move/algo/detail/merge_sort.hpp": "vendor/boost/include/boost/move/algo/detail/merge_sort.hpp", + "boost/move/algo/detail/set_difference.hpp": "vendor/boost/include/boost/move/algo/detail/set_difference.hpp", "boost/move/algo/move.hpp": "vendor/boost/include/boost/move/algo/move.hpp", "boost/move/algo/predicate.hpp": "vendor/boost/include/boost/move/algo/predicate.hpp", "boost/move/algo/unique.hpp": "vendor/boost/include/boost/move/algo/unique.hpp", @@ -2468,9 +2289,7 @@ "boost/mpl/aux_/push_front_impl.hpp": "vendor/boost/include/boost/mpl/aux_/push_front_impl.hpp", "boost/mpl/aux_/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/reverse_fold_impl.hpp", "boost/mpl/aux_/reverse_fold_impl_body.hpp": "vendor/boost/include/boost/mpl/aux_/reverse_fold_impl_body.hpp", - "boost/mpl/aux_/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/reverse_iter_fold_impl.hpp", "boost/mpl/aux_/sequence_wrapper.hpp": "vendor/boost/include/boost/mpl/aux_/sequence_wrapper.hpp", - "boost/mpl/aux_/single_element_iter.hpp": "vendor/boost/include/boost/mpl/aux_/single_element_iter.hpp", "boost/mpl/aux_/size_impl.hpp": "vendor/boost/include/boost/mpl/aux_/size_impl.hpp", "boost/mpl/aux_/static_cast.hpp": "vendor/boost/include/boost/mpl/aux_/static_cast.hpp", "boost/mpl/aux_/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/template_arity.hpp", @@ -2478,7 +2297,6 @@ "boost/mpl/aux_/traits_lambda_spec.hpp": "vendor/boost/include/boost/mpl/aux_/traits_lambda_spec.hpp", "boost/mpl/aux_/transform_iter.hpp": "vendor/boost/include/boost/mpl/aux_/transform_iter.hpp", "boost/mpl/aux_/type_wrapper.hpp": "vendor/boost/include/boost/mpl/aux_/type_wrapper.hpp", - "boost/mpl/aux_/unwrap.hpp": "vendor/boost/include/boost/mpl/aux_/unwrap.hpp", "boost/mpl/aux_/value_wknd.hpp": "vendor/boost/include/boost/mpl/aux_/value_wknd.hpp", "boost/mpl/aux_/yes_no.hpp": "vendor/boost/include/boost/mpl/aux_/yes_no.hpp", "boost/mpl/back.hpp": "vendor/boost/include/boost/mpl/back.hpp", @@ -2517,7 +2335,6 @@ "boost/mpl/find.hpp": "vendor/boost/include/boost/mpl/find.hpp", "boost/mpl/find_if.hpp": "vendor/boost/include/boost/mpl/find_if.hpp", "boost/mpl/fold.hpp": "vendor/boost/include/boost/mpl/fold.hpp", - "boost/mpl/for_each.hpp": "vendor/boost/include/boost/mpl/for_each.hpp", "boost/mpl/front.hpp": "vendor/boost/include/boost/mpl/front.hpp", "boost/mpl/front_fwd.hpp": "vendor/boost/include/boost/mpl/front_fwd.hpp", "boost/mpl/front_inserter.hpp": "vendor/boost/include/boost/mpl/front_inserter.hpp", @@ -2672,7 +2489,6 @@ "boost/mpl/remove.hpp": "vendor/boost/include/boost/mpl/remove.hpp", "boost/mpl/remove_if.hpp": "vendor/boost/include/boost/mpl/remove_if.hpp", "boost/mpl/reverse_fold.hpp": "vendor/boost/include/boost/mpl/reverse_fold.hpp", - "boost/mpl/reverse_iter_fold.hpp": "vendor/boost/include/boost/mpl/reverse_iter_fold.hpp", "boost/mpl/same_as.hpp": "vendor/boost/include/boost/mpl/same_as.hpp", "boost/mpl/sequence_tag.hpp": "vendor/boost/include/boost/mpl/sequence_tag.hpp", "boost/mpl/sequence_tag_fwd.hpp": "vendor/boost/include/boost/mpl/sequence_tag_fwd.hpp", @@ -2718,7 +2534,6 @@ "boost/mpl/set/set40_c.hpp": "vendor/boost/include/boost/mpl/set/set40_c.hpp", "boost/mpl/set/set50.hpp": "vendor/boost/include/boost/mpl/set/set50.hpp", "boost/mpl/set/set50_c.hpp": "vendor/boost/include/boost/mpl/set/set50_c.hpp", - "boost/mpl/single_view.hpp": "vendor/boost/include/boost/mpl/single_view.hpp", "boost/mpl/size.hpp": "vendor/boost/include/boost/mpl/size.hpp", "boost/mpl/size_fwd.hpp": "vendor/boost/include/boost/mpl/size_fwd.hpp", "boost/mpl/size_t.hpp": "vendor/boost/include/boost/mpl/size_t.hpp", @@ -2796,66 +2611,6 @@ "boost/mpl/void.hpp": "vendor/boost/include/boost/mpl/void.hpp", "boost/mpl/void_fwd.hpp": "vendor/boost/include/boost/mpl/void_fwd.hpp", "boost/mpl/zip_view.hpp": "vendor/boost/include/boost/mpl/zip_view.hpp", - "boost/multi_index/detail/access_specifier.hpp": "vendor/boost/include/boost/multi_index/detail/access_specifier.hpp", - "boost/multi_index/detail/adl_swap.hpp": "vendor/boost/include/boost/multi_index/detail/adl_swap.hpp", - "boost/multi_index/detail/archive_constructed.hpp": "vendor/boost/include/boost/multi_index/detail/archive_constructed.hpp", - "boost/multi_index/detail/auto_space.hpp": "vendor/boost/include/boost/multi_index/detail/auto_space.hpp", - "boost/multi_index/detail/base_type.hpp": "vendor/boost/include/boost/multi_index/detail/base_type.hpp", - "boost/multi_index/detail/bidir_node_iterator.hpp": "vendor/boost/include/boost/multi_index/detail/bidir_node_iterator.hpp", - "boost/multi_index/detail/bucket_array.hpp": "vendor/boost/include/boost/multi_index/detail/bucket_array.hpp", - "boost/multi_index/detail/converter.hpp": "vendor/boost/include/boost/multi_index/detail/converter.hpp", - "boost/multi_index/detail/copy_map.hpp": "vendor/boost/include/boost/multi_index/detail/copy_map.hpp", - "boost/multi_index/detail/do_not_copy_elements_tag.hpp": "vendor/boost/include/boost/multi_index/detail/do_not_copy_elements_tag.hpp", - "boost/multi_index/detail/duplicates_iterator.hpp": "vendor/boost/include/boost/multi_index/detail/duplicates_iterator.hpp", - "boost/multi_index/detail/has_tag.hpp": "vendor/boost/include/boost/multi_index/detail/has_tag.hpp", - "boost/multi_index/detail/hash_index_args.hpp": "vendor/boost/include/boost/multi_index/detail/hash_index_args.hpp", - "boost/multi_index/detail/hash_index_iterator.hpp": "vendor/boost/include/boost/multi_index/detail/hash_index_iterator.hpp", - "boost/multi_index/detail/hash_index_node.hpp": "vendor/boost/include/boost/multi_index/detail/hash_index_node.hpp", - "boost/multi_index/detail/header_holder.hpp": "vendor/boost/include/boost/multi_index/detail/header_holder.hpp", - "boost/multi_index/detail/ignore_wstrict_aliasing.hpp": "vendor/boost/include/boost/multi_index/detail/ignore_wstrict_aliasing.hpp", - "boost/multi_index/detail/index_base.hpp": "vendor/boost/include/boost/multi_index/detail/index_base.hpp", - "boost/multi_index/detail/index_loader.hpp": "vendor/boost/include/boost/multi_index/detail/index_loader.hpp", - "boost/multi_index/detail/index_matcher.hpp": "vendor/boost/include/boost/multi_index/detail/index_matcher.hpp", - "boost/multi_index/detail/index_node_base.hpp": "vendor/boost/include/boost/multi_index/detail/index_node_base.hpp", - "boost/multi_index/detail/index_saver.hpp": "vendor/boost/include/boost/multi_index/detail/index_saver.hpp", - "boost/multi_index/detail/invariant_assert.hpp": "vendor/boost/include/boost/multi_index/detail/invariant_assert.hpp", - "boost/multi_index/detail/is_index_list.hpp": "vendor/boost/include/boost/multi_index/detail/is_index_list.hpp", - "boost/multi_index/detail/is_transparent.hpp": "vendor/boost/include/boost/multi_index/detail/is_transparent.hpp", - "boost/multi_index/detail/iter_adaptor.hpp": "vendor/boost/include/boost/multi_index/detail/iter_adaptor.hpp", - "boost/multi_index/detail/modify_key_adaptor.hpp": "vendor/boost/include/boost/multi_index/detail/modify_key_adaptor.hpp", - "boost/multi_index/detail/no_duplicate_tags.hpp": "vendor/boost/include/boost/multi_index/detail/no_duplicate_tags.hpp", - "boost/multi_index/detail/node_type.hpp": "vendor/boost/include/boost/multi_index/detail/node_type.hpp", - "boost/multi_index/detail/ord_index_args.hpp": "vendor/boost/include/boost/multi_index/detail/ord_index_args.hpp", - "boost/multi_index/detail/ord_index_impl.hpp": "vendor/boost/include/boost/multi_index/detail/ord_index_impl.hpp", - "boost/multi_index/detail/ord_index_impl_fwd.hpp": "vendor/boost/include/boost/multi_index/detail/ord_index_impl_fwd.hpp", - "boost/multi_index/detail/ord_index_node.hpp": "vendor/boost/include/boost/multi_index/detail/ord_index_node.hpp", - "boost/multi_index/detail/ord_index_ops.hpp": "vendor/boost/include/boost/multi_index/detail/ord_index_ops.hpp", - "boost/multi_index/detail/promotes_arg.hpp": "vendor/boost/include/boost/multi_index/detail/promotes_arg.hpp", - "boost/multi_index/detail/raw_ptr.hpp": "vendor/boost/include/boost/multi_index/detail/raw_ptr.hpp", - "boost/multi_index/detail/restore_wstrict_aliasing.hpp": "vendor/boost/include/boost/multi_index/detail/restore_wstrict_aliasing.hpp", - "boost/multi_index/detail/safe_mode.hpp": "vendor/boost/include/boost/multi_index/detail/safe_mode.hpp", - "boost/multi_index/detail/scope_guard.hpp": "vendor/boost/include/boost/multi_index/detail/scope_guard.hpp", - "boost/multi_index/detail/seq_index_node.hpp": "vendor/boost/include/boost/multi_index/detail/seq_index_node.hpp", - "boost/multi_index/detail/seq_index_ops.hpp": "vendor/boost/include/boost/multi_index/detail/seq_index_ops.hpp", - "boost/multi_index/detail/serialization_version.hpp": "vendor/boost/include/boost/multi_index/detail/serialization_version.hpp", - "boost/multi_index/detail/uintptr_type.hpp": "vendor/boost/include/boost/multi_index/detail/uintptr_type.hpp", - "boost/multi_index/detail/unbounded.hpp": "vendor/boost/include/boost/multi_index/detail/unbounded.hpp", - "boost/multi_index/detail/value_compare.hpp": "vendor/boost/include/boost/multi_index/detail/value_compare.hpp", - "boost/multi_index/detail/vartempl_support.hpp": "vendor/boost/include/boost/multi_index/detail/vartempl_support.hpp", - "boost/multi_index/hashed_index.hpp": "vendor/boost/include/boost/multi_index/hashed_index.hpp", - "boost/multi_index/hashed_index_fwd.hpp": "vendor/boost/include/boost/multi_index/hashed_index_fwd.hpp", - "boost/multi_index/identity.hpp": "vendor/boost/include/boost/multi_index/identity.hpp", - "boost/multi_index/identity_fwd.hpp": "vendor/boost/include/boost/multi_index/identity_fwd.hpp", - "boost/multi_index/indexed_by.hpp": "vendor/boost/include/boost/multi_index/indexed_by.hpp", - "boost/multi_index/member.hpp": "vendor/boost/include/boost/multi_index/member.hpp", - "boost/multi_index/ordered_index.hpp": "vendor/boost/include/boost/multi_index/ordered_index.hpp", - "boost/multi_index/ordered_index_fwd.hpp": "vendor/boost/include/boost/multi_index/ordered_index_fwd.hpp", - "boost/multi_index/safe_mode_errors.hpp": "vendor/boost/include/boost/multi_index/safe_mode_errors.hpp", - "boost/multi_index/sequenced_index.hpp": "vendor/boost/include/boost/multi_index/sequenced_index.hpp", - "boost/multi_index/sequenced_index_fwd.hpp": "vendor/boost/include/boost/multi_index/sequenced_index_fwd.hpp", - "boost/multi_index/tag.hpp": "vendor/boost/include/boost/multi_index/tag.hpp", - "boost/multi_index_container.hpp": "vendor/boost/include/boost/multi_index_container.hpp", - "boost/multi_index_container_fwd.hpp": "vendor/boost/include/boost/multi_index_container_fwd.hpp", "boost/multiprecision/cpp_int.hpp": "vendor/boost/include/boost/multiprecision/cpp_int.hpp", "boost/multiprecision/cpp_int/add.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/add.hpp", "boost/multiprecision/cpp_int/bitwise.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/bitwise.hpp", @@ -2882,6 +2637,8 @@ "boost/multiprecision/detail/no_et_ops.hpp": "vendor/boost/include/boost/multiprecision/detail/no_et_ops.hpp", "boost/multiprecision/detail/number_base.hpp": "vendor/boost/include/boost/multiprecision/detail/number_base.hpp", "boost/multiprecision/detail/number_compare.hpp": "vendor/boost/include/boost/multiprecision/detail/number_compare.hpp", + "boost/multiprecision/detail/precision.hpp": "vendor/boost/include/boost/multiprecision/detail/precision.hpp", + "boost/multiprecision/detail/rebind.hpp": "vendor/boost/include/boost/multiprecision/detail/rebind.hpp", "boost/multiprecision/detail/ublas_interop.hpp": "vendor/boost/include/boost/multiprecision/detail/ublas_interop.hpp", "boost/multiprecision/number.hpp": "vendor/boost/include/boost/multiprecision/number.hpp", "boost/multiprecision/rational_adaptor.hpp": "vendor/boost/include/boost/multiprecision/rational_adaptor.hpp", @@ -2889,6 +2646,7 @@ "boost/multiprecision/traits/is_backend.hpp": "vendor/boost/include/boost/multiprecision/traits/is_backend.hpp", "boost/multiprecision/traits/is_byte_container.hpp": "vendor/boost/include/boost/multiprecision/traits/is_byte_container.hpp", "boost/multiprecision/traits/is_restricted_conversion.hpp": "vendor/boost/include/boost/multiprecision/traits/is_restricted_conversion.hpp", + "boost/multiprecision/traits/is_variable_precision.hpp": "vendor/boost/include/boost/multiprecision/traits/is_variable_precision.hpp", "boost/next_prior.hpp": "vendor/boost/include/boost/next_prior.hpp", "boost/non_type.hpp": "vendor/boost/include/boost/non_type.hpp", "boost/noncopyable.hpp": "vendor/boost/include/boost/noncopyable.hpp", @@ -2925,36 +2683,9 @@ "boost/optional/detail/optional_reference_spec.hpp": "vendor/boost/include/boost/optional/detail/optional_reference_spec.hpp", "boost/optional/detail/optional_relops.hpp": "vendor/boost/include/boost/optional/detail/optional_relops.hpp", "boost/optional/detail/optional_swap.hpp": "vendor/boost/include/boost/optional/detail/optional_swap.hpp", + "boost/optional/detail/optional_trivially_copyable_base.hpp": "vendor/boost/include/boost/optional/detail/optional_trivially_copyable_base.hpp", "boost/optional/optional.hpp": "vendor/boost/include/boost/optional/optional.hpp", "boost/optional/optional_fwd.hpp": "vendor/boost/include/boost/optional/optional_fwd.hpp", - "boost/optional/optional_io.hpp": "vendor/boost/include/boost/optional/optional_io.hpp", - "boost/parameter.hpp": "vendor/boost/include/boost/parameter.hpp", - "boost/parameter/aux_/arg_list.hpp": "vendor/boost/include/boost/parameter/aux_/arg_list.hpp", - "boost/parameter/aux_/cast.hpp": "vendor/boost/include/boost/parameter/aux_/cast.hpp", - "boost/parameter/aux_/default.hpp": "vendor/boost/include/boost/parameter/aux_/default.hpp", - "boost/parameter/aux_/is_maybe.hpp": "vendor/boost/include/boost/parameter/aux_/is_maybe.hpp", - "boost/parameter/aux_/overloads.hpp": "vendor/boost/include/boost/parameter/aux_/overloads.hpp", - "boost/parameter/aux_/parameter_requirements.hpp": "vendor/boost/include/boost/parameter/aux_/parameter_requirements.hpp", - "boost/parameter/aux_/parenthesized_type.hpp": "vendor/boost/include/boost/parameter/aux_/parenthesized_type.hpp", - "boost/parameter/aux_/preprocessor/flatten.hpp": "vendor/boost/include/boost/parameter/aux_/preprocessor/flatten.hpp", - "boost/parameter/aux_/preprocessor/for_each.hpp": "vendor/boost/include/boost/parameter/aux_/preprocessor/for_each.hpp", - "boost/parameter/aux_/result_of0.hpp": "vendor/boost/include/boost/parameter/aux_/result_of0.hpp", - "boost/parameter/aux_/set.hpp": "vendor/boost/include/boost/parameter/aux_/set.hpp", - "boost/parameter/aux_/tag.hpp": "vendor/boost/include/boost/parameter/aux_/tag.hpp", - "boost/parameter/aux_/tagged_argument.hpp": "vendor/boost/include/boost/parameter/aux_/tagged_argument.hpp", - "boost/parameter/aux_/template_keyword.hpp": "vendor/boost/include/boost/parameter/aux_/template_keyword.hpp", - "boost/parameter/aux_/unwrap_cv_reference.hpp": "vendor/boost/include/boost/parameter/aux_/unwrap_cv_reference.hpp", - "boost/parameter/aux_/void.hpp": "vendor/boost/include/boost/parameter/aux_/void.hpp", - "boost/parameter/aux_/yesno.hpp": "vendor/boost/include/boost/parameter/aux_/yesno.hpp", - "boost/parameter/binding.hpp": "vendor/boost/include/boost/parameter/binding.hpp", - "boost/parameter/config.hpp": "vendor/boost/include/boost/parameter/config.hpp", - "boost/parameter/keyword.hpp": "vendor/boost/include/boost/parameter/keyword.hpp", - "boost/parameter/macros.hpp": "vendor/boost/include/boost/parameter/macros.hpp", - "boost/parameter/match.hpp": "vendor/boost/include/boost/parameter/match.hpp", - "boost/parameter/name.hpp": "vendor/boost/include/boost/parameter/name.hpp", - "boost/parameter/parameters.hpp": "vendor/boost/include/boost/parameter/parameters.hpp", - "boost/parameter/preprocessor.hpp": "vendor/boost/include/boost/parameter/preprocessor.hpp", - "boost/parameter/value_type.hpp": "vendor/boost/include/boost/parameter/value_type.hpp", "boost/phoenix/config.hpp": "vendor/boost/include/boost/phoenix/config.hpp", "boost/phoenix/core.hpp": "vendor/boost/include/boost/phoenix/core.hpp", "boost/phoenix/core/actor.hpp": "vendor/boost/include/boost/phoenix/core/actor.hpp", @@ -2965,7 +2696,6 @@ "boost/phoenix/core/detail/argument.hpp": "vendor/boost/include/boost/phoenix/core/detail/argument.hpp", "boost/phoenix/core/detail/cpp03/actor_operator.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/actor_operator.hpp", "boost/phoenix/core/detail/cpp03/actor_result_of.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/actor_result_of.hpp", - "boost/phoenix/core/detail/cpp03/assign.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/assign.hpp", "boost/phoenix/core/detail/cpp03/call.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/call.hpp", "boost/phoenix/core/detail/cpp03/expression.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/expression.hpp", "boost/phoenix/core/detail/cpp03/function_equal.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/function_equal.hpp", @@ -2987,12 +2717,6 @@ "boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp", "boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp", "boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign_10.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign_20.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign_30.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign_40.hpp", - "boost/phoenix/core/detail/cpp03/preprocessed/assign_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/assign_50.hpp", "boost/phoenix/core/detail/cpp03/preprocessed/call.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call.hpp", "boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp", "boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp", @@ -3074,6 +2798,12 @@ "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp", "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp", "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_10.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_10.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_20.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_20.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_30.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_30.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_40.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_40.hpp", + "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_50.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_50.hpp", "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp", "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp", "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp", @@ -3097,9 +2827,7 @@ "boost/phoenix/scope/local_variable.hpp": "vendor/boost/include/boost/phoenix/scope/local_variable.hpp", "boost/phoenix/scope/scoped_environment.hpp": "vendor/boost/include/boost/phoenix/scope/scoped_environment.hpp", "boost/phoenix/statement/sequence.hpp": "vendor/boost/include/boost/phoenix/statement/sequence.hpp", - "boost/phoenix/support/detail/iterate.hpp": "vendor/boost/include/boost/phoenix/support/detail/iterate.hpp", "boost/phoenix/support/detail/iterate_define.hpp": "vendor/boost/include/boost/phoenix/support/detail/iterate_define.hpp", - "boost/phoenix/support/detail/iterate_undef.hpp": "vendor/boost/include/boost/phoenix/support/detail/iterate_undef.hpp", "boost/phoenix/support/iterate.hpp": "vendor/boost/include/boost/phoenix/support/iterate.hpp", "boost/phoenix/support/preprocessed/vector.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector.hpp", "boost/phoenix/support/preprocessed/vector_10.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector_10.hpp", @@ -3121,6 +2849,7 @@ "boost/predef/architecture/mips.h": "vendor/boost/include/boost/predef/architecture/mips.h", "boost/predef/architecture/parisc.h": "vendor/boost/include/boost/predef/architecture/parisc.h", "boost/predef/architecture/ppc.h": "vendor/boost/include/boost/predef/architecture/ppc.h", + "boost/predef/architecture/ptx.h": "vendor/boost/include/boost/predef/architecture/ptx.h", "boost/predef/architecture/pyramid.h": "vendor/boost/include/boost/predef/architecture/pyramid.h", "boost/predef/architecture/rs6k.h": "vendor/boost/include/boost/predef/architecture/rs6k.h", "boost/predef/architecture/sparc.h": "vendor/boost/include/boost/predef/architecture/sparc.h", @@ -3154,6 +2883,7 @@ "boost/predef/compiler/metrowerks.h": "vendor/boost/include/boost/predef/compiler/metrowerks.h", "boost/predef/compiler/microtec.h": "vendor/boost/include/boost/predef/compiler/microtec.h", "boost/predef/compiler/mpw.h": "vendor/boost/include/boost/predef/compiler/mpw.h", + "boost/predef/compiler/nvcc.h": "vendor/boost/include/boost/predef/compiler/nvcc.h", "boost/predef/compiler/palm.h": "vendor/boost/include/boost/predef/compiler/palm.h", "boost/predef/compiler/pgi.h": "vendor/boost/include/boost/predef/compiler/pgi.h", "boost/predef/compiler/sgi_mipspro.h": "vendor/boost/include/boost/predef/compiler/sgi_mipspro.h", @@ -3164,7 +2894,6 @@ "boost/predef/detail/_cassert.h": "vendor/boost/include/boost/predef/detail/_cassert.h", "boost/predef/detail/_exception.h": "vendor/boost/include/boost/predef/detail/_exception.h", "boost/predef/detail/comp_detected.h": "vendor/boost/include/boost/predef/detail/comp_detected.h", - "boost/predef/detail/endian_compat.h": "vendor/boost/include/boost/predef/detail/endian_compat.h", "boost/predef/detail/os_detected.h": "vendor/boost/include/boost/predef/detail/os_detected.h", "boost/predef/detail/platform_detected.h": "vendor/boost/include/boost/predef/detail/platform_detected.h", "boost/predef/detail/test.h": "vendor/boost/include/boost/predef/detail/test.h", @@ -3179,12 +2908,14 @@ "boost/predef/hardware/simd/x86_amd.h": "vendor/boost/include/boost/predef/hardware/simd/x86_amd.h", "boost/predef/hardware/simd/x86_amd/versions.h": "vendor/boost/include/boost/predef/hardware/simd/x86_amd/versions.h", "boost/predef/language.h": "vendor/boost/include/boost/predef/language.h", + "boost/predef/language/cuda.h": "vendor/boost/include/boost/predef/language/cuda.h", "boost/predef/language/objc.h": "vendor/boost/include/boost/predef/language/objc.h", "boost/predef/language/stdc.h": "vendor/boost/include/boost/predef/language/stdc.h", "boost/predef/language/stdcpp.h": "vendor/boost/include/boost/predef/language/stdcpp.h", "boost/predef/library.h": "vendor/boost/include/boost/predef/library.h", "boost/predef/library/c.h": "vendor/boost/include/boost/predef/library/c.h", "boost/predef/library/c/_prefix.h": "vendor/boost/include/boost/predef/library/c/_prefix.h", + "boost/predef/library/c/cloudabi.h": "vendor/boost/include/boost/predef/library/c/cloudabi.h", "boost/predef/library/c/gnu.h": "vendor/boost/include/boost/predef/library/c/gnu.h", "boost/predef/library/c/uc.h": "vendor/boost/include/boost/predef/library/c/uc.h", "boost/predef/library/c/vms.h": "vendor/boost/include/boost/predef/library/c/vms.h", @@ -3229,12 +2960,18 @@ "boost/predef/other.h": "vendor/boost/include/boost/predef/other.h", "boost/predef/other/endian.h": "vendor/boost/include/boost/predef/other/endian.h", "boost/predef/platform.h": "vendor/boost/include/boost/predef/platform.h", + "boost/predef/platform/cloudabi.h": "vendor/boost/include/boost/predef/platform/cloudabi.h", "boost/predef/platform/ios.h": "vendor/boost/include/boost/predef/platform/ios.h", "boost/predef/platform/mingw.h": "vendor/boost/include/boost/predef/platform/mingw.h", + "boost/predef/platform/mingw32.h": "vendor/boost/include/boost/predef/platform/mingw32.h", + "boost/predef/platform/mingw64.h": "vendor/boost/include/boost/predef/platform/mingw64.h", "boost/predef/platform/windows_desktop.h": "vendor/boost/include/boost/predef/platform/windows_desktop.h", "boost/predef/platform/windows_phone.h": "vendor/boost/include/boost/predef/platform/windows_phone.h", "boost/predef/platform/windows_runtime.h": "vendor/boost/include/boost/predef/platform/windows_runtime.h", + "boost/predef/platform/windows_server.h": "vendor/boost/include/boost/predef/platform/windows_server.h", "boost/predef/platform/windows_store.h": "vendor/boost/include/boost/predef/platform/windows_store.h", + "boost/predef/platform/windows_system.h": "vendor/boost/include/boost/predef/platform/windows_system.h", + "boost/predef/platform/windows_uwp.h": "vendor/boost/include/boost/predef/platform/windows_uwp.h", "boost/predef/version.h": "vendor/boost/include/boost/predef/version.h", "boost/predef/version_number.h": "vendor/boost/include/boost/predef/version_number.h", "boost/preprocessor/arithmetic/add.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/add.hpp", @@ -3244,17 +2981,8 @@ "boost/preprocessor/arithmetic/mod.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/mod.hpp", "boost/preprocessor/arithmetic/sub.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/sub.hpp", "boost/preprocessor/array/data.hpp": "vendor/boost/include/boost/preprocessor/array/data.hpp", - "boost/preprocessor/array/detail/get_data.hpp": "vendor/boost/include/boost/preprocessor/array/detail/get_data.hpp", "boost/preprocessor/array/elem.hpp": "vendor/boost/include/boost/preprocessor/array/elem.hpp", - "boost/preprocessor/array/insert.hpp": "vendor/boost/include/boost/preprocessor/array/insert.hpp", - "boost/preprocessor/array/pop_back.hpp": "vendor/boost/include/boost/preprocessor/array/pop_back.hpp", - "boost/preprocessor/array/pop_front.hpp": "vendor/boost/include/boost/preprocessor/array/pop_front.hpp", - "boost/preprocessor/array/push_back.hpp": "vendor/boost/include/boost/preprocessor/array/push_back.hpp", - "boost/preprocessor/array/push_front.hpp": "vendor/boost/include/boost/preprocessor/array/push_front.hpp", - "boost/preprocessor/array/remove.hpp": "vendor/boost/include/boost/preprocessor/array/remove.hpp", - "boost/preprocessor/array/replace.hpp": "vendor/boost/include/boost/preprocessor/array/replace.hpp", "boost/preprocessor/array/size.hpp": "vendor/boost/include/boost/preprocessor/array/size.hpp", - "boost/preprocessor/array/to_tuple.hpp": "vendor/boost/include/boost/preprocessor/array/to_tuple.hpp", "boost/preprocessor/cat.hpp": "vendor/boost/include/boost/preprocessor/cat.hpp", "boost/preprocessor/comma_if.hpp": "vendor/boost/include/boost/preprocessor/comma_if.hpp", "boost/preprocessor/comparison/equal.hpp": "vendor/boost/include/boost/preprocessor/comparison/equal.hpp", @@ -3274,13 +3002,11 @@ "boost/preprocessor/control/iif.hpp": "vendor/boost/include/boost/preprocessor/control/iif.hpp", "boost/preprocessor/control/while.hpp": "vendor/boost/include/boost/preprocessor/control/while.hpp", "boost/preprocessor/debug/error.hpp": "vendor/boost/include/boost/preprocessor/debug/error.hpp", - "boost/preprocessor/debug/line.hpp": "vendor/boost/include/boost/preprocessor/debug/line.hpp", "boost/preprocessor/dec.hpp": "vendor/boost/include/boost/preprocessor/dec.hpp", "boost/preprocessor/detail/auto_rec.hpp": "vendor/boost/include/boost/preprocessor/detail/auto_rec.hpp", "boost/preprocessor/detail/check.hpp": "vendor/boost/include/boost/preprocessor/detail/check.hpp", "boost/preprocessor/detail/dmc/auto_rec.hpp": "vendor/boost/include/boost/preprocessor/detail/dmc/auto_rec.hpp", "boost/preprocessor/detail/is_binary.hpp": "vendor/boost/include/boost/preprocessor/detail/is_binary.hpp", - "boost/preprocessor/detail/is_nullary.hpp": "vendor/boost/include/boost/preprocessor/detail/is_nullary.hpp", "boost/preprocessor/detail/is_unary.hpp": "vendor/boost/include/boost/preprocessor/detail/is_unary.hpp", "boost/preprocessor/detail/split.hpp": "vendor/boost/include/boost/preprocessor/detail/split.hpp", "boost/preprocessor/empty.hpp": "vendor/boost/include/boost/preprocessor/empty.hpp", @@ -3299,7 +3025,6 @@ "boost/preprocessor/facilities/is_empty.hpp": "vendor/boost/include/boost/preprocessor/facilities/is_empty.hpp", "boost/preprocessor/facilities/is_empty_variadic.hpp": "vendor/boost/include/boost/preprocessor/facilities/is_empty_variadic.hpp", "boost/preprocessor/facilities/overload.hpp": "vendor/boost/include/boost/preprocessor/facilities/overload.hpp", - "boost/preprocessor/for.hpp": "vendor/boost/include/boost/preprocessor/for.hpp", "boost/preprocessor/identity.hpp": "vendor/boost/include/boost/preprocessor/identity.hpp", "boost/preprocessor/if.hpp": "vendor/boost/include/boost/preprocessor/if.hpp", "boost/preprocessor/inc.hpp": "vendor/boost/include/boost/preprocessor/inc.hpp", @@ -3356,8 +3081,6 @@ "boost/preprocessor/punctuation/paren.hpp": "vendor/boost/include/boost/preprocessor/punctuation/paren.hpp", "boost/preprocessor/repeat.hpp": "vendor/boost/include/boost/preprocessor/repeat.hpp", "boost/preprocessor/repeat_from_to.hpp": "vendor/boost/include/boost/preprocessor/repeat_from_to.hpp", - "boost/preprocessor/repetition/deduce_r.hpp": "vendor/boost/include/boost/preprocessor/repetition/deduce_r.hpp", - "boost/preprocessor/repetition/deduce_z.hpp": "vendor/boost/include/boost/preprocessor/repetition/deduce_z.hpp", "boost/preprocessor/repetition/detail/dmc/for.hpp": "vendor/boost/include/boost/preprocessor/repetition/detail/dmc/for.hpp", "boost/preprocessor/repetition/detail/edg/for.hpp": "vendor/boost/include/boost/preprocessor/repetition/detail/edg/for.hpp", "boost/preprocessor/repetition/detail/for.hpp": "vendor/boost/include/boost/preprocessor/repetition/detail/for.hpp", @@ -3405,60 +3128,16 @@ "boost/preprocessor/slot/detail/slot5.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/slot5.hpp", "boost/preprocessor/slot/slot.hpp": "vendor/boost/include/boost/preprocessor/slot/slot.hpp", "boost/preprocessor/stringize.hpp": "vendor/boost/include/boost/preprocessor/stringize.hpp", - "boost/preprocessor/tuple.hpp": "vendor/boost/include/boost/preprocessor/tuple.hpp", "boost/preprocessor/tuple/detail/is_single_return.hpp": "vendor/boost/include/boost/preprocessor/tuple/detail/is_single_return.hpp", "boost/preprocessor/tuple/eat.hpp": "vendor/boost/include/boost/preprocessor/tuple/eat.hpp", "boost/preprocessor/tuple/elem.hpp": "vendor/boost/include/boost/preprocessor/tuple/elem.hpp", - "boost/preprocessor/tuple/enum.hpp": "vendor/boost/include/boost/preprocessor/tuple/enum.hpp", - "boost/preprocessor/tuple/insert.hpp": "vendor/boost/include/boost/preprocessor/tuple/insert.hpp", - "boost/preprocessor/tuple/pop_back.hpp": "vendor/boost/include/boost/preprocessor/tuple/pop_back.hpp", - "boost/preprocessor/tuple/pop_front.hpp": "vendor/boost/include/boost/preprocessor/tuple/pop_front.hpp", - "boost/preprocessor/tuple/push_back.hpp": "vendor/boost/include/boost/preprocessor/tuple/push_back.hpp", - "boost/preprocessor/tuple/push_front.hpp": "vendor/boost/include/boost/preprocessor/tuple/push_front.hpp", "boost/preprocessor/tuple/rem.hpp": "vendor/boost/include/boost/preprocessor/tuple/rem.hpp", - "boost/preprocessor/tuple/remove.hpp": "vendor/boost/include/boost/preprocessor/tuple/remove.hpp", - "boost/preprocessor/tuple/replace.hpp": "vendor/boost/include/boost/preprocessor/tuple/replace.hpp", - "boost/preprocessor/tuple/reverse.hpp": "vendor/boost/include/boost/preprocessor/tuple/reverse.hpp", "boost/preprocessor/tuple/size.hpp": "vendor/boost/include/boost/preprocessor/tuple/size.hpp", - "boost/preprocessor/tuple/to_array.hpp": "vendor/boost/include/boost/preprocessor/tuple/to_array.hpp", "boost/preprocessor/tuple/to_list.hpp": "vendor/boost/include/boost/preprocessor/tuple/to_list.hpp", "boost/preprocessor/tuple/to_seq.hpp": "vendor/boost/include/boost/preprocessor/tuple/to_seq.hpp", "boost/preprocessor/variadic/elem.hpp": "vendor/boost/include/boost/preprocessor/variadic/elem.hpp", "boost/preprocessor/variadic/size.hpp": "vendor/boost/include/boost/preprocessor/variadic/size.hpp", "boost/preprocessor/variadic/to_seq.hpp": "vendor/boost/include/boost/preprocessor/variadic/to_seq.hpp", - "boost/program_options.hpp": "vendor/boost/include/boost/program_options.hpp", - "boost/program_options/cmdline.hpp": "vendor/boost/include/boost/program_options/cmdline.hpp", - "boost/program_options/config.hpp": "vendor/boost/include/boost/program_options/config.hpp", - "boost/program_options/detail/cmdline.hpp": "vendor/boost/include/boost/program_options/detail/cmdline.hpp", - "boost/program_options/detail/convert.hpp": "vendor/boost/include/boost/program_options/detail/convert.hpp", - "boost/program_options/detail/parsers.hpp": "vendor/boost/include/boost/program_options/detail/parsers.hpp", - "boost/program_options/detail/value_semantic.hpp": "vendor/boost/include/boost/program_options/detail/value_semantic.hpp", - "boost/program_options/errors.hpp": "vendor/boost/include/boost/program_options/errors.hpp", - "boost/program_options/option.hpp": "vendor/boost/include/boost/program_options/option.hpp", - "boost/program_options/options_description.hpp": "vendor/boost/include/boost/program_options/options_description.hpp", - "boost/program_options/parsers.hpp": "vendor/boost/include/boost/program_options/parsers.hpp", - "boost/program_options/positional_options.hpp": "vendor/boost/include/boost/program_options/positional_options.hpp", - "boost/program_options/value_semantic.hpp": "vendor/boost/include/boost/program_options/value_semantic.hpp", - "boost/program_options/variables_map.hpp": "vendor/boost/include/boost/program_options/variables_map.hpp", - "boost/program_options/version.hpp": "vendor/boost/include/boost/program_options/version.hpp", - "boost/property_tree/detail/exception_implementation.hpp": "vendor/boost/include/boost/property_tree/detail/exception_implementation.hpp", - "boost/property_tree/detail/file_parser_error.hpp": "vendor/boost/include/boost/property_tree/detail/file_parser_error.hpp", - "boost/property_tree/detail/ptree_implementation.hpp": "vendor/boost/include/boost/property_tree/detail/ptree_implementation.hpp", - "boost/property_tree/detail/ptree_utils.hpp": "vendor/boost/include/boost/property_tree/detail/ptree_utils.hpp", - "boost/property_tree/exceptions.hpp": "vendor/boost/include/boost/property_tree/exceptions.hpp", - "boost/property_tree/id_translator.hpp": "vendor/boost/include/boost/property_tree/id_translator.hpp", - "boost/property_tree/json_parser.hpp": "vendor/boost/include/boost/property_tree/json_parser.hpp", - "boost/property_tree/json_parser/detail/narrow_encoding.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/narrow_encoding.hpp", - "boost/property_tree/json_parser/detail/parser.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/parser.hpp", - "boost/property_tree/json_parser/detail/read.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/read.hpp", - "boost/property_tree/json_parser/detail/standard_callbacks.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/standard_callbacks.hpp", - "boost/property_tree/json_parser/detail/wide_encoding.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/wide_encoding.hpp", - "boost/property_tree/json_parser/detail/write.hpp": "vendor/boost/include/boost/property_tree/json_parser/detail/write.hpp", - "boost/property_tree/json_parser/error.hpp": "vendor/boost/include/boost/property_tree/json_parser/error.hpp", - "boost/property_tree/ptree.hpp": "vendor/boost/include/boost/property_tree/ptree.hpp", - "boost/property_tree/ptree_fwd.hpp": "vendor/boost/include/boost/property_tree/ptree_fwd.hpp", - "boost/property_tree/stream_translator.hpp": "vendor/boost/include/boost/property_tree/stream_translator.hpp", - "boost/property_tree/string_path.hpp": "vendor/boost/include/boost/property_tree/string_path.hpp", "boost/proto/args.hpp": "vendor/boost/include/boost/proto/args.hpp", "boost/proto/context.hpp": "vendor/boost/include/boost/proto/context.hpp", "boost/proto/context/callable.hpp": "vendor/boost/include/boost/proto/context/callable.hpp", @@ -3607,201 +3286,6 @@ "boost/proto/transform/make.hpp": "vendor/boost/include/boost/proto/transform/make.hpp", "boost/proto/transform/pass_through.hpp": "vendor/boost/include/boost/proto/transform/pass_through.hpp", "boost/proto/transform/when.hpp": "vendor/boost/include/boost/proto/transform/when.hpp", - "boost/python.hpp": "vendor/boost/include/boost/python.hpp", - "boost/python/arg_from_python.hpp": "vendor/boost/include/boost/python/arg_from_python.hpp", - "boost/python/args.hpp": "vendor/boost/include/boost/python/args.hpp", - "boost/python/args_fwd.hpp": "vendor/boost/include/boost/python/args_fwd.hpp", - "boost/python/back_reference.hpp": "vendor/boost/include/boost/python/back_reference.hpp", - "boost/python/base_type_traits.hpp": "vendor/boost/include/boost/python/base_type_traits.hpp", - "boost/python/bases.hpp": "vendor/boost/include/boost/python/bases.hpp", - "boost/python/borrowed.hpp": "vendor/boost/include/boost/python/borrowed.hpp", - "boost/python/call.hpp": "vendor/boost/include/boost/python/call.hpp", - "boost/python/call_method.hpp": "vendor/boost/include/boost/python/call_method.hpp", - "boost/python/cast.hpp": "vendor/boost/include/boost/python/cast.hpp", - "boost/python/class.hpp": "vendor/boost/include/boost/python/class.hpp", - "boost/python/class_fwd.hpp": "vendor/boost/include/boost/python/class_fwd.hpp", - "boost/python/converter/arg_from_python.hpp": "vendor/boost/include/boost/python/converter/arg_from_python.hpp", - "boost/python/converter/arg_to_python.hpp": "vendor/boost/include/boost/python/converter/arg_to_python.hpp", - "boost/python/converter/arg_to_python_base.hpp": "vendor/boost/include/boost/python/converter/arg_to_python_base.hpp", - "boost/python/converter/as_to_python_function.hpp": "vendor/boost/include/boost/python/converter/as_to_python_function.hpp", - "boost/python/converter/builtin_converters.hpp": "vendor/boost/include/boost/python/converter/builtin_converters.hpp", - "boost/python/converter/constructor_function.hpp": "vendor/boost/include/boost/python/converter/constructor_function.hpp", - "boost/python/converter/context_result_converter.hpp": "vendor/boost/include/boost/python/converter/context_result_converter.hpp", - "boost/python/converter/convertible_function.hpp": "vendor/boost/include/boost/python/converter/convertible_function.hpp", - "boost/python/converter/from_python.hpp": "vendor/boost/include/boost/python/converter/from_python.hpp", - "boost/python/converter/implicit.hpp": "vendor/boost/include/boost/python/converter/implicit.hpp", - "boost/python/converter/obj_mgr_arg_from_python.hpp": "vendor/boost/include/boost/python/converter/obj_mgr_arg_from_python.hpp", - "boost/python/converter/object_manager.hpp": "vendor/boost/include/boost/python/converter/object_manager.hpp", - "boost/python/converter/pointer_type_id.hpp": "vendor/boost/include/boost/python/converter/pointer_type_id.hpp", - "boost/python/converter/pyobject_traits.hpp": "vendor/boost/include/boost/python/converter/pyobject_traits.hpp", - "boost/python/converter/pyobject_type.hpp": "vendor/boost/include/boost/python/converter/pyobject_type.hpp", - "boost/python/converter/pytype_function.hpp": "vendor/boost/include/boost/python/converter/pytype_function.hpp", - "boost/python/converter/pytype_object_mgr_traits.hpp": "vendor/boost/include/boost/python/converter/pytype_object_mgr_traits.hpp", - "boost/python/converter/registered.hpp": "vendor/boost/include/boost/python/converter/registered.hpp", - "boost/python/converter/registered_pointee.hpp": "vendor/boost/include/boost/python/converter/registered_pointee.hpp", - "boost/python/converter/registrations.hpp": "vendor/boost/include/boost/python/converter/registrations.hpp", - "boost/python/converter/registry.hpp": "vendor/boost/include/boost/python/converter/registry.hpp", - "boost/python/converter/return_from_python.hpp": "vendor/boost/include/boost/python/converter/return_from_python.hpp", - "boost/python/converter/rvalue_from_python_data.hpp": "vendor/boost/include/boost/python/converter/rvalue_from_python_data.hpp", - "boost/python/converter/shared_ptr_deleter.hpp": "vendor/boost/include/boost/python/converter/shared_ptr_deleter.hpp", - "boost/python/converter/shared_ptr_from_python.hpp": "vendor/boost/include/boost/python/converter/shared_ptr_from_python.hpp", - "boost/python/converter/shared_ptr_to_python.hpp": "vendor/boost/include/boost/python/converter/shared_ptr_to_python.hpp", - "boost/python/converter/to_python_function_type.hpp": "vendor/boost/include/boost/python/converter/to_python_function_type.hpp", - "boost/python/copy_const_reference.hpp": "vendor/boost/include/boost/python/copy_const_reference.hpp", - "boost/python/copy_non_const_reference.hpp": "vendor/boost/include/boost/python/copy_non_const_reference.hpp", - "boost/python/data_members.hpp": "vendor/boost/include/boost/python/data_members.hpp", - "boost/python/def.hpp": "vendor/boost/include/boost/python/def.hpp", - "boost/python/def_visitor.hpp": "vendor/boost/include/boost/python/def_visitor.hpp", - "boost/python/default_call_policies.hpp": "vendor/boost/include/boost/python/default_call_policies.hpp", - "boost/python/detail/borrowed_ptr.hpp": "vendor/boost/include/boost/python/detail/borrowed_ptr.hpp", - "boost/python/detail/caller.hpp": "vendor/boost/include/boost/python/detail/caller.hpp", - "boost/python/detail/config.hpp": "vendor/boost/include/boost/python/detail/config.hpp", - "boost/python/detail/construct.hpp": "vendor/boost/include/boost/python/detail/construct.hpp", - "boost/python/detail/convertible.hpp": "vendor/boost/include/boost/python/detail/convertible.hpp", - "boost/python/detail/copy_ctor_mutates_rhs.hpp": "vendor/boost/include/boost/python/detail/copy_ctor_mutates_rhs.hpp", - "boost/python/detail/cv_category.hpp": "vendor/boost/include/boost/python/detail/cv_category.hpp", - "boost/python/detail/dealloc.hpp": "vendor/boost/include/boost/python/detail/dealloc.hpp", - "boost/python/detail/decref_guard.hpp": "vendor/boost/include/boost/python/detail/decref_guard.hpp", - "boost/python/detail/def_helper.hpp": "vendor/boost/include/boost/python/detail/def_helper.hpp", - "boost/python/detail/def_helper_fwd.hpp": "vendor/boost/include/boost/python/detail/def_helper_fwd.hpp", - "boost/python/detail/defaults_def.hpp": "vendor/boost/include/boost/python/detail/defaults_def.hpp", - "boost/python/detail/defaults_gen.hpp": "vendor/boost/include/boost/python/detail/defaults_gen.hpp", - "boost/python/detail/dependent.hpp": "vendor/boost/include/boost/python/detail/dependent.hpp", - "boost/python/detail/destroy.hpp": "vendor/boost/include/boost/python/detail/destroy.hpp", - "boost/python/detail/exception_handler.hpp": "vendor/boost/include/boost/python/detail/exception_handler.hpp", - "boost/python/detail/force_instantiate.hpp": "vendor/boost/include/boost/python/detail/force_instantiate.hpp", - "boost/python/detail/indirect_traits.hpp": "vendor/boost/include/boost/python/detail/indirect_traits.hpp", - "boost/python/detail/invoke.hpp": "vendor/boost/include/boost/python/detail/invoke.hpp", - "boost/python/detail/is_auto_ptr.hpp": "vendor/boost/include/boost/python/detail/is_auto_ptr.hpp", - "boost/python/detail/is_shared_ptr.hpp": "vendor/boost/include/boost/python/detail/is_shared_ptr.hpp", - "boost/python/detail/is_wrapper.hpp": "vendor/boost/include/boost/python/detail/is_wrapper.hpp", - "boost/python/detail/is_xxx.hpp": "vendor/boost/include/boost/python/detail/is_xxx.hpp", - "boost/python/detail/make_keyword_range_fn.hpp": "vendor/boost/include/boost/python/detail/make_keyword_range_fn.hpp", - "boost/python/detail/make_tuple.hpp": "vendor/boost/include/boost/python/detail/make_tuple.hpp", - "boost/python/detail/mpl_lambda.hpp": "vendor/boost/include/boost/python/detail/mpl_lambda.hpp", - "boost/python/detail/msvc_typeinfo.hpp": "vendor/boost/include/boost/python/detail/msvc_typeinfo.hpp", - "boost/python/detail/none.hpp": "vendor/boost/include/boost/python/detail/none.hpp", - "boost/python/detail/not_specified.hpp": "vendor/boost/include/boost/python/detail/not_specified.hpp", - "boost/python/detail/nullary_function_adaptor.hpp": "vendor/boost/include/boost/python/detail/nullary_function_adaptor.hpp", - "boost/python/detail/operator_id.hpp": "vendor/boost/include/boost/python/detail/operator_id.hpp", - "boost/python/detail/overloads_fwd.hpp": "vendor/boost/include/boost/python/detail/overloads_fwd.hpp", - "boost/python/detail/prefix.hpp": "vendor/boost/include/boost/python/detail/prefix.hpp", - "boost/python/detail/preprocessor.hpp": "vendor/boost/include/boost/python/detail/preprocessor.hpp", - "boost/python/detail/python22_fixed.h": "vendor/boost/include/boost/python/detail/python22_fixed.h", - "boost/python/detail/python_type.hpp": "vendor/boost/include/boost/python/detail/python_type.hpp", - "boost/python/detail/raw_pyobject.hpp": "vendor/boost/include/boost/python/detail/raw_pyobject.hpp", - "boost/python/detail/referent_storage.hpp": "vendor/boost/include/boost/python/detail/referent_storage.hpp", - "boost/python/detail/scope.hpp": "vendor/boost/include/boost/python/detail/scope.hpp", - "boost/python/detail/sfinae.hpp": "vendor/boost/include/boost/python/detail/sfinae.hpp", - "boost/python/detail/signature.hpp": "vendor/boost/include/boost/python/detail/signature.hpp", - "boost/python/detail/string_literal.hpp": "vendor/boost/include/boost/python/detail/string_literal.hpp", - "boost/python/detail/target.hpp": "vendor/boost/include/boost/python/detail/target.hpp", - "boost/python/detail/translate_exception.hpp": "vendor/boost/include/boost/python/detail/translate_exception.hpp", - "boost/python/detail/type_list.hpp": "vendor/boost/include/boost/python/detail/type_list.hpp", - "boost/python/detail/type_list_impl.hpp": "vendor/boost/include/boost/python/detail/type_list_impl.hpp", - "boost/python/detail/type_traits.hpp": "vendor/boost/include/boost/python/detail/type_traits.hpp", - "boost/python/detail/unwind_type.hpp": "vendor/boost/include/boost/python/detail/unwind_type.hpp", - "boost/python/detail/unwrap_type_id.hpp": "vendor/boost/include/boost/python/detail/unwrap_type_id.hpp", - "boost/python/detail/unwrap_wrapper.hpp": "vendor/boost/include/boost/python/detail/unwrap_wrapper.hpp", - "boost/python/detail/value_arg.hpp": "vendor/boost/include/boost/python/detail/value_arg.hpp", - "boost/python/detail/value_is_shared_ptr.hpp": "vendor/boost/include/boost/python/detail/value_is_shared_ptr.hpp", - "boost/python/detail/value_is_xxx.hpp": "vendor/boost/include/boost/python/detail/value_is_xxx.hpp", - "boost/python/detail/void_ptr.hpp": "vendor/boost/include/boost/python/detail/void_ptr.hpp", - "boost/python/detail/void_return.hpp": "vendor/boost/include/boost/python/detail/void_return.hpp", - "boost/python/detail/wrap_python.hpp": "vendor/boost/include/boost/python/detail/wrap_python.hpp", - "boost/python/detail/wrapper_base.hpp": "vendor/boost/include/boost/python/detail/wrapper_base.hpp", - "boost/python/dict.hpp": "vendor/boost/include/boost/python/dict.hpp", - "boost/python/docstring_options.hpp": "vendor/boost/include/boost/python/docstring_options.hpp", - "boost/python/enum.hpp": "vendor/boost/include/boost/python/enum.hpp", - "boost/python/errors.hpp": "vendor/boost/include/boost/python/errors.hpp", - "boost/python/exception_translator.hpp": "vendor/boost/include/boost/python/exception_translator.hpp", - "boost/python/exec.hpp": "vendor/boost/include/boost/python/exec.hpp", - "boost/python/extract.hpp": "vendor/boost/include/boost/python/extract.hpp", - "boost/python/handle.hpp": "vendor/boost/include/boost/python/handle.hpp", - "boost/python/handle_fwd.hpp": "vendor/boost/include/boost/python/handle_fwd.hpp", - "boost/python/has_back_reference.hpp": "vendor/boost/include/boost/python/has_back_reference.hpp", - "boost/python/implicit.hpp": "vendor/boost/include/boost/python/implicit.hpp", - "boost/python/import.hpp": "vendor/boost/include/boost/python/import.hpp", - "boost/python/init.hpp": "vendor/boost/include/boost/python/init.hpp", - "boost/python/instance_holder.hpp": "vendor/boost/include/boost/python/instance_holder.hpp", - "boost/python/iterator.hpp": "vendor/boost/include/boost/python/iterator.hpp", - "boost/python/list.hpp": "vendor/boost/include/boost/python/list.hpp", - "boost/python/long.hpp": "vendor/boost/include/boost/python/long.hpp", - "boost/python/lvalue_from_pytype.hpp": "vendor/boost/include/boost/python/lvalue_from_pytype.hpp", - "boost/python/make_constructor.hpp": "vendor/boost/include/boost/python/make_constructor.hpp", - "boost/python/make_function.hpp": "vendor/boost/include/boost/python/make_function.hpp", - "boost/python/manage_new_object.hpp": "vendor/boost/include/boost/python/manage_new_object.hpp", - "boost/python/module.hpp": "vendor/boost/include/boost/python/module.hpp", - "boost/python/module_init.hpp": "vendor/boost/include/boost/python/module_init.hpp", - "boost/python/object.hpp": "vendor/boost/include/boost/python/object.hpp", - "boost/python/object/add_to_namespace.hpp": "vendor/boost/include/boost/python/object/add_to_namespace.hpp", - "boost/python/object/class.hpp": "vendor/boost/include/boost/python/object/class.hpp", - "boost/python/object/class_detail.hpp": "vendor/boost/include/boost/python/object/class_detail.hpp", - "boost/python/object/class_metadata.hpp": "vendor/boost/include/boost/python/object/class_metadata.hpp", - "boost/python/object/class_wrapper.hpp": "vendor/boost/include/boost/python/object/class_wrapper.hpp", - "boost/python/object/enum_base.hpp": "vendor/boost/include/boost/python/object/enum_base.hpp", - "boost/python/object/forward.hpp": "vendor/boost/include/boost/python/object/forward.hpp", - "boost/python/object/function.hpp": "vendor/boost/include/boost/python/object/function.hpp", - "boost/python/object/function_handle.hpp": "vendor/boost/include/boost/python/object/function_handle.hpp", - "boost/python/object/function_object.hpp": "vendor/boost/include/boost/python/object/function_object.hpp", - "boost/python/object/inheritance.hpp": "vendor/boost/include/boost/python/object/inheritance.hpp", - "boost/python/object/inheritance_query.hpp": "vendor/boost/include/boost/python/object/inheritance_query.hpp", - "boost/python/object/instance.hpp": "vendor/boost/include/boost/python/object/instance.hpp", - "boost/python/object/iterator.hpp": "vendor/boost/include/boost/python/object/iterator.hpp", - "boost/python/object/iterator_core.hpp": "vendor/boost/include/boost/python/object/iterator_core.hpp", - "boost/python/object/life_support.hpp": "vendor/boost/include/boost/python/object/life_support.hpp", - "boost/python/object/make_holder.hpp": "vendor/boost/include/boost/python/object/make_holder.hpp", - "boost/python/object/make_instance.hpp": "vendor/boost/include/boost/python/object/make_instance.hpp", - "boost/python/object/make_ptr_instance.hpp": "vendor/boost/include/boost/python/object/make_ptr_instance.hpp", - "boost/python/object/pickle_support.hpp": "vendor/boost/include/boost/python/object/pickle_support.hpp", - "boost/python/object/pointer_holder.hpp": "vendor/boost/include/boost/python/object/pointer_holder.hpp", - "boost/python/object/py_function.hpp": "vendor/boost/include/boost/python/object/py_function.hpp", - "boost/python/object/stl_iterator_core.hpp": "vendor/boost/include/boost/python/object/stl_iterator_core.hpp", - "boost/python/object/value_holder.hpp": "vendor/boost/include/boost/python/object/value_holder.hpp", - "boost/python/object/value_holder_fwd.hpp": "vendor/boost/include/boost/python/object/value_holder_fwd.hpp", - "boost/python/object_attributes.hpp": "vendor/boost/include/boost/python/object_attributes.hpp", - "boost/python/object_call.hpp": "vendor/boost/include/boost/python/object_call.hpp", - "boost/python/object_core.hpp": "vendor/boost/include/boost/python/object_core.hpp", - "boost/python/object_fwd.hpp": "vendor/boost/include/boost/python/object_fwd.hpp", - "boost/python/object_items.hpp": "vendor/boost/include/boost/python/object_items.hpp", - "boost/python/object_operators.hpp": "vendor/boost/include/boost/python/object_operators.hpp", - "boost/python/object_protocol.hpp": "vendor/boost/include/boost/python/object_protocol.hpp", - "boost/python/object_protocol_core.hpp": "vendor/boost/include/boost/python/object_protocol_core.hpp", - "boost/python/object_slices.hpp": "vendor/boost/include/boost/python/object_slices.hpp", - "boost/python/opaque_pointer_converter.hpp": "vendor/boost/include/boost/python/opaque_pointer_converter.hpp", - "boost/python/operators.hpp": "vendor/boost/include/boost/python/operators.hpp", - "boost/python/other.hpp": "vendor/boost/include/boost/python/other.hpp", - "boost/python/overloads.hpp": "vendor/boost/include/boost/python/overloads.hpp", - "boost/python/override.hpp": "vendor/boost/include/boost/python/override.hpp", - "boost/python/pointee.hpp": "vendor/boost/include/boost/python/pointee.hpp", - "boost/python/proxy.hpp": "vendor/boost/include/boost/python/proxy.hpp", - "boost/python/ptr.hpp": "vendor/boost/include/boost/python/ptr.hpp", - "boost/python/pure_virtual.hpp": "vendor/boost/include/boost/python/pure_virtual.hpp", - "boost/python/raw_function.hpp": "vendor/boost/include/boost/python/raw_function.hpp", - "boost/python/refcount.hpp": "vendor/boost/include/boost/python/refcount.hpp", - "boost/python/reference_existing_object.hpp": "vendor/boost/include/boost/python/reference_existing_object.hpp", - "boost/python/register_ptr_to_python.hpp": "vendor/boost/include/boost/python/register_ptr_to_python.hpp", - "boost/python/return_arg.hpp": "vendor/boost/include/boost/python/return_arg.hpp", - "boost/python/return_by_value.hpp": "vendor/boost/include/boost/python/return_by_value.hpp", - "boost/python/return_internal_reference.hpp": "vendor/boost/include/boost/python/return_internal_reference.hpp", - "boost/python/return_opaque_pointer.hpp": "vendor/boost/include/boost/python/return_opaque_pointer.hpp", - "boost/python/return_value_policy.hpp": "vendor/boost/include/boost/python/return_value_policy.hpp", - "boost/python/scope.hpp": "vendor/boost/include/boost/python/scope.hpp", - "boost/python/self.hpp": "vendor/boost/include/boost/python/self.hpp", - "boost/python/signature.hpp": "vendor/boost/include/boost/python/signature.hpp", - "boost/python/slice.hpp": "vendor/boost/include/boost/python/slice.hpp", - "boost/python/slice_nil.hpp": "vendor/boost/include/boost/python/slice_nil.hpp", - "boost/python/ssize_t.hpp": "vendor/boost/include/boost/python/ssize_t.hpp", - "boost/python/stl_iterator.hpp": "vendor/boost/include/boost/python/stl_iterator.hpp", - "boost/python/str.hpp": "vendor/boost/include/boost/python/str.hpp", - "boost/python/tag.hpp": "vendor/boost/include/boost/python/tag.hpp", - "boost/python/to_python_converter.hpp": "vendor/boost/include/boost/python/to_python_converter.hpp", - "boost/python/to_python_indirect.hpp": "vendor/boost/include/boost/python/to_python_indirect.hpp", - "boost/python/to_python_value.hpp": "vendor/boost/include/boost/python/to_python_value.hpp", - "boost/python/tuple.hpp": "vendor/boost/include/boost/python/tuple.hpp", - "boost/python/type_id.hpp": "vendor/boost/include/boost/python/type_id.hpp", - "boost/python/with_custodian_and_ward.hpp": "vendor/boost/include/boost/python/with_custodian_and_ward.hpp", - "boost/python/wrapper.hpp": "vendor/boost/include/boost/python/wrapper.hpp", "boost/qvm/assert.hpp": "vendor/boost/include/boost/qvm/assert.hpp", "boost/qvm/deduce_mat.hpp": "vendor/boost/include/boost/qvm/deduce_mat.hpp", "boost/qvm/deduce_scalar.hpp": "vendor/boost/include/boost/qvm/deduce_scalar.hpp", @@ -3835,12 +3319,8 @@ "boost/qvm/throw_exception.hpp": "vendor/boost/include/boost/qvm/throw_exception.hpp", "boost/qvm/vec_traits.hpp": "vendor/boost/include/boost/qvm/vec_traits.hpp", "boost/range.hpp": "vendor/boost/include/boost/range.hpp", - "boost/range/adaptor/argument_fwd.hpp": "vendor/boost/include/boost/range/adaptor/argument_fwd.hpp", - "boost/range/adaptor/map.hpp": "vendor/boost/include/boost/range/adaptor/map.hpp", "boost/range/adaptor/reversed.hpp": "vendor/boost/include/boost/range/adaptor/reversed.hpp", - "boost/range/adaptor/transformed.hpp": "vendor/boost/include/boost/range/adaptor/transformed.hpp", "boost/range/algorithm/equal.hpp": "vendor/boost/include/boost/range/algorithm/equal.hpp", - "boost/range/algorithm/remove_if.hpp": "vendor/boost/include/boost/range/algorithm/remove_if.hpp", "boost/range/algorithm/reverse.hpp": "vendor/boost/include/boost/range/algorithm/reverse.hpp", "boost/range/as_literal.hpp": "vendor/boost/include/boost/range/as_literal.hpp", "boost/range/begin.hpp": "vendor/boost/include/boost/range/begin.hpp", @@ -3852,7 +3332,6 @@ "boost/range/detail/as_literal.hpp": "vendor/boost/include/boost/range/detail/as_literal.hpp", "boost/range/detail/begin.hpp": "vendor/boost/include/boost/range/detail/begin.hpp", "boost/range/detail/common.hpp": "vendor/boost/include/boost/range/detail/common.hpp", - "boost/range/detail/default_constructible_unary_fn.hpp": "vendor/boost/include/boost/range/detail/default_constructible_unary_fn.hpp", "boost/range/detail/detail_str.hpp": "vendor/boost/include/boost/range/detail/detail_str.hpp", "boost/range/detail/end.hpp": "vendor/boost/include/boost/range/detail/end.hpp", "boost/range/detail/extract_optional_type.hpp": "vendor/boost/include/boost/range/detail/extract_optional_type.hpp", @@ -3893,79 +3372,12 @@ "boost/range/value_type.hpp": "vendor/boost/include/boost/range/value_type.hpp", "boost/rational.hpp": "vendor/boost/include/boost/rational.hpp", "boost/ref.hpp": "vendor/boost/include/boost/ref.hpp", - "boost/regex.hpp": "vendor/boost/include/boost/regex.hpp", - "boost/regex/config.hpp": "vendor/boost/include/boost/regex/config.hpp", - "boost/regex/config/borland.hpp": "vendor/boost/include/boost/regex/config/borland.hpp", - "boost/regex/config/cwchar.hpp": "vendor/boost/include/boost/regex/config/cwchar.hpp", - "boost/regex/pattern_except.hpp": "vendor/boost/include/boost/regex/pattern_except.hpp", - "boost/regex/pending/object_cache.hpp": "vendor/boost/include/boost/regex/pending/object_cache.hpp", - "boost/regex/pending/static_mutex.hpp": "vendor/boost/include/boost/regex/pending/static_mutex.hpp", "boost/regex/pending/unicode_iterator.hpp": "vendor/boost/include/boost/regex/pending/unicode_iterator.hpp", - "boost/regex/regex_traits.hpp": "vendor/boost/include/boost/regex/regex_traits.hpp", - "boost/regex/user.hpp": "vendor/boost/include/boost/regex/user.hpp", - "boost/regex/v4/basic_regex.hpp": "vendor/boost/include/boost/regex/v4/basic_regex.hpp", - "boost/regex/v4/basic_regex_creator.hpp": "vendor/boost/include/boost/regex/v4/basic_regex_creator.hpp", - "boost/regex/v4/basic_regex_parser.hpp": "vendor/boost/include/boost/regex/v4/basic_regex_parser.hpp", - "boost/regex/v4/c_regex_traits.hpp": "vendor/boost/include/boost/regex/v4/c_regex_traits.hpp", - "boost/regex/v4/char_regex_traits.hpp": "vendor/boost/include/boost/regex/v4/char_regex_traits.hpp", - "boost/regex/v4/cpp_regex_traits.hpp": "vendor/boost/include/boost/regex/v4/cpp_regex_traits.hpp", - "boost/regex/v4/error_type.hpp": "vendor/boost/include/boost/regex/v4/error_type.hpp", - "boost/regex/v4/instances.hpp": "vendor/boost/include/boost/regex/v4/instances.hpp", - "boost/regex/v4/iterator_category.hpp": "vendor/boost/include/boost/regex/v4/iterator_category.hpp", - "boost/regex/v4/iterator_traits.hpp": "vendor/boost/include/boost/regex/v4/iterator_traits.hpp", - "boost/regex/v4/match_flags.hpp": "vendor/boost/include/boost/regex/v4/match_flags.hpp", - "boost/regex/v4/match_results.hpp": "vendor/boost/include/boost/regex/v4/match_results.hpp", - "boost/regex/v4/perl_matcher.hpp": "vendor/boost/include/boost/regex/v4/perl_matcher.hpp", - "boost/regex/v4/perl_matcher_common.hpp": "vendor/boost/include/boost/regex/v4/perl_matcher_common.hpp", - "boost/regex/v4/perl_matcher_non_recursive.hpp": "vendor/boost/include/boost/regex/v4/perl_matcher_non_recursive.hpp", - "boost/regex/v4/perl_matcher_recursive.hpp": "vendor/boost/include/boost/regex/v4/perl_matcher_recursive.hpp", - "boost/regex/v4/primary_transform.hpp": "vendor/boost/include/boost/regex/v4/primary_transform.hpp", - "boost/regex/v4/protected_call.hpp": "vendor/boost/include/boost/regex/v4/protected_call.hpp", - "boost/regex/v4/regbase.hpp": "vendor/boost/include/boost/regex/v4/regbase.hpp", - "boost/regex/v4/regex.hpp": "vendor/boost/include/boost/regex/v4/regex.hpp", - "boost/regex/v4/regex_format.hpp": "vendor/boost/include/boost/regex/v4/regex_format.hpp", - "boost/regex/v4/regex_fwd.hpp": "vendor/boost/include/boost/regex/v4/regex_fwd.hpp", - "boost/regex/v4/regex_grep.hpp": "vendor/boost/include/boost/regex/v4/regex_grep.hpp", - "boost/regex/v4/regex_iterator.hpp": "vendor/boost/include/boost/regex/v4/regex_iterator.hpp", - "boost/regex/v4/regex_match.hpp": "vendor/boost/include/boost/regex/v4/regex_match.hpp", - "boost/regex/v4/regex_merge.hpp": "vendor/boost/include/boost/regex/v4/regex_merge.hpp", - "boost/regex/v4/regex_raw_buffer.hpp": "vendor/boost/include/boost/regex/v4/regex_raw_buffer.hpp", - "boost/regex/v4/regex_replace.hpp": "vendor/boost/include/boost/regex/v4/regex_replace.hpp", - "boost/regex/v4/regex_search.hpp": "vendor/boost/include/boost/regex/v4/regex_search.hpp", - "boost/regex/v4/regex_split.hpp": "vendor/boost/include/boost/regex/v4/regex_split.hpp", - "boost/regex/v4/regex_token_iterator.hpp": "vendor/boost/include/boost/regex/v4/regex_token_iterator.hpp", - "boost/regex/v4/regex_traits.hpp": "vendor/boost/include/boost/regex/v4/regex_traits.hpp", - "boost/regex/v4/regex_traits_defaults.hpp": "vendor/boost/include/boost/regex/v4/regex_traits_defaults.hpp", - "boost/regex/v4/regex_workaround.hpp": "vendor/boost/include/boost/regex/v4/regex_workaround.hpp", - "boost/regex/v4/states.hpp": "vendor/boost/include/boost/regex/v4/states.hpp", - "boost/regex/v4/sub_match.hpp": "vendor/boost/include/boost/regex/v4/sub_match.hpp", - "boost/regex/v4/syntax_type.hpp": "vendor/boost/include/boost/regex/v4/syntax_type.hpp", - "boost/regex/v4/w32_regex_traits.hpp": "vendor/boost/include/boost/regex/v4/w32_regex_traits.hpp", - "boost/regex_fwd.hpp": "vendor/boost/include/boost/regex_fwd.hpp", - "boost/scoped_array.hpp": "vendor/boost/include/boost/scoped_array.hpp", "boost/scoped_ptr.hpp": "vendor/boost/include/boost/scoped_ptr.hpp", "boost/serialization/access.hpp": "vendor/boost/include/boost/serialization/access.hpp", - "boost/serialization/base_object.hpp": "vendor/boost/include/boost/serialization/base_object.hpp", - "boost/serialization/collection_size_type.hpp": "vendor/boost/include/boost/serialization/collection_size_type.hpp", - "boost/serialization/force_include.hpp": "vendor/boost/include/boost/serialization/force_include.hpp", - "boost/serialization/is_bitwise_serializable.hpp": "vendor/boost/include/boost/serialization/is_bitwise_serializable.hpp", - "boost/serialization/level.hpp": "vendor/boost/include/boost/serialization/level.hpp", - "boost/serialization/level_enum.hpp": "vendor/boost/include/boost/serialization/level_enum.hpp", - "boost/serialization/nvp.hpp": "vendor/boost/include/boost/serialization/nvp.hpp", - "boost/serialization/serialization.hpp": "vendor/boost/include/boost/serialization/serialization.hpp", - "boost/serialization/split_free.hpp": "vendor/boost/include/boost/serialization/split_free.hpp", "boost/serialization/split_member.hpp": "vendor/boost/include/boost/serialization/split_member.hpp", - "boost/serialization/strong_typedef.hpp": "vendor/boost/include/boost/serialization/strong_typedef.hpp", - "boost/serialization/tracking.hpp": "vendor/boost/include/boost/serialization/tracking.hpp", - "boost/serialization/tracking_enum.hpp": "vendor/boost/include/boost/serialization/tracking_enum.hpp", - "boost/serialization/traits.hpp": "vendor/boost/include/boost/serialization/traits.hpp", - "boost/serialization/type_info_implementation.hpp": "vendor/boost/include/boost/serialization/type_info_implementation.hpp", "boost/serialization/version.hpp": "vendor/boost/include/boost/serialization/version.hpp", - "boost/serialization/void_cast_fwd.hpp": "vendor/boost/include/boost/serialization/void_cast_fwd.hpp", - "boost/serialization/wrapper.hpp": "vendor/boost/include/boost/serialization/wrapper.hpp", - "boost/shared_array.hpp": "vendor/boost/include/boost/shared_array.hpp", "boost/shared_ptr.hpp": "vendor/boost/include/boost/shared_ptr.hpp", - "boost/smart_ptr/allocate_shared_array.hpp": "vendor/boost/include/boost/smart_ptr/allocate_shared_array.hpp", "boost/smart_ptr/bad_weak_ptr.hpp": "vendor/boost/include/boost/smart_ptr/bad_weak_ptr.hpp", "boost/smart_ptr/detail/atomic_count.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count.hpp", "boost/smart_ptr/detail/atomic_count_gcc.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_gcc.hpp", @@ -4006,7 +3418,6 @@ "boost/smart_ptr/detail/sp_counted_base_w32.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp", "boost/smart_ptr/detail/sp_counted_impl.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_impl.hpp", "boost/smart_ptr/detail/sp_disable_deprecated.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp", - "boost/smart_ptr/detail/sp_forward.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_forward.hpp", "boost/smart_ptr/detail/sp_has_sync.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_has_sync.hpp", "boost/smart_ptr/detail/sp_interlocked.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_interlocked.hpp", "boost/smart_ptr/detail/sp_noexcept.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_noexcept.hpp", @@ -4020,12 +3431,7 @@ "boost/smart_ptr/detail/spinlock_sync.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_sync.hpp", "boost/smart_ptr/detail/spinlock_w32.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_w32.hpp", "boost/smart_ptr/detail/yield_k.hpp": "vendor/boost/include/boost/smart_ptr/detail/yield_k.hpp", - "boost/smart_ptr/make_shared.hpp": "vendor/boost/include/boost/smart_ptr/make_shared.hpp", - "boost/smart_ptr/make_shared_array.hpp": "vendor/boost/include/boost/smart_ptr/make_shared_array.hpp", - "boost/smart_ptr/make_shared_object.hpp": "vendor/boost/include/boost/smart_ptr/make_shared_object.hpp", - "boost/smart_ptr/scoped_array.hpp": "vendor/boost/include/boost/smart_ptr/scoped_array.hpp", "boost/smart_ptr/scoped_ptr.hpp": "vendor/boost/include/boost/smart_ptr/scoped_ptr.hpp", - "boost/smart_ptr/shared_array.hpp": "vendor/boost/include/boost/smart_ptr/shared_array.hpp", "boost/smart_ptr/shared_ptr.hpp": "vendor/boost/include/boost/smart_ptr/shared_ptr.hpp", "boost/spirit/home/qi.hpp": "vendor/boost/include/boost/spirit/home/qi.hpp", "boost/spirit/home/qi/action.hpp": "vendor/boost/include/boost/spirit/home/qi/action.hpp", @@ -4133,7 +3539,9 @@ "boost/spirit/home/support/action_dispatch.hpp": "vendor/boost/include/boost/spirit/home/support/action_dispatch.hpp", "boost/spirit/home/support/algorithm/any_if.hpp": "vendor/boost/include/boost/spirit/home/support/algorithm/any_if.hpp", "boost/spirit/home/support/algorithm/any_if_ns.hpp": "vendor/boost/include/boost/spirit/home/support/algorithm/any_if_ns.hpp", + "boost/spirit/home/support/algorithm/any_if_ns_so.hpp": "vendor/boost/include/boost/spirit/home/support/algorithm/any_if_ns_so.hpp", "boost/spirit/home/support/algorithm/any_ns.hpp": "vendor/boost/include/boost/spirit/home/support/algorithm/any_ns.hpp", + "boost/spirit/home/support/algorithm/any_ns_so.hpp": "vendor/boost/include/boost/spirit/home/support/algorithm/any_ns_so.hpp", "boost/spirit/home/support/argument.hpp": "vendor/boost/include/boost/spirit/home/support/argument.hpp", "boost/spirit/home/support/assert_msg.hpp": "vendor/boost/include/boost/spirit/home/support/assert_msg.hpp", "boost/spirit/home/support/attributes.hpp": "vendor/boost/include/boost/spirit/home/support/attributes.hpp", @@ -4168,9 +3576,6 @@ "boost/spirit/home/support/detail/is_spirit_tag.hpp": "vendor/boost/include/boost/spirit/home/support/detail/is_spirit_tag.hpp", "boost/spirit/home/support/detail/make_cons.hpp": "vendor/boost/include/boost/spirit/home/support/detail/make_cons.hpp", "boost/spirit/home/support/detail/make_vector.hpp": "vendor/boost/include/boost/spirit/home/support/detail/make_vector.hpp", - "boost/spirit/home/support/detail/math/detail/fp_traits.hpp": "vendor/boost/include/boost/spirit/home/support/detail/math/detail/fp_traits.hpp", - "boost/spirit/home/support/detail/math/fpclassify.hpp": "vendor/boost/include/boost/spirit/home/support/detail/math/fpclassify.hpp", - "boost/spirit/home/support/detail/math/signbit.hpp": "vendor/boost/include/boost/spirit/home/support/detail/math/signbit.hpp", "boost/spirit/home/support/detail/pow10.hpp": "vendor/boost/include/boost/spirit/home/support/detail/pow10.hpp", "boost/spirit/home/support/detail/scoped_enum_emulation.hpp": "vendor/boost/include/boost/spirit/home/support/detail/scoped_enum_emulation.hpp", "boost/spirit/home/support/detail/sign.hpp": "vendor/boost/include/boost/spirit/home/support/detail/sign.hpp", @@ -4212,11 +3617,6 @@ "boost/spirit/include/qi.hpp": "vendor/boost/include/boost/spirit/include/qi.hpp", "boost/static_assert.hpp": "vendor/boost/include/boost/static_assert.hpp", "boost/swap.hpp": "vendor/boost/include/boost/swap.hpp", - "boost/system/api_config.hpp": "vendor/boost/include/boost/system/api_config.hpp", - "boost/system/config.hpp": "vendor/boost/include/boost/system/config.hpp", - "boost/system/detail/local_free_on_destruction.hpp": "vendor/boost/include/boost/system/detail/local_free_on_destruction.hpp", - "boost/system/error_code.hpp": "vendor/boost/include/boost/system/error_code.hpp", - "boost/system/system_error.hpp": "vendor/boost/include/boost/system/system_error.hpp", "boost/throw_exception.hpp": "vendor/boost/include/boost/throw_exception.hpp", "boost/token_functions.hpp": "vendor/boost/include/boost/token_functions.hpp", "boost/token_iterator.hpp": "vendor/boost/include/boost/token_iterator.hpp", @@ -4240,7 +3640,6 @@ "boost/type_traits/add_volatile.hpp": "vendor/boost/include/boost/type_traits/add_volatile.hpp", "boost/type_traits/aligned_storage.hpp": "vendor/boost/include/boost/type_traits/aligned_storage.hpp", "boost/type_traits/alignment_of.hpp": "vendor/boost/include/boost/type_traits/alignment_of.hpp", - "boost/type_traits/alignment_traits.hpp": "vendor/boost/include/boost/type_traits/alignment_traits.hpp", "boost/type_traits/common_type.hpp": "vendor/boost/include/boost/type_traits/common_type.hpp", "boost/type_traits/composite_traits.hpp": "vendor/boost/include/boost/type_traits/composite_traits.hpp", "boost/type_traits/conditional.hpp": "vendor/boost/include/boost/type_traits/conditional.hpp", @@ -4256,12 +3655,20 @@ "boost/type_traits/detail/composite_pointer_type.hpp": "vendor/boost/include/boost/type_traits/detail/composite_pointer_type.hpp", "boost/type_traits/detail/config.hpp": "vendor/boost/include/boost/type_traits/detail/config.hpp", "boost/type_traits/detail/has_binary_operator.hpp": "vendor/boost/include/boost/type_traits/detail/has_binary_operator.hpp", + "boost/type_traits/detail/is_function_cxx_03.hpp": "vendor/boost/include/boost/type_traits/detail/is_function_cxx_03.hpp", + "boost/type_traits/detail/is_function_cxx_11.hpp": "vendor/boost/include/boost/type_traits/detail/is_function_cxx_11.hpp", + "boost/type_traits/detail/is_function_msvc10_fix.hpp": "vendor/boost/include/boost/type_traits/detail/is_function_msvc10_fix.hpp", "boost/type_traits/detail/is_function_ptr_helper.hpp": "vendor/boost/include/boost/type_traits/detail/is_function_ptr_helper.hpp", "boost/type_traits/detail/is_function_ptr_tester.hpp": "vendor/boost/include/boost/type_traits/detail/is_function_ptr_tester.hpp", + "boost/type_traits/detail/is_likely_lambda.hpp": "vendor/boost/include/boost/type_traits/detail/is_likely_lambda.hpp", "boost/type_traits/detail/is_mem_fun_pointer_impl.hpp": "vendor/boost/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp", "boost/type_traits/detail/is_mem_fun_pointer_tester.hpp": "vendor/boost/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp", + "boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp": "vendor/boost/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp", + "boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp": "vendor/boost/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp", + "boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp": "vendor/boost/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp", "boost/type_traits/detail/mp_defer.hpp": "vendor/boost/include/boost/type_traits/detail/mp_defer.hpp", "boost/type_traits/detail/yes_no_type.hpp": "vendor/boost/include/boost/type_traits/detail/yes_no_type.hpp", + "boost/type_traits/enable_if.hpp": "vendor/boost/include/boost/type_traits/enable_if.hpp", "boost/type_traits/function_traits.hpp": "vendor/boost/include/boost/type_traits/function_traits.hpp", "boost/type_traits/has_left_shift.hpp": "vendor/boost/include/boost/type_traits/has_left_shift.hpp", "boost/type_traits/has_minus.hpp": "vendor/boost/include/boost/type_traits/has_minus.hpp", @@ -4287,7 +3694,8 @@ "boost/type_traits/is_base_and_derived.hpp": "vendor/boost/include/boost/type_traits/is_base_and_derived.hpp", "boost/type_traits/is_base_of.hpp": "vendor/boost/include/boost/type_traits/is_base_of.hpp", "boost/type_traits/is_class.hpp": "vendor/boost/include/boost/type_traits/is_class.hpp", - "boost/type_traits/is_compound.hpp": "vendor/boost/include/boost/type_traits/is_compound.hpp", + "boost/type_traits/is_complete.hpp": "vendor/boost/include/boost/type_traits/is_complete.hpp", + "boost/type_traits/is_complex.hpp": "vendor/boost/include/boost/type_traits/is_complex.hpp", "boost/type_traits/is_const.hpp": "vendor/boost/include/boost/type_traits/is_const.hpp", "boost/type_traits/is_constructible.hpp": "vendor/boost/include/boost/type_traits/is_constructible.hpp", "boost/type_traits/is_convertible.hpp": "vendor/boost/include/boost/type_traits/is_convertible.hpp", @@ -4296,7 +3704,6 @@ "boost/type_traits/is_destructible.hpp": "vendor/boost/include/boost/type_traits/is_destructible.hpp", "boost/type_traits/is_empty.hpp": "vendor/boost/include/boost/type_traits/is_empty.hpp", "boost/type_traits/is_enum.hpp": "vendor/boost/include/boost/type_traits/is_enum.hpp", - "boost/type_traits/is_final.hpp": "vendor/boost/include/boost/type_traits/is_final.hpp", "boost/type_traits/is_float.hpp": "vendor/boost/include/boost/type_traits/is_float.hpp", "boost/type_traits/is_floating_point.hpp": "vendor/boost/include/boost/type_traits/is_floating_point.hpp", "boost/type_traits/is_function.hpp": "vendor/boost/include/boost/type_traits/is_function.hpp", @@ -4306,9 +3713,9 @@ "boost/type_traits/is_member_function_pointer.hpp": "vendor/boost/include/boost/type_traits/is_member_function_pointer.hpp", "boost/type_traits/is_member_object_pointer.hpp": "vendor/boost/include/boost/type_traits/is_member_object_pointer.hpp", "boost/type_traits/is_member_pointer.hpp": "vendor/boost/include/boost/type_traits/is_member_pointer.hpp", + "boost/type_traits/is_noncopyable.hpp": "vendor/boost/include/boost/type_traits/is_noncopyable.hpp", "boost/type_traits/is_nothrow_move_assignable.hpp": "vendor/boost/include/boost/type_traits/is_nothrow_move_assignable.hpp", "boost/type_traits/is_nothrow_move_constructible.hpp": "vendor/boost/include/boost/type_traits/is_nothrow_move_constructible.hpp", - "boost/type_traits/is_object.hpp": "vendor/boost/include/boost/type_traits/is_object.hpp", "boost/type_traits/is_pod.hpp": "vendor/boost/include/boost/type_traits/is_pod.hpp", "boost/type_traits/is_pointer.hpp": "vendor/boost/include/boost/type_traits/is_pointer.hpp", "boost/type_traits/is_polymorphic.hpp": "vendor/boost/include/boost/type_traits/is_polymorphic.hpp", @@ -4324,19 +3731,20 @@ "boost/type_traits/is_volatile.hpp": "vendor/boost/include/boost/type_traits/is_volatile.hpp", "boost/type_traits/make_signed.hpp": "vendor/boost/include/boost/type_traits/make_signed.hpp", "boost/type_traits/make_unsigned.hpp": "vendor/boost/include/boost/type_traits/make_unsigned.hpp", - "boost/type_traits/object_traits.hpp": "vendor/boost/include/boost/type_traits/object_traits.hpp", + "boost/type_traits/make_void.hpp": "vendor/boost/include/boost/type_traits/make_void.hpp", "boost/type_traits/remove_all_extents.hpp": "vendor/boost/include/boost/type_traits/remove_all_extents.hpp", "boost/type_traits/remove_bounds.hpp": "vendor/boost/include/boost/type_traits/remove_bounds.hpp", "boost/type_traits/remove_const.hpp": "vendor/boost/include/boost/type_traits/remove_const.hpp", "boost/type_traits/remove_cv.hpp": "vendor/boost/include/boost/type_traits/remove_cv.hpp", + "boost/type_traits/remove_cv_ref.hpp": "vendor/boost/include/boost/type_traits/remove_cv_ref.hpp", "boost/type_traits/remove_extent.hpp": "vendor/boost/include/boost/type_traits/remove_extent.hpp", "boost/type_traits/remove_pointer.hpp": "vendor/boost/include/boost/type_traits/remove_pointer.hpp", "boost/type_traits/remove_reference.hpp": "vendor/boost/include/boost/type_traits/remove_reference.hpp", "boost/type_traits/remove_volatile.hpp": "vendor/boost/include/boost/type_traits/remove_volatile.hpp", "boost/type_traits/same_traits.hpp": "vendor/boost/include/boost/type_traits/same_traits.hpp", - "boost/type_traits/transform_traits.hpp": "vendor/boost/include/boost/type_traits/transform_traits.hpp", "boost/type_traits/type_identity.hpp": "vendor/boost/include/boost/type_traits/type_identity.hpp", "boost/type_traits/type_with_alignment.hpp": "vendor/boost/include/boost/type_traits/type_with_alignment.hpp", + "boost/typeof/constant.hpp": "vendor/boost/include/boost/typeof/constant.hpp", "boost/typeof/decltype.hpp": "vendor/boost/include/boost/typeof/decltype.hpp", "boost/typeof/dmc/typeof_impl.hpp": "vendor/boost/include/boost/typeof/dmc/typeof_impl.hpp", "boost/typeof/encode_decode.hpp": "vendor/boost/include/boost/typeof/encode_decode.hpp", -- cgit v1.2.1