summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2020-02-07 17:52:51 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2020-02-07 20:12:44 +0200
commit47f2b20435cc524e2e300ad4881e198079c536bf (patch)
treea4236cad25ffca9936fa0c832dcc5003d79fabad
parentf7fef70e9ddb9f52b071703d3ff0683b921606ac (diff)
downloadqtlocation-mapboxgl-47f2b20435cc524e2e300ad4881e198079c536bf.tar.gz
[build] Remove unused files
Buck build is no longer needed, neither is the previous CMake buildsystem.
-rw-r--r--Makefile489
-rw-r--r--benchmark/benchmark-files.json23
-rw-r--r--circle.yml1
-rw-r--r--cmake/benchmark.cmake30
-rw-r--r--cmake/core.cmake46
-rw-r--r--cmake/doxygen.cmake18
-rw-r--r--cmake/empty.cpp0
-rw-r--r--cmake/executable.xcscheme102
-rw-r--r--cmake/expression-test.cmake29
-rw-r--r--cmake/filesource.cmake24
-rw-r--r--cmake/glfw.cmake51
-rw-r--r--cmake/library.xcscheme80
-rw-r--r--cmake/loop-darwin.cmake20
-rw-r--r--cmake/loop-uv.cmake14
-rw-r--r--cmake/mason-dependencies.cmake25
-rw-r--r--cmake/mason.cmake227
-rw-r--r--cmake/mbgl.cmake236
-rw-r--r--cmake/node.cmake145
-rw-r--r--cmake/node.xcscheme102
-rw-r--r--cmake/offline.cmake35
-rw-r--r--cmake/render-test.cmake64
-rw-r--r--cmake/render.cmake39
-rw-r--r--cmake/sqlite.cmake47
-rw-r--r--cmake/test.cmake51
-rw-r--r--cmake/vendor.cmake28
-rw-r--r--cmake/xcode.cmake75
-rw-r--r--platform/darwin/filesource-files.json11
-rw-r--r--platform/darwin/loop-files.json10
-rw-r--r--platform/default/filesource-files.json35
-rw-r--r--platform/ios/config.cmake53
-rw-r--r--platform/ios/core-files.json38
-rw-r--r--platform/ios/sdk-files.json318
-rw-r--r--platform/ios/toolchain.cmake129
-rw-r--r--platform/linux/config.cmake188
-rw-r--r--platform/linux/filesource-files.json9
-rw-r--r--platform/macos/config.cmake132
-rw-r--r--platform/macos/core-files.json37
-rw-r--r--platform/macos/sdk-files.json217
-rwxr-xr-xscripts/generate-file-lists.js157
-rw-r--r--scripts/standalone.cmake18
-rw-r--r--src/core-files.json815
-rw-r--r--test/test-files.json135
-rw-r--r--vendor/boost-files.json3828
-rw-r--r--vendor/cheap-ruler-cpp-files.json8
-rw-r--r--vendor/earcut.hpp-files.json8
-rw-r--r--vendor/eternal-files.json8
-rw-r--r--vendor/geojson-vt-cpp-files.json14
-rw-r--r--vendor/icu-files.json78
-rw-r--r--vendor/mapbox-base-files.json108
-rw-r--r--vendor/polylabel-files.json8
-rw-r--r--vendor/protozero-files.json18
-rw-r--r--vendor/shelf-pack-cpp-files.json8
-rw-r--r--vendor/sqlite-files.json10
-rw-r--r--vendor/unique_resource-files.json8
-rw-r--r--vendor/vector-tile-files.json10
-rw-r--r--vendor/wagyu-files.json31
56 files changed, 0 insertions, 8448 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index cc34f003b1..0000000000
--- a/Makefile
+++ /dev/null
@@ -1,489 +0,0 @@
-export BUILDTYPE ?= Debug
-export IS_LOCAL_DEVELOPMENT ?= true
-export TARGET_BRANCH ?= master
-
-CMAKE ?= cmake
-
-
-ifeq ($(BUILDTYPE), Release)
-else ifeq ($(BUILDTYPE), RelWithDebInfo)
-else ifeq ($(BUILDTYPE), Sanitize)
-else ifeq ($(BUILDTYPE), Debug)
-else
- $(error BUILDTYPE must be Debug, Sanitize, Release or RelWithDebInfo)
-endif
-
-buildtype := $(shell echo "$(BUILDTYPE)" | tr "[A-Z]" "[a-z]")
-
-ifeq ($(shell uname -s), Darwin)
- HOST_PLATFORM = macos
- HOST_PLATFORM_VERSION = $(shell uname -m)
- export NINJA = platform/macos/ninja
- export JOBS ?= $(shell sysctl -n hw.ncpu)
-else ifeq ($(shell uname -s), Linux)
- HOST_PLATFORM = linux
- HOST_PLATFORM_VERSION = $(shell uname -m)
- export NINJA = platform/linux/ninja
- export JOBS ?= $(shell grep --count processor /proc/cpuinfo)
-else
- $(error Cannot determine host platform)
-endif
-
-ifeq ($(MASON_PLATFORM),)
- BUILD_PLATFORM = $(HOST_PLATFORM)
-else
- BUILD_PLATFORM = $(MASON_PLATFORM)
-endif
-
-ifeq ($(MASON_PLATFORM_VERSION),)
- BUILD_PLATFORM_VERSION = $(HOST_PLATFORM_VERSION)
-else
- BUILD_PLATFORM_VERSION = $(MASON_PLATFORM_VERSION)
-endif
-
-ifeq ($(MASON_PLATFORM),macos)
- MASON_PLATFORM=osx
-endif
-
-ifeq ($(V), 1)
- export XCPRETTY
- NINJA_ARGS ?= -v
-else
- export XCPRETTY ?= | tee '$(shell pwd)/build/xcodebuild-$(shell date +"%Y-%m-%d_%H%M%S").log' | xcpretty
- NINJA_ARGS ?=
-endif
-
-.PHONY: default
-default: test
-
-BUILD_DEPS += Makefile
-BUILD_DEPS += CMakeLists.txt
-
-BUILD_DOCS ?= true
-
-#### macOS targets ##############################################################
-
-ifeq ($(HOST_PLATFORM), macos)
-
-export PATH := $(shell pwd)/platform/macos:$(PATH)
-
-MACOS_OUTPUT_PATH = build/macos
-MACOS_PROJ_PATH = $(MACOS_OUTPUT_PATH)/mbgl.xcodeproj
-MACOS_WORK_PATH = platform/macos/macos.xcworkspace
-MACOS_USER_DATA_PATH = $(MACOS_WORK_PATH)/xcuserdata/$(USER).xcuserdatad
-MACOS_COMPDB_PATH = $(MACOS_OUTPUT_PATH)/compdb/$(BUILDTYPE)
-
-MACOS_XCODEBUILD = xcodebuild \
- -derivedDataPath $(MACOS_OUTPUT_PATH) \
- -configuration $(BUILDTYPE) \
- -workspace $(MACOS_WORK_PATH) \
- -jobs $(JOBS)
-
-ifneq ($(CI),)
- MACOS_XCODEBUILD += -xcconfig platform/darwin/ci.xcconfig
-endif
-
-$(MACOS_PROJ_PATH): $(BUILD_DEPS) $(MACOS_USER_DATA_PATH)/WorkspaceSettings.xcsettings
- mkdir -p $(MACOS_OUTPUT_PATH)
- (cd $(MACOS_OUTPUT_PATH) && $(CMAKE) -G Xcode ../.. \
- -DWITH_EGL=${WITH_EGL})
-
-$(MACOS_USER_DATA_PATH)/WorkspaceSettings.xcsettings: platform/macos/WorkspaceSettings.xcsettings
- mkdir -p "$(MACOS_USER_DATA_PATH)"
- cp platform/macos/WorkspaceSettings.xcsettings "$@"
-
-.PHONY: macos
-macos: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'CI' build $(XCPRETTY)
-
-.PHONY: xproj
-xproj: $(MACOS_PROJ_PATH)
- xed $(MACOS_WORK_PATH)
-
-.PHONY: test
-test: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-test' build $(XCPRETTY)
-
-.PHONY: benchmark
-benchmark: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-benchmark' build $(XCPRETTY)
-
-.PHONY: run-test
-run-test: run-test-*
-
-run-test-%: test
- ulimit -c unlimited && ($(MACOS_OUTPUT_PATH)/$(BUILDTYPE)/mbgl-test --gtest_catch_exceptions=0 --gtest_filter=$* & pid=$$! && wait $$pid \
- || (lldb -c /cores/core.$$pid --batch --one-line 'thread backtrace all' --one-line 'quit' && exit 1))
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'CI' test $(XCPRETTY)
-
-.PHONY: run-benchmark
-run-benchmark: run-benchmark-.
-
-run-benchmark-%: benchmark
- $(MACOS_OUTPUT_PATH)/$(BUILDTYPE)/mbgl-benchmark --benchmark_filter=$* ${BENCHMARK_ARGS}
-
-.PHONY: node-benchmark
-node-benchmark: node
-
-.PHONY: run-node-benchmark
-run-node-benchmark: node-benchmark
- node platform/node/test/benchmark.js
-
-.PHONY: glfw-app
-glfw-app: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-glfw' build $(XCPRETTY)
-
-.PHONY: run-glfw-app
-run-glfw-app: glfw-app
- "$(MACOS_OUTPUT_PATH)/$(BUILDTYPE)/mbgl-glfw"
-
-.PHONY: render
-render: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-render' build $(XCPRETTY)
-
-.PHONY: offline
-offline: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-offline' build $(XCPRETTY)
-
-.PHONY: node
-node: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-node (Active ABI)' build $(XCPRETTY)
-
-.PHONY: node-all
-node-all: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'mbgl-node (All ABIs)' build $(XCPRETTY)
-
-.PHONY: macos-test
-macos-test: $(MACOS_PROJ_PATH)
- set -o pipefail && $(MACOS_XCODEBUILD) -scheme 'CI' test $(XCPRETTY)
-
-.PHONY: macos-lint
-macos-lint:
- find platform/macos -type f -name '*.plist' | xargs plutil -lint
-
-.PHONY: xpackage
-xpackage: $(MACOS_PROJ_PATH)
- SYMBOLS=$(SYMBOLS) ./platform/macos/scripts/package.sh
-
-.PHONY: xdeploy
-xdeploy:
- caffeinate -i ./platform/macos/scripts/deploy-packages.sh
-
-.PHONY: xdocument
-#xdocument:
-# OUTPUT=$(OUTPUT) ./platform/macos/scripts/document.sh
-
-.PHONY: genstrings
-genstrings:
- genstrings -u -o platform/macos/sdk/Base.lproj platform/darwin/src/*.{m,mm}
- genstrings -u -o platform/macos/sdk/Base.lproj platform/macos/src/*.{m,mm}
- genstrings -u -o platform/ios/resources/Base.lproj platform/ios/src/*.{m,mm}
- -find platform/ios/resources platform/macos/sdk -path '*/Base.lproj/*.strings' -exec \
- textutil -convert txt -extension strings -inputencoding UTF-16 -encoding UTF-8 {} \;
- mv platform/macos/sdk/Base.lproj/Foundation.strings platform/darwin/resources/Base.lproj/
-
-$(MACOS_COMPDB_PATH)/Makefile:
- mkdir -p $(MACOS_COMPDB_PATH)
- (cd $(MACOS_COMPDB_PATH) && $(CMAKE) ../../../.. \
- -DCMAKE_BUILD_TYPE=$(BUILDTYPE) \
- -DWITH_EGL=${WITH_EGL})
-
-.PHONY:
-compdb: $(BUILD_DEPS) $(TEST_DEPS) $(MACOS_COMPDB_PATH)/Makefile
- @$(MAKE) -C $(MACOS_COMPDB_PATH) cmake_check_build_system
-
-.PHONY: tidy
-tidy: compdb
- scripts/clang-tools.sh $(MACOS_COMPDB_PATH) $(TARGET_BRANCH)
-
-.PHONY: check
-check: compdb
- scripts/clang-tools.sh $(MACOS_COMPDB_PATH) $(TARGET_BRANCH) --diff
-endif
-
-#### iOS targets ##############################################################
-
-ifeq ($(HOST_PLATFORM), macos)
-
-IOS_OUTPUT_PATH = build/ios
-IOS_PROJ_PATH = $(IOS_OUTPUT_PATH)/mbgl.xcodeproj
-IOS_WORK_PATH = platform/ios/ios.xcworkspace
-IOS_USER_DATA_PATH = $(IOS_WORK_PATH)/xcuserdata/$(USER).xcuserdatad
-
-IOS_XCODEBUILD_SIM = xcodebuild \
- ARCHS=x86_64 ONLY_ACTIVE_ARCH=YES \
- -derivedDataPath $(IOS_OUTPUT_PATH) \
- -configuration $(BUILDTYPE) -sdk iphonesimulator \
- -workspace $(IOS_WORK_PATH) \
- -jobs $(JOBS)
-
-ifneq ($(MORE_SIMULATORS),)
- IOS_LATEST = true
- IOS_11 = true
- IOS_10 = true
- IOS_9 = true
-endif
-
-ifdef IOS_LATEST
- IOS_XCODEBUILD_SIM += \
- -destination 'platform=iOS Simulator,OS=latest,name=iPhone 8' \
- -destination 'platform=iOS Simulator,OS=latest,name=iPhone Xs Max' \
- -destination 'platform=iOS Simulator,OS=latest,name=iPhone Xr' \
- -destination 'platform=iOS Simulator,OS=latest,name=iPad Pro (11-inch)'
-endif
-
-ifdef IOS_11
- IOS_XCODEBUILD_SIM += \
- -destination 'platform=iOS Simulator,OS=11.4,name=iPhone 7' \
- -destination 'platform=iOS Simulator,OS=11.4,name=iPhone X' \
- -destination 'platform=iOS Simulator,OS=11.4,name=iPad (5th generation)'
-endif
-
-ifdef IOS_10
- IOS_XCODEBUILD_SIM += \
- -destination 'platform=iOS Simulator,OS=10.3.1,name=iPhone SE' \
- -destination 'platform=iOS Simulator,OS=10.3.1,name=iPhone 7 Plus' \
- -destination 'platform=iOS Simulator,OS=10.3.1,name=iPad Pro (9.7-inch)'
-endif
-
-ifdef IOS_9
- IOS_XCODEBUILD_SIM += \
- -destination 'platform=iOS Simulator,OS=9.3,name=iPhone 6s Plus' \
- -destination 'platform=iOS Simulator,OS=9.3,name=iPhone 6s' \
- -destination 'platform=iOS Simulator,OS=9.3,name=iPad Air 2'
-endif
-
-# If IOS_XCODEBUILD_SIM does not contain a simulator destination, add the default.
-ifeq (, $(findstring destination, $(IOS_XCODEBUILD_SIM)))
- IOS_XCODEBUILD_SIM += \
- -destination 'platform=iOS Simulator,OS=latest,name=iPhone 8'
-else
- IOS_XCODEBUILD_SIM += -parallel-testing-enabled YES
-endif
-
-ifneq ($(ONLY_TESTING),)
- IOS_XCODEBUILD_SIM += -only-testing:$(ONLY_TESTING)
-endif
-
-ifneq ($(SKIP_TESTING),)
- IOS_XCODEBUILD_SIM += -skip-testing:$(SKIP_TESTING)
-endif
-
-ifneq ($(CI),)
- IOS_XCODEBUILD_SIM += -xcconfig platform/darwin/ci.xcconfig
-endif
-
-$(IOS_PROJ_PATH): $(IOS_USER_DATA_PATH)/WorkspaceSettings.xcsettings $(BUILD_DEPS)
- mkdir -p $(IOS_OUTPUT_PATH)
- (cd $(IOS_OUTPUT_PATH) && $(CMAKE) -G Xcode ../.. \
- -DCMAKE_TOOLCHAIN_FILE=../../platform/ios/toolchain.cmake \
- -DMBGL_PLATFORM=ios \
- -DMASON_PLATFORM=ios)
-
-$(IOS_USER_DATA_PATH)/WorkspaceSettings.xcsettings: platform/ios/WorkspaceSettings.xcsettings
- mkdir -p "$(IOS_USER_DATA_PATH)"
- cp platform/ios/WorkspaceSettings.xcsettings "$@"
-
-.PHONY: ios
-ios: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' build $(XCPRETTY)
-
-.PHONY: iproj
-iproj: $(IOS_PROJ_PATH)
- xed $(IOS_WORK_PATH)
-
-.PHONY: ios-lint
-ios-lint: ios-pod-lint
- find platform/ios/framework -type f -name '*.plist' | xargs plutil -lint
- find platform/ios/app -type f -name '*.plist' | xargs plutil -lint
-
-.PHONY: ios-pod-lint
-ios-pod-lint:
- ./platform/ios/scripts/lint-podspecs.js
-
-.PHONY: ios-test
-ios-test: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' test $(XCPRETTY)
-
-.PHONY: ios-integration-test
-ios-integration-test: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'Integration Test Harness' test $(XCPRETTY)
-
-.PHONY: ios-sanitize
-ios-sanitize: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' -enableThreadSanitizer YES -enableUndefinedBehaviorSanitizer YES test $(XCPRETTY)
-
-.PHONY: ios-sanitize-address
-ios-sanitize-address: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' -enableAddressSanitizer YES test $(XCPRETTY)
-
-.PHONY: ios-static-analyzer
-ios-static-analyzer: $(IOS_PROJ_PATH)
- set -o pipefail && $(IOS_XCODEBUILD_SIM) analyze -scheme 'CI' test $(XCPRETTY)
-
-.PHONY: ios-install-simulators
-ios-install-simulators:
- xcversion simulators --install="iOS 11.4" || true
- xcversion simulators --install="iOS 10.3.1" || true
- xcversion simulators --install="iOS 9.3" || true
-
-.PHONY: ios-check-events-symbols
-ios-check-events-symbols:
- ./platform/ios/scripts/check-events-symbols.sh
-
-.PHONY: ipackage
-ipackage: ipackage*
-ipackage%:
- @echo make ipackage is deprecated — use make iframework.
-
-.PHONY: iframework
-iframework: $(IOS_PROJ_PATH)
- FORMAT=$(FORMAT) BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=$(SYMBOLS) BUILD_DOCS=$(BUILD_DOCS) \
- ./platform/ios/scripts/package.sh
-
-.PHONY: ideploy
-ideploy:
- caffeinate -i ./platform/ios/scripts/deploy-packages.sh
-
-.PHONY: idocument
-#idocument:
-# OUTPUT=$(OUTPUT) ./platform/ios/scripts/document.sh
-
-.PHONY: darwin-style-code
-darwin-style-code:
- node platform/darwin/scripts/generate-style-code.js
- node platform/darwin/scripts/update-examples.js
-style-code: darwin-style-code
-
-.PHONY: darwin-update-examples
-darwin-update-examples:
- node platform/darwin/scripts/update-examples.js
-
-.PHONY: darwin-check-public-symbols
-darwin-check-public-symbols:
- node platform/darwin/scripts/check-public-symbols.js macOS iOS
-
-endif
-
-#### Linux targets #####################################################
-
-ifeq ($(HOST_PLATFORM), linux)
-
-export PATH := $(shell pwd)/platform/linux:$(PATH)
-export LINUX_OUTPUT_PATH = build/linux-$(shell uname -m)/$(BUILDTYPE)
-LINUX_BUILD = $(LINUX_OUTPUT_PATH)/build.ninja
-
-$(LINUX_BUILD): $(BUILD_DEPS)
- mkdir -p $(LINUX_OUTPUT_PATH)
- (cd $(LINUX_OUTPUT_PATH) && $(CMAKE) -G Ninja ../../.. \
- -DCMAKE_BUILD_TYPE=$(BUILDTYPE) \
- -DWITH_COVERAGE=${WITH_COVERAGE} \
- -DWITH_OSMESA=${WITH_OSMESA} \
- -DWITH_EGL=${WITH_EGL})
-
-.PHONY: linux
-linux: glfw-app render offline
-
-.PHONY: linux-core
-linux-core: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-core mbgl-loop-uv mbgl-filesource
-
-.PHONY: test
-test: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-test
-
-.PHONY: benchmark
-benchmark: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-benchmark
-
-GDB ?= gdb \
- -batch -return-child-result \
- -ex 'set print thread-events off' \
- -ex 'set disable-randomization off' \
- -ex 'run' \
- -ex 'thread apply all bt' --args
-
-.PHONY: run-test
-run-test: run-test-*
-
-run-test-%: test
- $(GDB) $(LINUX_OUTPUT_PATH)/mbgl-test --gtest_catch_exceptions=0 --gtest_filter=$*
-
-.PHONY: run-benchmark
-run-benchmark: run-benchmark-.
-
-run-benchmark-%: benchmark
- $(LINUX_OUTPUT_PATH)/mbgl-benchmark --benchmark_filter=$*
-
-.PHONY: render
-render: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-render
-
-.PHONY: offline
-offline: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-offline
-
-.PHONY: glfw-app
-glfw-app: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-glfw
-
-.PHONY: run-glfw-app
-run-glfw-app: glfw-app
- cd $(LINUX_OUTPUT_PATH) && ./mbgl-glfw
-
-.PHONY: node
-node: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-node.active
-
-.PHONY: node-all
-node-all: $(LINUX_BUILD)
- $(NINJA) $(NINJA_ARGS) -j$(JOBS) -C $(LINUX_OUTPUT_PATH) mbgl-node.all
-
-.PHONY: compdb
-compdb: $(LINUX_BUILD)
- # Ninja generator already outputs the file at the right location
-
-.PHONY: tidy
-tidy: compdb
- scripts/clang-tools.sh $(LINUX_OUTPUT_PATH) $(TARGET_BRANCH)
-
-.PHONY: check
-check: compdb
- scripts/clang-tools.sh $(LINUX_OUTPUT_PATH) $(TARGET_BRANCH) --diff
-
-endif
-
-#### Node targets ##############################################################
-
-.PHONY: test-node
-test-node: node
- npm test
- npm run test-memory
-
-#### Miscellaneous targets #####################################################
-
-.PHONY: style-code
-style-code:
- node scripts/generate-style-code.js
- node scripts/generate-shaders.js
-
-.PHONY: codestyle
-codestyle:
- scripts/codestyle.sh
-
-.PHONY: clean
-clean:
- -rm -rf ./build \
- ./lib/*.node \
- ./platform/android/gradle/configuration.gradle \
- ./platform/android/MapboxGLAndroidSDK/build \
- ./platform/android/MapboxGLAndroidSDK/.externalNativeBuild \
- ./platform/android/MapboxGLAndroidSDKTestApp/build \
- ./platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/activity/gen \
- ./platform/android/MapboxGLAndroidSDK/src/main/assets \
- ./platform/android/MapboxGLAndroidSDKTestApp/src/main/assets/integration
-
-.PHONY: distclean
-distclean: clean
- -rm -rf ./mason_packages
- -rm -rf ./node_modules
diff --git a/benchmark/benchmark-files.json b/benchmark/benchmark-files.json
deleted file mode 100644
index a05fdfc4c2..0000000000
--- a/benchmark/benchmark-files.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "benchmark/api/query.benchmark.cpp",
- "benchmark/api/render.benchmark.cpp",
- "benchmark/function/camera_function.benchmark.cpp",
- "benchmark/function/composite_function.benchmark.cpp",
- "benchmark/function/source_function.benchmark.cpp",
- "benchmark/parse/filter.benchmark.cpp",
- "benchmark/parse/tile_mask.benchmark.cpp",
- "benchmark/parse/vector_tile.benchmark.cpp",
- "benchmark/src/mbgl/benchmark/benchmark.cpp",
- "benchmark/storage/offline_database.benchmark.cpp",
- "benchmark/util/dtoa.benchmark.cpp",
- "benchmark/util/tilecover.benchmark.cpp"
- ],
- "public_headers": {
- "mbgl/benchmark.hpp": "benchmark/include/mbgl/benchmark.hpp"
- },
- "private_headers": {
- "mbgl/benchmark/stub_geometry_tile_feature.hpp": "benchmark/src/mbgl/benchmark/stub_geometry_tile_feature.hpp"
- }
-}
diff --git a/circle.yml b/circle.yml
index 025b58fb00..326f49a915 100644
--- a/circle.yml
+++ b/circle.yml
@@ -517,7 +517,6 @@ jobs:
name: Code Generators
command: |
platform/default/include/mbgl/storage/offline_schema.js
- scripts/generate-file-lists.js
scripts/generate-shaders.js
scripts/generate-style-code.js
git add -A && git diff --staged --exit-code | tee nitpick.patch
diff --git a/cmake/benchmark.cmake b/cmake/benchmark.cmake
deleted file mode 100644
index 7bca681f86..0000000000
--- a/cmake/benchmark.cmake
+++ /dev/null
@@ -1,30 +0,0 @@
-# Run scripts/generate-file-lists.js to change the source files for this target.
-load_sources_list(MBGL_BENCHMARK_FILES benchmark/benchmark-files.json)
-add_executable(mbgl-benchmark ${MBGL_BENCHMARK_FILES})
-
-target_include_directories(mbgl-benchmark
- PRIVATE src
- PRIVATE benchmark/include
- PRIVATE benchmark/src
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-benchmark
- PRIVATE mbgl-core
- PRIVATE mbgl-vendor-benchmark
-)
-
-mbgl_platform_benchmark()
-
-create_source_groups(mbgl-benchmark)
-
-set_target_properties(mbgl-benchmark PROPERTIES FOLDER "Executables")
-
-initialize_xcode_cxx_build_settings(mbgl-benchmark)
-
-xcode_create_scheme(
- TARGET mbgl-benchmark
- OPTIONAL_ARGS
- "--benchmark_filter=Category.*"
- "--benchmark_repetitions=1"
-)
diff --git a/cmake/core.cmake b/cmake/core.cmake
deleted file mode 100644
index d3b72a5000..0000000000
--- a/cmake/core.cmake
+++ /dev/null
@@ -1,46 +0,0 @@
-# scripts/generate-file-lists.js to change the source files for this target.
-load_sources_list(MBGL_CORE_FILES src/core-files.json)
-add_library(mbgl-core STATIC ${MBGL_CORE_FILES})
-
-target_include_directories(mbgl-core
- PUBLIC include
- PRIVATE src
-)
-
-target_link_libraries(mbgl-core PRIVATE
- mbgl-vendor-earcut.hpp
- mbgl-vendor-eternal
- mbgl-vendor-geojson-vt-cpp
- mbgl-vendor-shelf-pack-cpp
- mbgl-vendor-unique_resource
- mbgl-vendor-wagyu
-)
-
-# linux uses ICU from mason, other platforms use vendored ICU
-if(NOT MBGL_PLATFORM STREQUAL "linux")
- set(ICU_LIBRARY "mbgl-vendor-icu")
-endif()
-
-# FIXME: We should not leak these many
-# libraries in our public interface.
-target_link_libraries(mbgl-core PUBLIC
- mbgl-vendor-boost
- mapbox-base-extras
- mapbox-base
- ${ICU_LIBRARY}
- mbgl-vendor-polylabel
- mbgl-vendor-protozero
- Mapbox::Base::Extras::rapidjson
- Mapbox::Base::Extras::expected-lite
- mbgl-vendor-vector-tile
-)
-
-mbgl_platform_core()
-
-create_source_groups(mbgl-core)
-
-set_target_properties(mbgl-core PROPERTIES FOLDER "Core")
-
-xcode_create_scheme(TARGET mbgl-core)
-
-initialize_xcode_cxx_build_settings(mbgl-core)
diff --git a/cmake/doxygen.cmake b/cmake/doxygen.cmake
deleted file mode 100644
index b61e878f88..0000000000
--- a/cmake/doxygen.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-find_package(Doxygen)
-if(DOXYGEN_FOUND)
- set(DOXYGEN_PROJECT_NAME "Mapbox GL Native")
- set(DOXYGEN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/docs")
- set(DOXYGEN_GENERATE_XML TRUE)
- set(DOXYGEN_QUIET YES)
- set(DOXYGEN_WARN_LOGFILE ${CMAKE_BINARY_DIR}/doxygen_warn.log)
-
- doxygen_add_docs(generate_xml_doxygen
- ${CMAKE_SOURCE_DIR}/include
- )
-
- add_custom_target(doxygen_coverage
- COMMAND ${CMAKE_SOURCE_DIR}/scripts/doxy-coverage.py --quiet --noerror --json="${CMAKE_BINARY_DIR}/doxygen-coverage.json" "${CMAKE_BINARY_DIR}/docs/xml"
- COMMENT "Checking documentation coverage"
- DEPENDS generate_xml_doxygen
- )
-endif()
diff --git a/cmake/empty.cpp b/cmake/empty.cpp
deleted file mode 100644
index e69de29bb2..0000000000
--- a/cmake/empty.cpp
+++ /dev/null
diff --git a/cmake/executable.xcscheme b/cmake/executable.xcscheme
deleted file mode 100644
index 44146a621d..0000000000
--- a/cmake/executable.xcscheme
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Scheme
- LastUpgradeVersion = "0830"
- version = "1.3">
- <BuildAction
- parallelizeBuildables = "YES"
- buildImplicitDependencies = "YES">
- <BuildActionEntries>
- <BuildActionEntry
- buildForTesting = "YES"
- buildForRunning = "YES"
- buildForProfiling = "YES"
- buildForArchiving = "YES"
- buildForAnalyzing = "YES">
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </BuildActionEntry>
- </BuildActionEntries>
- </BuildAction>
- <TestAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- shouldUseLaunchSchemeArgsEnv = "YES">
- <Testables>
- </Testables>
- <MacroExpansion>
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </MacroExpansion>
- <AdditionalOptions>
- </AdditionalOptions>
- </TestAction>
- <LaunchAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- launchStyle = "0"
- useCustomWorkingDirectory = "YES"
- customWorkingDirectory = "${XCSCHEME_WORKING_DIRECTORY}"
- ignoresPersistentStateOnLaunch = "NO"
- debugDocumentVersioning = "YES"
- debugServiceExtension = "internal"
- allowLocationSimulation = "YES">
- <BuildableProductRunnable
- runnableDebuggingMode = "0">
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </BuildableProductRunnable>
- <CommandLineArguments>${XCSCHEME_COMMAND_LINE_ARGS}
- </CommandLineArguments>
- <EnvironmentVariables>
- <EnvironmentVariable
- key = "MAPBOX_ACCESS_TOKEN"
- value = "$ENV{MAPBOX_ACCESS_TOKEN}"
- isEnabled = "YES">
- </EnvironmentVariable>
- </EnvironmentVariables>
- <AdditionalOptions>
- </AdditionalOptions>
- </LaunchAction>
- <ProfileAction
- buildConfiguration = "Release"
- shouldUseLaunchSchemeArgsEnv = "YES"
- savedToolIdentifier = ""
- useCustomWorkingDirectory = "YES"
- customWorkingDirectory = "${XCSCHEME_WORKING_DIRECTORY}"
- debugDocumentVersioning = "YES">
- <BuildableProductRunnable
- runnableDebuggingMode = "0">
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </BuildableProductRunnable>
- </ProfileAction>
- <AnalyzeAction
- buildConfiguration = "Debug">
- </AnalyzeAction>
- <ArchiveAction
- buildConfiguration = "Release"
- revealArchiveInOrganizer = "YES">
- </ArchiveAction>
-</Scheme>
diff --git a/cmake/expression-test.cmake b/cmake/expression-test.cmake
deleted file mode 100644
index da4f90d751..0000000000
--- a/cmake/expression-test.cmake
+++ /dev/null
@@ -1,29 +0,0 @@
-add_executable(mbgl-expression-test
- expression-test/main.cpp
- expression-test/expression_test_parser.cpp
- expression-test/expression_test_runner.cpp
- expression-test/expression_test_logger.cpp
- expression-test/test_runner_common.cpp
- expression-test/test_runner_common.hpp
-)
-
-if(APPLE)
- target_link_libraries(mbgl-expression-test PRIVATE mbgl-loop-darwin)
-else()
- target_link_libraries(mbgl-expression-test PRIVATE mbgl-loop-uv)
-endif()
-
-target_include_directories(mbgl-expression-test
- PRIVATE src
- PRIVATE expression-test
- PRIVATE render-test
-)
-
-target_link_libraries(mbgl-expression-test PRIVATE
- mbgl-core
- Mapbox::Base::Extras::args
- Mapbox::Base::Extras::filesystem
- Mapbox::Base::Extras::rapidjson
-)
-
-add_definitions(-DTEST_RUNNER_ROOT_PATH="${CMAKE_SOURCE_DIR}")
diff --git a/cmake/filesource.cmake b/cmake/filesource.cmake
deleted file mode 100644
index aca8b1c962..0000000000
--- a/cmake/filesource.cmake
+++ /dev/null
@@ -1,24 +0,0 @@
-# Modify platform/default/filesource-files.json to change the source files for this target.
-load_sources_list(MBGL_FILESOURCE_FILES platform/default/filesource-files.json)
-add_library(mbgl-filesource STATIC ${MBGL_FILESOURCE_FILES})
-
-target_include_directories(mbgl-filesource
- PRIVATE include
- PRIVATE src
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-filesource
- PUBLIC mbgl-core
- PUBLIC Mapbox::Base::Extras::expected-lite
-)
-
-mbgl_filesource()
-
-create_source_groups(mbgl-filesource)
-
-set_target_properties(mbgl-filesource PROPERTIES FOLDER "Core")
-
-xcode_create_scheme(TARGET mbgl-filesource)
-
-initialize_xcode_cxx_build_settings(mbgl-filesource)
diff --git a/cmake/glfw.cmake b/cmake/glfw.cmake
deleted file mode 100644
index d595518954..0000000000
--- a/cmake/glfw.cmake
+++ /dev/null
@@ -1,51 +0,0 @@
-add_executable(mbgl-glfw
- platform/glfw/main.cpp
-)
-
-target_sources(mbgl-glfw
- PRIVATE platform/glfw/glfw_view.hpp
- PRIVATE platform/glfw/glfw_view.cpp
- PRIVATE platform/glfw/glfw_backend.hpp
- PRIVATE platform/glfw/glfw_gl_backend.hpp
- PRIVATE platform/glfw/glfw_gl_backend.cpp
- PRIVATE platform/glfw/glfw_renderer_frontend.hpp
- PRIVATE platform/glfw/glfw_renderer_frontend.cpp
- PRIVATE platform/glfw/settings_json.hpp
- PRIVATE platform/glfw/settings_json.cpp
- PRIVATE platform/glfw/test_writer.hpp
- PRIVATE platform/glfw/test_writer.cpp
-)
-
-target_include_directories(mbgl-glfw
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-glfw
- PRIVATE mbgl-core
- PRIVATE glfw
- PRIVATE mbgl-vendor-cheap-ruler-cpp
- PRIVATE Mapbox::Base::Extras::args
-)
-
-mbgl_platform_glfw()
-
-create_source_groups(mbgl-glfw)
-
-set_target_properties(mbgl-glfw PROPERTIES FOLDER "Executables")
-
-initialize_xcode_cxx_build_settings(mbgl-glfw)
-
-xcode_create_scheme(
- TARGET mbgl-glfw
- OPTIONAL_ARGS
- "--style=file.json"
- "--cache=/tmp/mbgl-cache.db"
- "--lon=0"
- "--lat=0"
- "--zoom=1"
- "--bearing=0"
- "--pitch=0"
- "--fullscreen"
- "--offline"
- "--benchmark"
-)
diff --git a/cmake/library.xcscheme b/cmake/library.xcscheme
deleted file mode 100644
index 320a2f851f..0000000000
--- a/cmake/library.xcscheme
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Scheme
- LastUpgradeVersion = "0830"
- version = "1.3">
- <BuildAction
- parallelizeBuildables = "YES"
- buildImplicitDependencies = "YES">
- <BuildActionEntries>
- <BuildActionEntry
- buildForTesting = "YES"
- buildForRunning = "YES"
- buildForProfiling = "YES"
- buildForArchiving = "YES"
- buildForAnalyzing = "YES">
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </BuildActionEntry>
- </BuildActionEntries>
- </BuildAction>
- <TestAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- shouldUseLaunchSchemeArgsEnv = "YES">
- <Testables>
- </Testables>
- <AdditionalOptions>
- </AdditionalOptions>
- </TestAction>
- <LaunchAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- launchStyle = "0"
- useCustomWorkingDirectory = "NO"
- ignoresPersistentStateOnLaunch = "NO"
- debugDocumentVersioning = "YES"
- debugServiceExtension = "internal"
- allowLocationSimulation = "YES">
- <MacroExpansion>
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </MacroExpansion>
- <AdditionalOptions>
- </AdditionalOptions>
- </LaunchAction>
- <ProfileAction
- buildConfiguration = "Release"
- shouldUseLaunchSchemeArgsEnv = "YES"
- savedToolIdentifier = ""
- useCustomWorkingDirectory = "NO"
- debugDocumentVersioning = "YES">
- <MacroExpansion>
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </MacroExpansion>
- </ProfileAction>
- <AnalyzeAction
- buildConfiguration = "Debug">
- </AnalyzeAction>
- <ArchiveAction
- buildConfiguration = "Release"
- revealArchiveInOrganizer = "YES">
- </ArchiveAction>
-</Scheme>
diff --git a/cmake/loop-darwin.cmake b/cmake/loop-darwin.cmake
deleted file mode 100644
index 9e52639c52..0000000000
--- a/cmake/loop-darwin.cmake
+++ /dev/null
@@ -1,20 +0,0 @@
-# Modify platform/darwin/loop-files.json to change the source files for this target.
-load_sources_list(MBGL_LOOP_DARWIN_FILES platform/darwin/loop-files.json)
-add_library(mbgl-loop-darwin STATIC ${MBGL_LOOP_DARWIN_FILES})
-
-target_include_directories(mbgl-loop-darwin
- PRIVATE include
- PRIVATE src
-)
-
-target_link_libraries(mbgl-loop-darwin PUBLIC
- mapbox-base
-)
-
-create_source_groups(mbgl-loop-darwin)
-
-set_target_properties(mbgl-loop-darwin PROPERTIES FOLDER "Core")
-
-initialize_xcode_cxx_build_settings(mbgl-loop-darwin)
-
-xcode_create_scheme(TARGET mbgl-loop-darwin)
diff --git a/cmake/loop-uv.cmake b/cmake/loop-uv.cmake
deleted file mode 100644
index 320545b3c3..0000000000
--- a/cmake/loop-uv.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-add_library(mbgl-loop-uv INTERFACE)
-
-target_sources(mbgl-loop-uv INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/async_task.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/run_loop.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/timer.cpp
-)
-
-target_include_directories(mbgl-loop-uv INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/include
- ${CMAKE_CURRENT_SOURCE_DIR}/src
-)
-
-create_source_groups(mbgl-loop-uv)
diff --git a/cmake/mason-dependencies.cmake b/cmake/mason-dependencies.cmake
deleted file mode 100644
index 5ec6a44a79..0000000000
--- a/cmake/mason-dependencies.cmake
+++ /dev/null
@@ -1,25 +0,0 @@
-# All dependencies in a single separate file so its checksum can be used in a CI cache key name
-
-if(MBGL_PLATFORM STREQUAL "android")
- # noop
-elseif(MBGL_PLATFORM STREQUAL "ios")
- # noop
-elseif(MBGL_PLATFORM STREQUAL "linux")
- mason_use(libuv VERSION 1.9.1)
- mason_use(libpng VERSION 1.6.25)
- mason_use(libjpeg-turbo VERSION 1.5.0)
- mason_use(icu VERSION 63.1-min-static-data)
-
- if(WITH_EGL)
- mason_use(swiftshader VERSION 2018-05-31)
- endif()
-elseif(MBGL_PLATFORM STREQUAL "macos")
- if(WITH_EGL)
- mason_use(swiftshader VERSION 2018-05-31)
- endif()
-elseif(MBGL_PLATFORM STREQUAL "qt")
- if(NOT WITH_QT_DECODERS)
- mason_use(libjpeg-turbo VERSION 1.5.0)
- mason_use(libpng VERSION 1.6.25)
- endif()
-endif()
diff --git a/cmake/mason.cmake b/cmake/mason.cmake
deleted file mode 100644
index c0795d962c..0000000000
--- a/cmake/mason.cmake
+++ /dev/null
@@ -1,227 +0,0 @@
-# Mason CMake
-
-include(CMakeParseArguments)
-
-function(mason_detect_platform)
- # Determine platform
- if(NOT MASON_PLATFORM)
- # we call uname -s manually here since
- # CMAKE_HOST_SYSTEM_NAME will not be defined before the project() call
- execute_process(
- COMMAND uname -s
- OUTPUT_VARIABLE UNAME
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-
- if (UNAME STREQUAL "Darwin")
- set(MASON_PLATFORM "osx" PARENT_SCOPE)
- else()
- set(MASON_PLATFORM "linux" PARENT_SCOPE)
- endif()
- endif()
-
- # Determine platform version string
- if(NOT MASON_PLATFORM_VERSION)
- # Android Studio only passes ANDROID_ABI, but we need to adjust that to the Mason
- if(MASON_PLATFORM STREQUAL "android" AND NOT MASON_PLATFORM_VERSION)
- if (ANDROID_ABI STREQUAL "armeabi-v7a")
- set(MASON_PLATFORM_VERSION "arm-v7-14" PARENT_SCOPE)
- elseif (ANDROID_ABI STREQUAL "arm64-v8a")
- set(MASON_PLATFORM_VERSION "arm-v8-21" PARENT_SCOPE)
- elseif (ANDROID_ABI STREQUAL "x86")
- set(MASON_PLATFORM_VERSION "x86-14" PARENT_SCOPE)
- elseif (ANDROID_ABI STREQUAL "x86_64")
- set(MASON_PLATFORM_VERSION "x86-64-21" PARENT_SCOPE)
- else()
- message(FATAL_ERROR "Unknown ANDROID_ABI '${ANDROID_ABI}'.")
- endif()
- elseif(MASON_PLATFORM STREQUAL "ios")
- set(MASON_PLATFORM_VERSION "8.0" PARENT_SCOPE)
- else()
- execute_process(
- COMMAND uname -m
- OUTPUT_VARIABLE MASON_PLATFORM_VERSION
- OUTPUT_STRIP_TRAILING_WHITESPACE)
- set(MASON_PLATFORM_VERSION "${MASON_PLATFORM_VERSION}" PARENT_SCOPE)
- endif()
- endif()
-endfunction()
-
-function(mason_use _PACKAGE)
- if(NOT _PACKAGE)
- message(FATAL_ERROR "[Mason] No package name given")
- endif()
-
- cmake_parse_arguments("" "HEADER_ONLY" "VERSION" "" ${ARGN})
-
- if(_UNPARSED_ARGUMENTS)
- message(FATAL_ERROR "[Mason] mason_use() called with unrecognized arguments: ${_UNPARSED_ARGUMENTS}")
- endif()
-
- if(NOT _VERSION)
- message(FATAL_ERROR "[Mason] Specifying a version is required")
- endif()
-
- if(MASON_PACKAGE_${_PACKAGE}_INVOCATION STREQUAL "${MASON_INVOCATION}")
- # Check that the previous invocation of mason_use didn't select another version of this package
- if(NOT MASON_PACKAGE_${_PACKAGE}_VERSION STREQUAL ${_VERSION})
- message(FATAL_ERROR "[Mason] Already using ${_PACKAGE} ${MASON_PACKAGE_${_PACKAGE}_VERSION}. Cannot select version ${_VERSION}.")
- endif()
- else()
- if(_HEADER_ONLY)
- set(_PLATFORM_ID "headers")
- else()
- set(_PLATFORM_ID "${MASON_PLATFORM}-${MASON_PLATFORM_VERSION}")
- endif()
-
- set(_SLUG "${_PLATFORM_ID}/${_PACKAGE}/${_VERSION}")
- set(_INSTALL_PATH "${MASON_PACKAGE_DIR}/${_SLUG}")
- file(RELATIVE_PATH _INSTALL_PATH_RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${_INSTALL_PATH}")
-
- if(NOT EXISTS "${_INSTALL_PATH}")
- set(_CACHE_PATH "${MASON_PACKAGE_DIR}/.binaries/${_SLUG}.tar.gz")
- if (NOT EXISTS "${_CACHE_PATH}")
- # Download the package
- set(_URL "${MASON_REPOSITORY}/${_SLUG}.tar.gz")
- message("[Mason] Downloading package ${_URL}...")
-
- set(_STATUS)
- get_filename_component(_CACHE_DIR "${_CACHE_PATH}" DIRECTORY)
- file(MAKE_DIRECTORY "${_CACHE_DIR}")
- file(DOWNLOAD "${_URL}" "${_CACHE_PATH}.tmp" STATUS _STATUS TLS_VERIFY ON)
-
- list(GET _STATUS 0 _STATUS_CODE)
- list(GET _STATUS 1 _STATUS_STRING)
- if(NOT _STATUS_CODE EQUAL 0)
- message(FATAL_ERROR "[Mason] Failed to download ${_URL}: ${_STATUS_STRING}")
- else()
- # We downloaded to a temporary file to prevent half-finished downloads
- file(RENAME "${_CACHE_PATH}.tmp" "${_CACHE_PATH}")
- endif()
- endif()
-
- # Unpack the package
- message("[Mason] Unpacking package to ${_INSTALL_PATH_RELATIVE}...")
- file(MAKE_DIRECTORY "${_INSTALL_PATH}")
- execute_process(
- COMMAND ${CMAKE_COMMAND} -E tar xzf "${_CACHE_PATH}"
- WORKING_DIRECTORY "${_INSTALL_PATH}")
- endif()
-
- # Error out if there is no config file.
- if(NOT EXISTS "${_INSTALL_PATH}/mason.ini")
- message(FATAL_ERROR "[Mason] Could not find mason.ini for package ${_PACKAGE} ${_VERSION}")
- endif()
-
- set(MASON_PACKAGE_${_PACKAGE}_PREFIX "${_INSTALL_PATH}" CACHE STRING "${_PACKAGE} ${_INSTALL_PATH}" FORCE)
- mark_as_advanced(MASON_PACKAGE_${_PACKAGE}_PREFIX)
-
- # Load the configuration from the ini file
- file(STRINGS "${_INSTALL_PATH}/mason.ini" _CONFIG_FILE)
- foreach(_LINE IN LISTS _CONFIG_FILE)
- string(REGEX MATCH "^([a-z_]+) *= *" _KEY "${_LINE}")
- if (_KEY)
- string(LENGTH "${_KEY}" _KEY_LENGTH)
- string(SUBSTRING "${_LINE}" ${_KEY_LENGTH} -1 _VALUE)
- string(REGEX REPLACE ";.*$" "" _VALUE "${_VALUE}") # Trim trailing commas
- string(REPLACE "{prefix}" "${_INSTALL_PATH}" _VALUE "${_VALUE}")
- string(STRIP "${_VALUE}" _VALUE)
- string(REPLACE "=" "" _KEY "${_KEY}")
- string(STRIP "${_KEY}" _KEY)
- string(TOUPPER "${_KEY}" _KEY)
- if(_KEY STREQUAL "INCLUDE_DIRS" OR _KEY STREQUAL "STATIC_LIBS" )
- separate_arguments(_VALUE)
- endif()
- set(MASON_PACKAGE_${_PACKAGE}_${_KEY} "${_VALUE}" CACHE STRING "${_PACKAGE} ${_KEY}" FORCE)
- mark_as_advanced(MASON_PACKAGE_${_PACKAGE}_${_KEY})
- endif()
- endforeach()
-
- # Compare version in the package to catch errors early on
- if(NOT _VERSION STREQUAL MASON_PACKAGE_${_PACKAGE}_VERSION)
- message(FATAL_ERROR "[Mason] Package at ${_INSTALL_PATH_RELATIVE} has version '${MASON_PACKAGE_${_PACKAGE}_VERSION}', but required '${_VERSION}'")
- endif()
-
- if(NOT _PACKAGE STREQUAL MASON_PACKAGE_${_PACKAGE}_NAME)
- message(FATAL_ERROR "[Mason] Package at ${_INSTALL_PATH_RELATIVE} has name '${MASON_PACKAGE_${_PACKAGE}_NAME}', but required '${_NAME}'")
- endif()
-
- if(NOT _HEADER_ONLY)
- if(NOT MASON_PLATFORM STREQUAL MASON_PACKAGE_${_PACKAGE}_PLATFORM)
- message(FATAL_ERROR "[Mason] Package at ${_INSTALL_PATH_RELATIVE} has platform '${MASON_PACKAGE_${_PACKAGE}_PLATFORM}', but required '${MASON_PLATFORM}'")
- endif()
-
- if(NOT MASON_PLATFORM_VERSION STREQUAL MASON_PACKAGE_${_PACKAGE}_PLATFORM_VERSION)
- message(FATAL_ERROR "[Mason] Package at ${_INSTALL_PATH_RELATIVE} has platform version '${MASON_PACKAGE_${_PACKAGE}_PLATFORM_VERSION}', but required '${MASON_PLATFORM_VERSION}'")
- endif()
- endif()
-
- # Concatenate the static libs and libraries
- set(_LIBRARIES)
- list(APPEND _LIBRARIES ${MASON_PACKAGE_${_PACKAGE}_STATIC_LIBS} ${MASON_PACKAGE_${_PACKAGE}_LDFLAGS})
- set(MASON_PACKAGE_${_PACKAGE}_LIBRARIES "${_LIBRARIES}" CACHE STRING "${_PACKAGE} _LIBRARIES" FORCE)
- mark_as_advanced(MASON_PACKAGE_${_PACKAGE}_LIBRARIES)
-
- if(NOT _HEADER_ONLY)
- string(REGEX MATCHALL "(^| +)-L *([^ ]+)" MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS "${MASON_PACKAGE_${_PACKAGE}_LDFLAGS}")
- string(REGEX REPLACE "(^| +)-L *" "\\1" MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS "${MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS}")
- set(MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS "${MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS}" CACHE STRING "${_PACKAGE} ${MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS}" FORCE)
- mark_as_advanced(MASON_PACKAGE_${_PACKAGE}_LIBRARY_DIRS)
- endif()
-
- # Store invocation ID to prevent different versions of the same package in one invocation
- set(MASON_PACKAGE_${_PACKAGE}_INVOCATION "${MASON_INVOCATION}" CACHE INTERNAL "${_PACKAGE} invocation ID" FORCE)
- endif()
-endfunction()
-
-macro(target_add_mason_package _TARGET _VISIBILITY _PACKAGE)
- if (NOT MASON_PACKAGE_${_PACKAGE}_INVOCATION)
- message(FATAL_ERROR "[Mason] Package ${_PACKAGE} has not been initialized yet")
- endif()
-
- target_include_directories(${_TARGET} ${_VISIBILITY} "${MASON_PACKAGE_${_PACKAGE}_INCLUDE_DIRS}")
- target_compile_definitions(${_TARGET} ${_VISIBILITY} "${MASON_PACKAGE_${_PACKAGE}_DEFINITIONS}")
- target_compile_options(${_TARGET} ${_VISIBILITY} "${MASON_PACKAGE_${_PACKAGE}_OPTIONS}")
- target_link_libraries(${_TARGET} ${_VISIBILITY} "${MASON_PACKAGE_${_PACKAGE}_LIBRARIES}")
-endmacro()
-
-# Setup
-
-string(RANDOM LENGTH 16 MASON_INVOCATION)
-
-# Read environment variables if CMake is run in command mode
-if (CMAKE_ARGC)
- set(MASON_PLATFORM "$ENV{MASON_PLATFORM}")
- set(MASON_PLATFORM_VERSION "$ENV{MASON_PLATFORM_VERSION}")
- set(MASON_PACKAGE_DIR "$ENV{MASON_PACKAGE_DIR}")
- set(MASON_REPOSITORY "$ENV{MASON_REPOSITORY}")
-endif()
-
-# Directory where Mason packages are located; typically ends with mason_packages
-if (NOT MASON_PACKAGE_DIR)
- set(MASON_PACKAGE_DIR "${CMAKE_SOURCE_DIR}/mason_packages")
-endif()
-
-# URL prefix of where packages are located.
-if (NOT MASON_REPOSITORY)
- set(MASON_REPOSITORY "https://mason-binaries.s3.amazonaws.com")
-endif()
-
-mason_detect_platform()
-
-# Execute commands if CMake is run in command mode\
-if (CMAKE_ARGC AND "${CMAKE_SCRIPT_MODE_FILE}" STREQUAL "${CMAKE_CURRENT_LIST_DIR}/mason.cmake")
- # Collect remaining arguments for passing to mason_use
- set(_MASON_ARGS)
- foreach(I RANGE 4 ${CMAKE_ARGC})
- list(APPEND _MASON_ARGS "${CMAKE_ARGV${I}}")
- endforeach()
-
- # Install the package
- mason_use(${_MASON_ARGS})
-
- # Optionally print variables
- if(DEFINED MASON_PACKAGE_${CMAKE_ARGV4}_${CMAKE_ARGV3})
- # CMake can't write to stdout with message()
- execute_process(COMMAND ${CMAKE_COMMAND} -E echo "${MASON_PACKAGE_${CMAKE_ARGV4}_${CMAKE_ARGV3}}")
- endif()
-endif()
diff --git a/cmake/mbgl.cmake b/cmake/mbgl.cmake
deleted file mode 100644
index 279ead6eb2..0000000000
--- a/cmake/mbgl.cmake
+++ /dev/null
@@ -1,236 +0,0 @@
-if (NOT MBGL_PLATFORM)
- if (CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin")
- set(MBGL_PLATFORM "macos")
- else()
- set(MBGL_PLATFORM "linux")
- endif()
-endif()
-
-if(MBGL_WITH_OPENGL)
- add_definitions(-DMBGL_RENDER_BACKEND_OPENGL=1)
-endif()
-
-if(WITH_NODEJS)
- find_program(NodeJS_EXECUTABLE NAMES nodejs node)
- if (NOT NodeJS_EXECUTABLE)
- message(FATAL_ERROR "Could not find Node.js")
- endif()
-
- find_program(npm_EXECUTABLE NAMES npm)
- if (NOT npm_EXECUTABLE)
- message(FATAL_ERROR "Could not find npm")
- endif()
-
- execute_process(
- COMMAND "${NodeJS_EXECUTABLE}" -e "process.stdout.write(process.versions.node)"
- RESULT_VARIABLE _STATUS_CODE
- OUTPUT_VARIABLE NodeJS_VERSION
- ERROR_VARIABLE _STATUS_MESSAGE
- )
- if(NOT _STATUS_CODE EQUAL 0)
- message(FATAL_ERROR "Could not detect Node.js version: ${_STATUS_MESSAGE}")
- endif()
-
- execute_process(
- COMMAND "${NodeJS_EXECUTABLE}" -e "process.stdout.write(process.versions.modules)"
- RESULT_VARIABLE _STATUS_CODE
- OUTPUT_VARIABLE NodeJS_ABI
- ERROR_VARIABLE _STATUS_MESSAGE
- )
- if(NOT _STATUS_CODE EQUAL 0)
- message(FATAL_ERROR "Could not detect Node.js ABI version: ${_STATUS_MESSAGE}")
- endif()
-
- function(_npm_install DIRECTORY NAME ADDITIONAL_DEPS)
- SET(NPM_INSTALL_FAILED FALSE)
- if("${DIRECTORY}/package.json" IS_NEWER_THAN "${DIRECTORY}/node_modules/.${NAME}.stamp")
- message(STATUS "Running 'npm install' for ${NAME}...")
- execute_process(
- COMMAND "${NodeJS_EXECUTABLE}" "${npm_EXECUTABLE}" install --verbose --ignore-scripts
- WORKING_DIRECTORY "${DIRECTORY}"
- RESULT_VARIABLE NPM_INSTALL_FAILED
- OUTPUT_VARIABLE NPM_OUTPUT
- ERROR_VARIABLE NPM_OUTPUT)
- message(STATUS "Finished 'npm install' for ${NAME}...")
- if(NOT NPM_INSTALL_FAILED)
- execute_process(COMMAND ${CMAKE_COMMAND} -E touch "${DIRECTORY}/node_modules/.${NAME}.stamp")
- else()
- message(FATAL_ERROR "NPM install failed:\n${NPM_OUTPUT}")
- endif()
- endif()
-
- add_custom_command(
- OUTPUT "${DIRECTORY}/node_modules/.${NAME}.stamp"
- COMMAND "${NodeJS_EXECUTABLE}" "${npm_EXECUTABLE}" install --ignore-scripts
- COMMAND ${CMAKE_COMMAND} -E touch "${DIRECTORY}/node_modules/.${NAME}.stamp"
- WORKING_DIRECTORY "${DIRECTORY}"
- DEPENDS ${ADDITIONAL_DEPS} "${DIRECTORY}/package.json"
- COMMENT "Running 'npm install' for ${NAME}...")
- endfunction()
-
- # Run submodule update
- set(MBGL_SUBMODULES mapbox-gl-js)
- if(MBGL_PLATFORM STREQUAL "ios")
- list(APPEND MBGL_SUBMODULES platform/ios/vendor/mapbox-events-ios)
- endif()
- if(MBGL_PLATFORM STREQUAL "ios" OR MBGL_PLATFORM STREQUAL "macos")
- list(APPEND MBGL_SUBMODULES platform/darwin/docs/theme)
- endif()
-
- message(STATUS "Updating submodules...")
- execute_process(
- COMMAND git submodule update --init ${MBGL_SUBMODULES}
- WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}")
-
- if(NOT EXISTS "${CMAKE_SOURCE_DIR}/mapbox-gl-js/node_modules")
- # Symlink mapbox-gl-js/node_modules so that the modules that are
- # about to be installed get cached between CI runs.
- execute_process(
- COMMAND ln -sF ../node_modules .
- WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/mapbox-gl-js")
- endif()
-
- # Add target for running submodule update during builds
- add_custom_target(
- update-submodules ALL
- COMMAND git submodule update --init ${MBGL_SUBMODULES}
- WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
- COMMENT "Updating submodules..."
- )
- set_target_properties(update-submodules PROPERTIES FOLDER "Misc")
-
- # Run npm install for both directories, and add custom commands, and a target that depends on them.
- _npm_install("${CMAKE_SOURCE_DIR}" mapbox-gl-native update-submodules)
- _npm_install("${CMAKE_SOURCE_DIR}/mapbox-gl-js/test/integration" mapbox-gl-js "${CMAKE_SOURCE_DIR}/node_modules/.mapbox-gl-native.stamp")
- add_custom_target(
- npm-install ALL
- DEPENDS "${CMAKE_SOURCE_DIR}/node_modules/.mapbox-gl-js.stamp"
- )
- set_target_properties(npm-install PROPERTIES FOLDER "Misc")
-endif()
-
-# Generate source groups so the files are properly sorted in IDEs like Xcode.
-function(create_source_groups target)
- get_target_property(type ${target} TYPE)
- if(type AND type STREQUAL "INTERFACE_LIBRARY")
- get_target_property(sources ${target} INTERFACE_SOURCES)
- else()
- get_target_property(sources ${target} SOURCES)
- endif()
- foreach(file ${sources})
- get_filename_component(file "${file}" ABSOLUTE)
- string(REGEX REPLACE "^${CMAKE_SOURCE_DIR}/" "" group "${file}")
- get_filename_component(group "${group}" DIRECTORY)
- string(REPLACE "/" "\\" group "${group}")
- source_group("${group}" FILES "${file}")
- endforeach()
-endfunction()
-
-function(load_sources_list VAR FILELIST)
- set(_FILES)
- file(READ "${FILELIST}" _LINES)
- # Note: this isn't really parsing JSON, but it's good enough for our purposes.
- set(_REGEX "(^|\n) *(\"([^\"]+)\" *: *)?\"([^\"]+)\",?(\n|$)")
- string(REGEX MATCHALL "${_REGEX}" _MATCHES "${_LINES}")
- foreach(_MATCH IN LISTS _MATCHES)
- string(REGEX MATCH "${_REGEX}" _FILE "${_MATCH}")
- if (_FILE AND NOT CMAKE_MATCH_3 STREQUAL "//")
- list(APPEND _FILES "${CMAKE_SOURCE_DIR}/${CMAKE_MATCH_4}")
- endif()
- endforeach()
- set(${VAR} "${_FILES}" PARENT_SCOPE)
- set_property(DIRECTORY "${CMAKE_SOURCE_DIR}" APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${FILELIST}")
-endfunction()
-
-function(target_sources_from_file TARGET TYPE FILELIST)
- load_sources_list(_FILELIST "${FILELIST}")
- target_sources(${TARGET} ${TYPE} "${_FILELIST}")
-endfunction()
-
-# Creates a library target for a vendored dependency
-function(add_vendor_target NAME TYPE)
- set(INCLUDE_TYPE "INTERFACE")
- set(SOURCE_TYPE "INTERFACE")
- if (TYPE STREQUAL "STATIC" OR TYPE STREQUAL "SHARED")
- add_library(${NAME} ${TYPE} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/empty.cpp")
- set(INCLUDE_TYPE "PUBLIC")
- set(SOURCE_TYPE "PRIVATE")
- set_target_properties(${NAME} PROPERTIES SOURCES "")
- else()
- add_library(${NAME} ${TYPE})
- endif()
- set_target_properties(${NAME} PROPERTIES INTERFACE_SOURCES "")
- file(STRINGS "${CMAKE_CURRENT_SOURCE_DIR}/vendor/${NAME}/files.txt" FILES)
- foreach(FILE IN LISTS FILES)
- target_sources(${NAME} ${SOURCE_TYPE} "${CMAKE_CURRENT_SOURCE_DIR}/vendor/${NAME}/${FILE}")
- endforeach()
- target_include_directories(${NAME} SYSTEM ${INCLUDE_TYPE} "${CMAKE_CURRENT_SOURCE_DIR}/vendor/${NAME}/include")
- create_source_groups(${NAME})
-endfunction()
-
-# This little macro lets you set any XCode specific property
-macro(set_xcode_property TARGET XCODE_PROPERTY XCODE_VALUE)
- set_property(TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE})
-endmacro (set_xcode_property)
-
-function(set_xcconfig_target_properties target)
- # Create a list of linked libraries for use in the xcconfig generation script.
- get_property(result TARGET ${target} PROPERTY INTERFACE_LINK_LIBRARIES)
- string(GENEX_STRIP "${result}" result)
- # Remove target names from the list of linker flags, since Xcode can't deal with them.
- set(link_flags)
- foreach(item IN LISTS result)
- if (NOT TARGET ${item})
- list(APPEND link_flags ${item})
- endif()
- endforeach()
- string(REGEX REPLACE "(^|;)-framework " "\\1-framework;" link_flags "${link_flags}")
- string(REPLACE ";" "\" \"" link_flags "${link_flags}")
- set_xcode_property(${target} XCCONFIG_LINK_LIBRARIES "${link_flags}")
-endfunction()
-
-# Set Xcode project build settings to be consistent with the CXX flags we're
-# using. (Otherwise, Xcode's defaults may override some of these.)
-function(initialize_xcode_cxx_build_settings target)
- # -Wall
- set_xcode_property(${target} GCC_WARN_SIGN_COMPARE YES)
- set_xcode_property(${target} GCC_WARN_UNINITIALIZED_AUTOS YES)
- set_xcode_property(${target} GCC_WARN_UNKNOWN_PRAGMAS YES)
- set_xcode_property(${target} GCC_WARN_UNUSED_FUNCTION YES)
- set_xcode_property(${target} GCC_WARN_UNUSED_LABEL YES)
- set_xcode_property(${target} GCC_WARN_UNUSED_PARAMETER YES)
- set_xcode_property(${target} GCC_WARN_UNUSED_VARIABLE YES)
-
- # -Wextra
- set_xcode_property(${target} CLANG_WARN_EMPTY_BODY YES)
- set_xcode_property(${target} GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS YES)
-
- # -Wshadow
- set_xcode_property(${target} GCC_WARN_SHADOW YES)
-
- # -Wnon-virtual-dtor
- set_xcode_property(${target} GCC_WARN_NON_VIRTUAL_DESTRUCTOR YES)
-
- # -Wnon-literal-conversion
- set_xcode_property(${target} CLANG_WARN_NON_LITERAL_NULL_CONVERSION YES)
-
- # -Wrange-loop-analysis
- set_xcode_property(${target} CLANG_WARN_RANGE_LOOP_ANALYSIS YES)
-
- # -flto
- set_xcode_property(${target} LLVM_LTO $<$<OR:$<CONFIG:Release>,$<CONFIG:RelWithDebInfo>>:YES>)
-
- # Make all build configurations debuggable — except Release.
- set_xcode_property(${target} GCC_GENERATE_DEBUGGING_SYMBOLS $<$<NOT:$<CONFIG:Release>>:YES>)
-
- # -Wunguarded-availability
- set_xcode_property(${target} CLANG_WARN_UNGUARDED_AVAILABILITY YES_AGGRESSIVE)
-
- if (DEFINED ENV{CI})
- set_xcode_property(${target} COMPILER_INDEX_STORE_ENABLE NO)
- endif()
-endfunction()
-
-# CMake 3.1 does not have this yet.
-set(CMAKE_CXX14_STANDARD_COMPILE_OPTION "-std=c++14")
-set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std=gnu++14")
diff --git a/cmake/node.cmake b/cmake/node.cmake
deleted file mode 100644
index dba1a5499d..0000000000
--- a/cmake/node.cmake
+++ /dev/null
@@ -1,145 +0,0 @@
-# Load Node.js
-set(NODE_MODULE_CACHE_DIR "${CMAKE_SOURCE_DIR}/build/headers")
-include(node_modules/@mapbox/cmake-node-module/module.cmake)
-
-add_library(mbgl-loop-node INTERFACE)
-
-target_sources(mbgl-loop-node INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/async_task.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/run_loop.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/src/mbgl/util/timer.cpp
-)
-
-target_include_directories(mbgl-loop-node INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/include
- ${CMAKE_CURRENT_SOURCE_DIR}/src
-)
-
-create_source_groups(mbgl-loop-node)
-
-
-add_node_module(mbgl-node
- INSTALL_PATH "lib/{node_abi}/mbgl.node"
- NAN_VERSION "2.14.0"
-
- # Don't build for Node 4.x, 5.x, 7.x, 9.x, 11.x, 12.x and 13.x
- # See https://nodejs.org/en/download/releases/ for mapping of Node version to ABI number.
- # Changes to this property should happen in tandem with updates to the version targets
- # in platform/node/scripts/publish.sh and the "node" engines property in package.json.
- EXCLUDE_NODE_ABIS 46 47 51 59 67 72 79
-)
-
-target_sources(mbgl-node INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_mapbox_gl_native.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_mapbox_gl_native.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_logging.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_logging.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_conversion.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_map.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_map.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_request.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_request.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_feature.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_feature.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_expression.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/node_expression.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/node/src/util/async_queue.hpp
-)
-
-target_include_directories(mbgl-node INTERFACE
- ${CMAKE_CURRENT_SOURCE_DIR}/platform/default/include
-)
-
-target_link_libraries(mbgl-node INTERFACE
- mbgl-core
- mbgl-loop-node
- # link against default filesource code, so that the node map
- # can register it's default resource loader.
- mbgl-filesource
-)
-
-set_target_properties(mbgl-node.all PROPERTIES FOLDER "Node.js")
-
-add_custom_target(mbgl-node.active DEPENDS mbgl-node.abi-${NodeJS_ABI})
-set_target_properties(mbgl-node.active PROPERTIES FOLDER "Node.js")
-
-mbgl_platform_node()
-
-create_source_groups(mbgl-node)
-
-foreach(ABI IN LISTS mbgl-node::abis)
- initialize_xcode_cxx_build_settings(mbgl-node.abi-${ABI})
- set_target_properties(mbgl-node.abi-${ABI} PROPERTIES FOLDER "Node.js")
- xcode_create_scheme(
- TARGET mbgl-node.abi-${ABI}
- NAME "mbgl-node (ABI ${ABI})"
- )
-endforeach()
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE library
- NAME "mbgl-node (Active ABI)"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.all
- TYPE library
- NAME "mbgl-node (All ABIs)"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE node
- NAME "node tests (Active ABI)"
- ARGS
- "node_modules/.bin/tape platform/node/test/js/**/*.test.js"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE node
- NAME "node render tests (Active ABI)"
- ARGS
- "-r esm"
- "platform/node/test/render.test.js"
- OPTIONAL_ARGS
- "group"
- "test"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE node
- NAME "node query tests (Active ABI)"
- ARGS
- "-r esm"
- "platform/node/test/query.test.js"
- OPTIONAL_ARGS
- "group"
- "test"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE node
- NAME "node expression tests (Active ABI)"
- ARGS
- "-r esm"
- "platform/node/test/expression.test.js"
- OPTIONAL_ARGS
- "group"
- "test"
-)
-
-xcode_create_scheme(
- TARGET mbgl-node.active
- TYPE node
- NAME "node-benchmark (Active ABI)"
- ARGS
- "-r esm"
- "platform/node/test/benchmark.js"
- OPTIONAL_ARGS
- "group"
- "test"
-)
diff --git a/cmake/node.xcscheme b/cmake/node.xcscheme
deleted file mode 100644
index d873a3d615..0000000000
--- a/cmake/node.xcscheme
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Scheme
- LastUpgradeVersion = "0810"
- version = "1.3">
- <BuildAction
- parallelizeBuildables = "YES"
- buildImplicitDependencies = "YES">
- <BuildActionEntries>
- <BuildActionEntry
- buildForTesting = "YES"
- buildForRunning = "YES"
- buildForProfiling = "YES"
- buildForArchiving = "YES"
- buildForAnalyzing = "YES">
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </BuildActionEntry>
- </BuildActionEntries>
- </BuildAction>
- <TestAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- shouldUseLaunchSchemeArgsEnv = "YES">
- <Testables>
- </Testables>
- <AdditionalOptions>
- </AdditionalOptions>
- </TestAction>
- <LaunchAction
- buildConfiguration = "Debug"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- launchStyle = "0"
- useCustomWorkingDirectory = "YES"
- customWorkingDirectory = "${XCSCHEME_WORKING_DIRECTORY}"
- ignoresPersistentStateOnLaunch = "NO"
- debugDocumentVersioning = "YES"
- debugServiceExtension = "internal"
- allowLocationSimulation = "YES">
- <PathRunnable
- runnableDebuggingMode = "0"
- FilePath = "${XCSCHEME_NODE_EXECUTABLE}">
- </PathRunnable>
- <MacroExpansion>
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </MacroExpansion>
- <CommandLineArguments>${XCSCHEME_COMMAND_LINE_ARGS}
- </CommandLineArguments>
- <EnvironmentVariables>
- <EnvironmentVariable
- key = "PATH"
- value = "${XCSCHEME_NODE_PATH}:$PATH"
- isEnabled = "YES">
- </EnvironmentVariable>
- </EnvironmentVariables>
- </LaunchAction>
- <ProfileAction
- buildConfiguration = "Release"
- shouldUseLaunchSchemeArgsEnv = "YES"
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
- launchStyle = "0"
- useCustomWorkingDirectory = "YES"
- customWorkingDirectory = "${XCSCHEME_WORKING_DIRECTORY}"
- ignoresPersistentStateOnLaunch = "NO"
- debugServiceExtension = "internal"
- allowLocationSimulation = "YES"
- debugDocumentVersioning = "YES">
- <PathRunnable
- runnableDebuggingMode = "0"
- FilePath = "${XCSCHEME_NODE_EXECUTABLE}">
- </PathRunnable>
- <MacroExpansion>
- <BuildableReference
- BuildableIdentifier = "primary"
- BlueprintIdentifier = "${XCSCHEME_BLUEPRINT_ID}"
- BuildableName = "${XCSCHEME_BUILDABLE_NAME}"
- BlueprintName = "${XCSCHEME_BLUEPRINT_NAME}"
- ReferencedContainer = "container:${XCSCHEME_CONTAINER}">
- </BuildableReference>
- </MacroExpansion>
- </ProfileAction>
- <AnalyzeAction
- buildConfiguration = "Debug">
- </AnalyzeAction>
- <ArchiveAction
- buildConfiguration = "Release"
- revealArchiveInOrganizer = "YES">
- </ArchiveAction>
-</Scheme>
diff --git a/cmake/offline.cmake b/cmake/offline.cmake
deleted file mode 100644
index 5a6d4e04cb..0000000000
--- a/cmake/offline.cmake
+++ /dev/null
@@ -1,35 +0,0 @@
-add_executable(mbgl-offline
- bin/offline.cpp
-)
-
-target_include_directories(mbgl-offline
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-offline
- PRIVATE mbgl-core
- PRIVATE Mapbox::Base::Extras::args
-)
-
-mbgl_platform_offline()
-
-create_source_groups(mbgl-offline)
-
-initialize_xcode_cxx_build_settings(mbgl-offline)
-
-set_target_properties(mbgl-offline PROPERTIES FOLDER "Executables")
-
-xcode_create_scheme(
- TARGET mbgl-offline
- OPTIONAL_ARGS
- "--style=file.json"
- "--north=37.2"
- "--west=-122.8"
- "--south=38.1"
- "--east=-121.7"
- "--minZoom=0.0"
- "--maxZoom=15.0"
- "--pixelRatio=1.0"
- "--token="
- "--output=offline.db"
-)
diff --git a/cmake/render-test.cmake b/cmake/render-test.cmake
deleted file mode 100644
index 87f9acefe6..0000000000
--- a/cmake/render-test.cmake
+++ /dev/null
@@ -1,64 +0,0 @@
-add_executable(
- mbgl-render-test
- expression-test/test_runner_common.cpp
- expression-test/test_runner_common.hpp
- platform/default/src/mbgl/render-test/main.cpp
- render-test/file_source.cpp
- render-test/file_source.hpp
- render-test/allocation_index.cpp
- render-test/allocation_index.hpp
- render-test/filesystem.hpp
- render-test/filesystem.hpp
- render-test/include/mbgl/render_test.hpp
- render-test/manifest_parser.cpp
- render-test/manifest_parser.hpp
- render-test/metadata.hpp
- render-test/parser.cpp
- render-test/parser.hpp
- render-test/render_test.cpp
- render-test/runner.cpp
- render-test/runner.hpp
-)
-
-if(APPLE)
- target_link_libraries(
- mbgl-render-test
- PRIVATE mbgl-loop-darwin
- )
-else()
- target_link_libraries(
- mbgl-render-test
- PRIVATE mbgl-loop-uv
- )
-endif()
-
-target_include_directories(
- mbgl-render-test
- PRIVATE src
- PRIVATE platform/default/include
- PRIVATE render-test
-)
-
-target_include_directories(
- mbgl-render-test
- PUBLIC render-test/include
- PUBLIC include
-)
-
-target_link_libraries(
- mbgl-render-test
- PRIVATE
- mbgl-core
- mbgl-filesource
- Mapbox::Base::Extras::args
- Mapbox::Base::Extras::expected-lite
- Mapbox::Base::Extras::filesystem
- Mapbox::Base::pixelmatch-cpp
- Mapbox::Base::Extras::rapidjson
-)
-
-create_source_groups(mbgl-render-test)
-
-set_target_properties(mbgl-render-test PROPERTIES FOLDER "Executables")
-
-add_definitions(-DTEST_RUNNER_ROOT_PATH="${CMAKE_SOURCE_DIR}")
diff --git a/cmake/render.cmake b/cmake/render.cmake
deleted file mode 100644
index e9c6d89c8e..0000000000
--- a/cmake/render.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-add_executable(mbgl-render
- bin/render.cpp
-)
-
-target_include_directories(mbgl-render
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-render
- PRIVATE mbgl-core
- PRIVATE Mapbox::Base::Extras::args
-)
-
-mbgl_platform_render()
-
-create_source_groups(mbgl-render)
-
-initialize_xcode_cxx_build_settings(mbgl-render)
-
-set_target_properties(mbgl-render PROPERTIES FOLDER "Executables")
-
-xcode_create_scheme(
- TARGET mbgl-render
- OPTIONAL_ARGS
- "--style=file.json"
- "--lon=0"
- "--lat=0"
- "--zoom=0"
- "--bearing=0"
- "--pitch=0"
- "--width=512"
- "--height=512"
- "--ratio=1"
- "--token="
- "--debug"
- "--output=out.png"
- "--cache=cache.sqlite"
- "--assets=."
-)
diff --git a/cmake/sqlite.cmake b/cmake/sqlite.cmake
deleted file mode 100644
index cc579b22ac..0000000000
--- a/cmake/sqlite.cmake
+++ /dev/null
@@ -1,47 +0,0 @@
-add_vendor_target(sqlite STATIC)
-
-target_compile_definitions(sqlite
- PRIVATE "-DVERSION=\"3.24.0\""
- PRIVATE "-DSTDC_HEADERS=int"
- PRIVATE "-DHAVE_SYS_TYPES_H=1"
- PRIVATE "-DHAVE_SYS_STAT_H=1"
- PRIVATE "-DHAVE_STDLIB_H=1"
- PRIVATE "-DHAVE_STRING_H=1"
- PRIVATE "-DHAVE_MEMORY_H=1"
- PRIVATE "-DHAVE_STRINGS_H=1"
- PRIVATE "-DHAVE_INTTYPES_H=1"
- PRIVATE "-DHAVE_STDINT_H=1"
- PRIVATE "-DHAVE_UNISTD_H=1"
- PRIVATE "-DHAVE_DLFCN_H=1"
- PRIVATE "-DHAVE_FDATASYNC=1"
- PRIVATE "-DHAVE_USLEEP=1"
- PRIVATE "-DHAVE_LOCALTIME_R=1"
- PRIVATE "-DHAVE_GMTIME_R=1"
- PRIVATE "-DHAVE_DECL_STRERROR_R=1"
- PRIVATE "-DHAVE_STRERROR_R=1"
- PRIVATE "-DHAVE_ZLIB_H=1"
- PRIVATE "-D_REENTRANT=1"
- PRIVATE "-DSQLITE_THREADSAFE=1"
- PRIVATE "-DSQLITE_HAVE_ZLIB"
-
- # These are disabled on purpose, since we're not using these features.
- # PRIVATE "-DSQLITE_ENABLE_FTS5"
- # PRIVATE "-DSQLITE_ENABLE_JSON1"
- # PRIVATE "-DSQLITE_ENABLE_FTS3"
- # PRIVATE "-DSQLITE_ENABLE_RTREE"
-)
-
-target_compile_options(sqlite
- PRIVATE "-Wno-int-conversion"
- PRIVATE "-Wno-implicit-fallthrough"
-)
-
-if(CMAKE_COMPILER_IS_GNUCXX)
- if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 8.0)
- target_compile_options(sqlite PRIVATE "-Wno-cast-function-type")
- else()
- target_compile_options(sqlite PRIVATE "-Wno-bad-function-cast")
- endif()
-elseif(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
- target_compile_options(sqlite PRIVATE "-Wno-cast-function-type")
-endif()
diff --git a/cmake/test.cmake b/cmake/test.cmake
deleted file mode 100644
index 405552423c..0000000000
--- a/cmake/test.cmake
+++ /dev/null
@@ -1,51 +0,0 @@
-# scripts/generate-file-lists.js to change the source files for this target.
-load_sources_list(MBGL_TEST_FILES test/test-files.json)
-if (MBGL_TEST_TARGET_TYPE STREQUAL "library")
- add_library(mbgl-test SHARED ${MBGL_TEST_FILES})
-else()
- add_executable(mbgl-test ${MBGL_TEST_FILES})
-endif()
-
-# GCC 8+ trips over GTest's way of defining Test functions
-target_compile_options(mbgl-test PRIVATE -Wno-shadow)
-
-if(NOT WITH_NODEJS)
- target_compile_definitions(mbgl-test PRIVATE "-DTEST_HAS_SERVER=0")
-endif()
-
-set_source_files_properties(test/src/mbgl/test/util.cpp PROPERTIES COMPILE_FLAGS -DNODE_EXECUTABLE="${NodeJS_EXECUTABLE}")
-
-target_include_directories(mbgl-test
- PRIVATE src
- PRIVATE test/include
- PRIVATE test/src
- PRIVATE platform/default/include
-)
-
-target_link_libraries(mbgl-test PRIVATE
- mbgl-vendor-googletest
- Mapbox::Base::Extras::args
- mbgl-core
- mbgl-vendor-shelf-pack-cpp
- mbgl-vendor-unique_resource
- Mapbox::Base::pixelmatch-cpp
-)
-
-mbgl_platform_test()
-
-create_source_groups(mbgl-test)
-
-initialize_xcode_cxx_build_settings(mbgl-test)
-
-set_target_properties(mbgl-test PROPERTIES FOLDER "Executables")
-
-xcode_create_scheme(
- TARGET mbgl-test
- OPTIONAL_ARGS
- "--gtest_filter=Category.*"
- "--gtest_repeat=0"
- "--gtest_shuffle=0"
- "--gtest_break_on_failure=0"
- "--gtest_throw_on_failure=0"
- "--gtest_catch_exceptions=0"
- )
diff --git a/cmake/vendor.cmake b/cmake/vendor.cmake
deleted file mode 100644
index e87a2e5c41..0000000000
--- a/cmake/vendor.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-execute_process(
- COMMAND git submodule update --init .
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/vendor
-)
-
-include(${CMAKE_SOURCE_DIR}/vendor/benchmark.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/boost.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/cheap-ruler-cpp.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/earcut.hpp.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/eternal.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/geojson-vt-cpp.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/googletest.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/icu.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/nunicode.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/polylabel.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/protozero.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/shelf-pack-cpp.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/unique_resource.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/vector-tile.cmake)
-include(${CMAKE_SOURCE_DIR}/vendor/wagyu.cmake)
-
-if(NOT TARGET mapbox-base)
- add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/vendor/mapbox-base ${CMAKE_BINARY_DIR}/.build-mapbox-gl-native-mapbox-base EXCLUDE_FROM_ALL)
-endif()
-
-if(MBGL_PLATFORM STREQUAL "linux" OR MBGL_PLATFORM STREQUAL "macos")
- include(${CMAKE_SOURCE_DIR}/vendor/glfw.cmake)
-endif()
diff --git a/cmake/xcode.cmake b/cmake/xcode.cmake
deleted file mode 100644
index 3537009330..0000000000
--- a/cmake/xcode.cmake
+++ /dev/null
@@ -1,75 +0,0 @@
-function(get_target_filename OUTPUT TARGET)
- get_target_property(_TYPE "${TARGET}" TYPE)
- get_target_property(_PREFIX "${TARGET}" PREFIX)
- if(NOT _PREFIX AND NOT _PREFIX STREQUAL "")
- set(_PREFIX "${CMAKE_${_TYPE}_PREFIX}")
- endif()
- get_target_property(_BASENAME "${TARGET}" OUTPUT_NAME)
- if(NOT _BASENAME)
- get_target_property(_BASENAME "${TARGET}" NAME)
- endif()
- get_target_property(_SUFFIX "${TARGET}" SUFFIX)
- if(NOT _SUFFIX AND NOT _SUFFIX STREQUAL "")
- set(_SUFFIX "${CMAKE_${_TYPE}_SUFFIX}")
- endif()
- set(${OUTPUT} "${_PREFIX}${_BASENAME}${_SUFFIX}" PARENT_SCOPE)
-endfunction()
-
-function(xcode_create_scheme)
- if (NOT CMAKE_GENERATOR STREQUAL "Xcode")
- return()
- endif()
-
- cmake_parse_arguments(XCSCHEME "" "TARGET;TYPE;NAME" "ARGS;OPTIONAL_ARGS" ${ARGN})
-
- if(XCSCHEME_UNPARSED_ARGUMENTS)
- message(FATAL_ERROR "xcode_create_scheme() called with unrecognized arguments: ${XCSCHEME_UNPARSED_ARGUMENTS}")
- endif()
-
- if(NOT XCSCHEME_TARGET)
- message(FATAL_ERROR "xcode_create_scheme() called without required argument TARGET")
- endif()
-
- if(NOT XCSCHEME_TYPE)
- get_target_property(_TYPE "${XCSCHEME_TARGET}" TYPE)
- if (_TYPE MATCHES "^.*_LIBRARY$")
- set(XCSCHEME_TYPE "library")
- elseif(_TYPE STREQUAL "EXECUTABLE")
- set(XCSCHEME_TYPE "executable")
- else()
- message(FATAL_ERROR "xcode_create_scheme() could not determine type of ${XCSCHEME_TARGET}")
- endif()
- endif()
-
- if(NOT XCSCHEME_NAME)
- set(XCSCHEME_NAME "${XCSCHEME_TARGET}")
- endif()
-
- set(XCODEPROJ_PATH "${PROJECT_BINARY_DIR}/${PROJECT_NAME}.xcodeproj")
- set(XCSCHEME_OUTPUT_FILE "${XCODEPROJ_PATH}/xcshareddata/xcschemes/${XCSCHEME_NAME}.xcscheme")
-
- # Prevent overwriting of the scheme file on every CMake rerun.
- if (EXISTS "${XCSCHEME_OUTPUT_FILE}")
- return()
- endif()
-
- file(RELATIVE_PATH XCSCHEME_CONTAINER "${CMAKE_SOURCE_DIR}" "${XCODEPROJ_PATH}")
- string(RANDOM LENGTH 24 ALPHABET "0123456789ABCDEF" XCSCHEME_BLUEPRINT_ID)
- get_target_filename(XCSCHEME_BUILDABLE_NAME "${XCSCHEME_TARGET}")
- set(XCSCHEME_BLUEPRINT_NAME "${XCSCHEME_TARGET}")
- set(XCSCHEME_WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}")
- set(XCSCHEME_NODE_EXECUTABLE "${NodeJS_EXECUTABLE}")
- get_filename_component(XCSCHEME_NODE_PATH "${NodeJS_EXECUTABLE}" DIRECTORY)
-
- set(XCSCHEME_COMMAND_LINE_ARGS "")
- foreach(_ARG IN LISTS XCSCHEME_ARGS)
- set(XCSCHEME_COMMAND_LINE_ARGS "${XCSCHEME_COMMAND_LINE_ARGS}\n <CommandLineArgument\n argument = \"${_ARG}\"\n isEnabled = \"YES\">\n </CommandLineArgument>")
- endforeach()
- foreach(_ARG IN LISTS XCSCHEME_OPTIONAL_ARGS)
- set(XCSCHEME_COMMAND_LINE_ARGS "${XCSCHEME_COMMAND_LINE_ARGS}\n <CommandLineArgument\n argument = \"${_ARG}\"\n isEnabled = \"NO\">\n </CommandLineArgument>")
- endforeach()
-
- configure_file(
- "${CMAKE_SOURCE_DIR}/cmake/${XCSCHEME_TYPE}.xcscheme"
- "${XCSCHEME_OUTPUT_FILE}")
-endfunction()
diff --git a/platform/darwin/filesource-files.json b/platform/darwin/filesource-files.json
deleted file mode 100644
index 4b2fe21c06..0000000000
--- a/platform/darwin/filesource-files.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/darwin/src/MGLLoggingConfiguration.mm",
- "platform/darwin/src/MGLNetworkConfiguration.m",
- "platform/darwin/src/http_file_source.mm",
- "platform/default/src/mbgl/storage/sqlite3.cpp"
- ],
- "public_headers": {},
- "private_headers": {}
-}
diff --git a/platform/darwin/loop-files.json b/platform/darwin/loop-files.json
deleted file mode 100644
index 9f99f39766..0000000000
--- a/platform/darwin/loop-files.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/darwin/src/async_task.cpp",
- "platform/darwin/src/run_loop.cpp",
- "platform/darwin/src/timer.cpp"
- ],
- "public_headers": {},
- "private_headers": {}
-}
diff --git a/platform/default/filesource-files.json b/platform/default/filesource-files.json
deleted file mode 100644
index 72e76670b8..0000000000
--- a/platform/default/filesource-files.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/default/src/mbgl/storage/asset_file_source.cpp",
- "platform/default/src/mbgl/storage/database_file_source.cpp",
- "platform/default/src/mbgl/storage/file_source_manager.cpp",
- "platform/default/src/mbgl/storage/file_source_request.cpp",
- "platform/default/src/mbgl/storage/local_file_request.cpp",
- "platform/default/src/mbgl/storage/local_file_source.cpp",
- "platform/default/src/mbgl/storage/main_resource_loader.cpp",
- "platform/default/src/mbgl/storage/offline.cpp",
- "platform/default/src/mbgl/storage/offline_database.cpp",
- "platform/default/src/mbgl/storage/offline_download.cpp",
- "platform/default/src/mbgl/storage/online_file_source.cpp"
- ],
- "public_headers": {
- "mbgl/storage/offline_file_source.hpp": "include/mbgl/storage/database_file_source.hpp",
- "mbgl/storage/offline.hpp": "include/mbgl/storage/offline.hpp",
- "mbgl/storage/online_file_source.hpp": "include/mbgl/storage/online_file_source.hpp",
- "mbgl/storage/file_source_manager.hpp": "include/mbgl/storage/file_source_manager.hpp",
- "mbgl/storage/file_source_request.hpp": "platform/default/include/mbgl/storage/file_source_request.hpp",
- "mbgl/storage/local_file_request.hpp": "platform/default/include/mbgl/storage/local_file_request.hpp",
- "mbgl/storage/merge_sideloaded.hpp": "platform/default/include/mbgl/storage/merge_sideloaded.hpp",
- "mbgl/storage/offline_database.hpp": "platform/default/include/mbgl/storage/offline_database.hpp",
- "mbgl/storage/offline_download.hpp": "platform/default/include/mbgl/storage/offline_download.hpp",
- "mbgl/storage/offline_schema.hpp": "platform/default/include/mbgl/storage/offline_schema.hpp",
- "mbgl/storage/sqlite3.hpp": "platform/default/include/mbgl/storage/sqlite3.hpp"
- },
- "private_headers": {
- "mbgl/storage/main_resource_loader.hpp": "src/mbgl/storage/main_resource_loader.hpp",
- "mbgl/storage/asset_file_source.hpp": "src/mbgl/storage/asset_file_source.hpp",
- "mbgl/storage/http_file_source.hpp": "src/mbgl/storage/http_file_source.hpp",
- "mbgl/storage/local_file_source.hpp": "src/mbgl/storage/local_file_source.hpp"
- }
-}
diff --git a/platform/ios/config.cmake b/platform/ios/config.cmake
deleted file mode 100644
index 7f15355876..0000000000
--- a/platform/ios/config.cmake
+++ /dev/null
@@ -1,53 +0,0 @@
-set(USE_GLES2 ON)
-
-macro(initialize_ios_target target)
- set_xcode_property(${target} IPHONEOS_DEPLOYMENT_TARGET "9.0")
- set_xcode_property(${target} ENABLE_BITCODE "YES")
- set_xcode_property(${target} BITCODE_GENERATION_MODE bitcode)
- set_xcode_property(${target} ONLY_ACTIVE_ARCH $<$<CONFIG:Debug>:YES>)
-
- target_compile_options(${target}
- PRIVATE -fobjc-arc
- )
-endmacro()
-
-
-include(cmake/loop-darwin.cmake)
-initialize_ios_target(mbgl-vendor-icu)
-initialize_ios_target(mbgl-loop-darwin)
-
-
-macro(mbgl_platform_core)
- initialize_ios_target(mbgl-core)
-
- target_sources_from_file(mbgl-core PRIVATE platform/ios/core-files.json)
-
- target_include_directories(mbgl-core
- PUBLIC platform/darwin/include
- PUBLIC platform/default/include
- )
-
- target_link_libraries(mbgl-core
- PUBLIC "-lz"
- PUBLIC "-framework Foundation"
- PUBLIC "-framework CoreText"
- PUBLIC "-framework CoreGraphics"
- PUBLIC "-framework OpenGLES"
- PUBLIC "-framework ImageIO"
- PUBLIC "-framework MobileCoreServices"
- PUBLIC "-framework SystemConfiguration"
- )
-endmacro()
-
-
-macro(mbgl_filesource)
- initialize_ios_target(mbgl-filesource)
-
- # Modify platform/darwin/filesource-files.json to change the source files for this target.
- target_sources_from_file(mbgl-filesource PRIVATE platform/darwin/filesource-files.json)
-
- target_link_libraries(mbgl-filesource
- PUBLIC "-lsqlite3"
- PUBLIC "-framework Foundation"
- )
-endmacro()
diff --git a/platform/ios/core-files.json b/platform/ios/core-files.json
deleted file mode 100644
index 44b3cf76aa..0000000000
--- a/platform/ios/core-files.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/darwin/src/collator.mm",
- "platform/darwin/src/gl_functions.cpp",
- "platform/darwin/src/headless_backend_eagl.mm",
- "platform/darwin/src/image.mm",
- "platform/darwin/src/local_glyph_rasterizer.mm",
- "platform/darwin/src/logging_nslog.mm",
- "platform/darwin/src/number_format.mm",
- "platform/darwin/src/nsthread.mm",
- "platform/darwin/src/reachability.m",
- "platform/darwin/src/string_nsstring.mm",
- "platform/default/src/mbgl/gfx/headless_backend.cpp",
- "platform/default/src/mbgl/gfx/headless_frontend.cpp",
- "platform/default/src/mbgl/gl/headless_backend.cpp",
- "platform/default/src/mbgl/map/map_snapshotter.cpp",
- "platform/default/src/mbgl/text/bidi.cpp",
- "platform/default/src/mbgl/util/compression.cpp",
- "platform/default/src/mbgl/util/monotonic_timer.cpp",
- "platform/default/src/mbgl/util/png_writer.cpp",
- "platform/default/src/mbgl/util/thread_local.cpp",
- "platform/default/src/mbgl/util/utf.cpp",
- "platform/darwin/src/native_apple_interface.m"
- ],
- "public_headers": {
- "mbgl/storage/reachability.h": "platform/darwin/include/mbgl/storage/reachability.h",
- "mbgl/interface/native_apple_interface.h": "platform/darwin/include/mbgl/interface/native_apple_interface.h",
- "mbgl/util/image+MGLAdditions.hpp": "platform/darwin/include/mbgl/util/image+MGLAdditions.hpp",
- "mbgl/gfx/headless_backend.hpp": "platform/default/include/mbgl/gfx/headless_backend.hpp",
- "mbgl/gfx/headless_frontend.hpp": "platform/default/include/mbgl/gfx/headless_frontend.hpp",
- "mbgl/gl/headless_backend.hpp": "platform/default/include/mbgl/gl/headless_backend.hpp",
- "mbgl/map/map_snapshotter.hpp": "platform/default/include/mbgl/map/map_snapshotter.hpp"
- },
- "private_headers": {
- "CFHandle.hpp": "platform/darwin/src/CFHandle.hpp"
- }
-}
diff --git a/platform/ios/sdk-files.json b/platform/ios/sdk-files.json
deleted file mode 100644
index 47dacb7cce..0000000000
--- a/platform/ios/sdk-files.json
+++ /dev/null
@@ -1,318 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDate.m",
- "platform/darwin/src/MGLBackgroundStyleLayer.mm",
- "platform/darwin/src/NSComparisonPredicate+MGLAdditions.mm",
- "platform/darwin/src/NSURL+MGLAdditions.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEvent.m",
- "platform/ios/src/MGLSDKUpdateChecker.mm",
- "platform/ios/src/MGLUserLocationAnnotationView.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventsConfiguration.m",
- "platform/ios/src/MGLFaux3DUserLocationAnnotationView.m",
- "platform/darwin/src/MGLFeature.mm",
- "platform/ios/src/UIImage+MGLAdditions.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEMetricsManager.m",
- "platform/ios/src/MGLMapView+Impl.mm",
- "platform/ios/src/MGLAnnotationContainerView.m",
- "platform/ios/src/MGLCompactCalloutView.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDependencyManager.m",
- "platform/darwin/src/MGLPointAnnotation.mm",
- "platform/ios/src/MGLMapView+OpenGL.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEConstants.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEPinningConfigurationProvider.m",
- "platform/ios/src/MGLAnnotationView.mm",
- "platform/darwin/src/MGLCircleStyleLayer.mm",
- "platform/ios/src/UIViewController+MGLAdditions.m",
- "platform/darwin/src/NSValue+MGLStyleAttributeAdditions.mm",
- "platform/darwin/src/MGLVectorStyleLayer.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUniqueIdentifier.m",
- "platform/darwin/src/MGLShapeSource.mm",
- "platform/ios/src/UIDevice+MGLAdditions.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMECertPin.m",
- "platform/darwin/src/NSArray+MGLAdditions.mm",
- "platform/ios/src/UIView+MGLAdditions.m",
- "platform/ios/src/NSOrthography+MGLAdditions.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDispatchManager.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMETimerManager.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/CLLocation+MMEMobileEvents.m",
- "platform/darwin/src/MGLRasterStyleLayer.mm",
- "platform/darwin/src/MGLForegroundStyleLayer.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventLogReportViewController.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEConfigurator.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/NSData+MMEGZIP.m",
- "platform/darwin/src/MGLAttributionInfo.mm",
- "platform/darwin/src/NSBundle+MGLAdditions.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUINavigation.m",
- "platform/ios/src/MGLUserLocationHeadingArrowLayer.m",
- "platform/ios/src/MGLUserLocation.m",
- "platform/darwin/src/MGLMapSnapshotter.mm",
- "platform/darwin/src/MGLVectorTileSource.mm",
- "platform/darwin/src/MGLRasterTileSource.mm",
- "platform/ios/vendor/SMCalloutView/SMCalloutView.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/MMECategoryLoader.m",
- "platform/darwin/src/MGLSource.mm",
- "platform/darwin/src/MGLLight.mm",
- "platform/darwin/src/MGLClockDirectionFormatter.m",
- "platform/darwin/src/MGLShapeCollection.mm",
- "platform/darwin/src/MGLHillshadeStyleLayer.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/UIKit+MMEMobileEvents.m",
- "platform/darwin/src/MGLSymbolStyleLayer.mm",
- "platform/darwin/src/MGLLoggingConfiguration.mm",
- "platform/darwin/src/MGLStyleValue.mm",
- "platform/darwin/src/MGLNetworkIntegrationManager.m",
- "platform/darwin/src/MGLOfflinePack.mm",
- "platform/darwin/src/MGLComputedShapeSource.mm",
- "platform/darwin/src/MGLDistanceFormatter.m",
- "platform/ios/src/MGLMapboxEvents.m",
- "platform/darwin/src/MGLSDKMetricsManager.m",
- "platform/ios/src/MGLCompassButton.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEAPIClient.m",
- "platform/ios/src/MGLMapView.mm",
- "platform/ios/src/MGLAnnotationImage.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMELocationManager.m",
- "platform/darwin/src/MGLShape.mm",
- "platform/darwin/src/MGLCompassDirectionFormatter.m",
- "platform/darwin/src/MGLNetworkConfiguration.m",
- "platform/darwin/src/MGLStyleLayer.mm",
- "platform/darwin/src/MGLStyleLayerManager.mm",
- "platform/darwin/src/NSValue+MGLAdditions.m",
- "platform/darwin/src/MGLImageSource.mm",
- "platform/darwin/src/NSString+MGLAdditions.m",
- "platform/darwin/src/NSDictionary+MGLAdditions.mm",
- "platform/darwin/src/MGLCoordinateFormatter.m",
- "platform/darwin/src/MGLShapeOfflineRegion.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEMetrics.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUIApplicationWrapper.m",
- "platform/darwin/src/MGLStyle.mm",
- "platform/darwin/src/NSCoder+MGLAdditions.mm",
- "platform/darwin/src/MGLAttributedExpression.m",
- "platform/darwin/src/MGLGeometry.mm",
- "platform/darwin/src/MGLFoundation.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMECommonEventData.m",
- "platform/darwin/src/NSExpression+MGLAdditions.mm",
- "platform/darwin/src/MGLMultiPoint.mm",
- "platform/darwin/src/MGLTypes.m",
- "platform/darwin/src/MGLFillExtrusionStyleLayer.mm",
- "platform/darwin/src/MGLTileSource.mm",
- "platform/ios/src/MGLScaleBar.mm",
- "platform/darwin/src/MGLMapCamera.mm",
- "platform/darwin/src/MGLRasterDEMSource.mm",
- "platform/darwin/src/MGLPolygon.mm",
- "platform/darwin/src/NSPredicate+MGLAdditions.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Reachability/MMEReachability.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMENSURLSessionWrapper.m",
- "platform/ios/src/MGLUserLocationHeadingBeamLayer.m",
- "platform/darwin/src/MGLHeatmapStyleLayer.mm",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventLogger.m",
- "platform/darwin/src/NSDate+MGLAdditions.mm",
- "platform/darwin/src/MGLLocationManager.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/CLLocationManager+MMEMobileEvents.m",
- "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventsManager.m",
- "platform/darwin/src/MGLFillStyleLayer.mm",
- "platform/darwin/src/MGLOfflineStorage.mm",
- "platform/darwin/src/MGLTilePyramidOfflineRegion.mm",
- "platform/darwin/src/MGLPointCollection.mm",
- "platform/darwin/src/MGLLineStyleLayer.mm",
- "platform/ios/src/MGLMapAccessibilityElement.mm",
- "platform/darwin/src/MGLOpenGLStyleLayer.mm",
- "platform/darwin/src/MGLAccountManager.m",
- "platform/darwin/src/NSCompoundPredicate+MGLAdditions.mm",
- "platform/ios/src/MGLTelemetryConfig.m",
- "platform/darwin/src/MGLPolyline.mm",
- "platform/ios/src/UIColor+MGLAdditions.mm",
- "platform/darwin/src/MGLRendererConfiguration.mm"
- ],
- "public_headers": {
- "MGLFoundation.h": "platform/darwin/src/MGLFoundation.h",
- "MGLShapeOfflineRegion.h": "platform/darwin/src/MGLShapeOfflineRegion.h",
- "MGLFillStyleLayer.h": "platform/darwin/src/MGLFillStyleLayer.h",
- "MGLAnnotationImage.h": "platform/ios/src/MGLAnnotationImage.h",
- "MGLHillshadeStyleLayer.h": "platform/darwin/src/MGLHillshadeStyleLayer.h",
- "MGLCluster.h": "platform/darwin/src/MGLCluster.h",
- "MGLClockDirectionFormatter.h": "platform/darwin/src/MGLClockDirectionFormatter.h",
- "MGLSymbolStyleLayer.h": "platform/darwin/src/MGLSymbolStyleLayer.h",
- "MGLAttributionInfo.h": "platform/darwin/src/MGLAttributionInfo.h",
- "MGLPolyline.h": "platform/darwin/src/MGLPolyline.h",
- "MGLStyleLayer.h": "platform/darwin/src/MGLStyleLayer.h",
- "MGLCameraChangeReason.h": "platform/ios/src/MGLCameraChangeReason.h",
- "MGLCalloutView.h": "platform/ios/src/MGLCalloutView.h",
- "NSExpression+MGLAdditions.h": "platform/darwin/src/NSExpression+MGLAdditions.h",
- "MGLShape.h": "platform/darwin/src/MGLShape.h",
- "MGLBackgroundStyleLayer.h": "platform/darwin/src/MGLBackgroundStyleLayer.h",
- "MGLStyle.h": "platform/darwin/src/MGLStyle.h",
- "MGLUserLocationAnnotationView.h": "platform/ios/src/MGLUserLocationAnnotationView.h",
- "MGLAnnotation.h": "platform/darwin/src/MGLAnnotation.h",
- "MGLCompassButton.h": "platform/ios/src/MGLCompassButton.h",
- "MGLLight.h": "platform/darwin/src/MGLLight.h",
- "MGLPointCollection.h": "platform/darwin/src/MGLPointCollection.h",
- "MGLAnnotationView.h": "platform/ios/src/MGLAnnotationView.h",
- "MGLFillExtrusionStyleLayer.h": "platform/darwin/src/MGLFillExtrusionStyleLayer.h",
- "MGLRasterStyleLayer.h": "platform/darwin/src/MGLRasterStyleLayer.h",
- "MGLAccountManager.h": "platform/darwin/src/MGLAccountManager.h",
- "NSValue+MGLAdditions.h": "platform/darwin/src/NSValue+MGLAdditions.h",
- "MGLVectorStyleLayer.h": "platform/darwin/src/MGLVectorStyleLayer.h",
- "MGLNetworkConfiguration.h": "platform/darwin/src/MGLNetworkConfiguration.h",
- "MGLComputedShapeSource.h": "platform/darwin/src/MGLComputedShapeSource.h",
- "MGLSDKMetricsManager.h": "platform/darwin/src/MGLSDKMetricsManager.h",
- "MGLLoggingConfiguration.h": "platform/darwin/src/MGLLoggingConfiguration.h",
- "MGLLocationManager.h": "platform/darwin/src/MGLLocationManager.h",
- "MGLRasterDEMSource.h": "platform/darwin/src/MGLRasterDEMSource.h",
- "MGLLineStyleLayer.h": "platform/darwin/src/MGLLineStyleLayer.h",
- "MGLImageSource.h": "platform/darwin/src/MGLImageSource.h",
- "MGLOfflinePack.h": "platform/darwin/src/MGLOfflinePack.h",
- "MGLUserLocation.h": "platform/ios/src/MGLUserLocation.h",
- "MGLMapView+IBAdditions.h": "platform/ios/src/MGLMapView+IBAdditions.h",
- "MGLShapeCollection.h": "platform/darwin/src/MGLShapeCollection.h",
- "MGLShapeSource.h": "platform/darwin/src/MGLShapeSource.h",
- "NSPredicate+MGLAdditions.h": "platform/darwin/src/NSPredicate+MGLAdditions.h",
- "MGLMapSnapshotter.h": "platform/darwin/src/MGLMapSnapshotter.h",
- "MGLCoordinateFormatter.h": "platform/darwin/src/MGLCoordinateFormatter.h",
- "MGLStyleValue.h": "platform/darwin/src/MGLStyleValue.h",
- "MGLOverlay.h": "platform/darwin/src/MGLOverlay.h",
- "MGLCompassDirectionFormatter.h": "platform/darwin/src/MGLCompassDirectionFormatter.h",
- "MGLTypes.h": "platform/darwin/src/MGLTypes.h",
- "MGLGeometry.h": "platform/darwin/src/MGLGeometry.h",
- "MGLSource.h": "platform/darwin/src/MGLSource.h",
- "MGLRasterTileSource.h": "platform/darwin/src/MGLRasterTileSource.h",
- "MGLPolygon.h": "platform/darwin/src/MGLPolygon.h",
- "MGLPointAnnotation.h": "platform/darwin/src/MGLPointAnnotation.h",
- "MGLHeatmapStyleLayer.h": "platform/darwin/src/MGLHeatmapStyleLayer.h",
- "MGLCircleStyleLayer.h": "platform/darwin/src/MGLCircleStyleLayer.h",
- "MGLMultiPoint.h": "platform/darwin/src/MGLMultiPoint.h",
- "MGLAttributedExpression.h": "platform/darwin/src/MGLAttributedExpression.h",
- "MGLFeature.h": "platform/darwin/src/MGLFeature.h",
- "MGLMapCamera.h": "platform/darwin/src/MGLMapCamera.h",
- "MGLForegroundStyleLayer.h": "platform/darwin/src/MGLForegroundStyleLayer.h",
- "MGLOfflineRegion.h": "platform/darwin/src/MGLOfflineRegion.h",
- "MGLMapViewDelegate.h": "platform/ios/src/MGLMapViewDelegate.h",
- "MGLDistanceFormatter.h": "platform/darwin/src/MGLDistanceFormatter.h",
- "MGLOpenGLStyleLayer.h": "platform/darwin/src/MGLOpenGLStyleLayer.h",
- "MGLTileSource.h": "platform/darwin/src/MGLTileSource.h",
- "MGLTilePyramidOfflineRegion.h": "platform/darwin/src/MGLTilePyramidOfflineRegion.h",
- "MGLVectorTileSource.h": "platform/darwin/src/MGLVectorTileSource.h",
- "MGLOfflineStorage.h": "platform/darwin/src/MGLOfflineStorage.h",
- "MGLMapView.h": "platform/ios/src/MGLMapView.h",
- "Mapbox/Mapbox.h": "platform/ios/src/Mapbox.h"
- },
- "private_headers": {
- "MGLFillStyleLayer_Private.h": "platform/darwin/src/MGLFillStyleLayer_Private.h",
- "MGLOfflinePack_Private.h": "platform/darwin/src/MGLOfflinePack_Private.h",
- "MGLCompassButton_Private.h": "platform/ios/src/MGLCompassButton_Private.h",
- "MGLSource_Private.h": "platform/darwin/src/MGLSource_Private.h",
- "MGLAnnotationView_Private.h": "platform/ios/src/MGLAnnotationView_Private.h",
- "MGLValueEvaluator.h": "platform/darwin/src/MGLValueEvaluator.h",
- "NSBundle+MGLAdditions.h": "platform/darwin/src/NSBundle+MGLAdditions.h",
- "MGLBackgroundStyleLayer_Private.h": "platform/darwin/src/MGLBackgroundStyleLayer_Private.h",
- "MGLHillshadeStyleLayer_Private.h": "platform/darwin/src/MGLHillshadeStyleLayer_Private.h",
- "NSCoder+MGLAdditions.h": "platform/darwin/src/NSCoder+MGLAdditions.h",
- "MGLComputedShapeSource_Private.h": "platform/darwin/src/MGLComputedShapeSource_Private.h",
- "MGLPolyline_Private.h": "platform/darwin/src/MGLPolyline_Private.h",
- "MGLShapeSource_Private.h": "platform/darwin/src/MGLShapeSource_Private.h",
- "NSData+MMEGZIP.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/NSData+MMEGZIP.h",
- "NSValue+MGLStyleAttributeAdditions.h": "platform/darwin/src/NSValue+MGLStyleAttributeAdditions.h",
- "MGLLineStyleLayer_Private.h": "platform/darwin/src/MGLLineStyleLayer_Private.h",
- "MGLRasterStyleLayer_Private.h": "platform/darwin/src/MGLRasterStyleLayer_Private.h",
- "MGLOfflineStorage_Private.h": "platform/darwin/src/MGLOfflineStorage_Private.h",
- "MGLAnnotationContainerView_Private.h": "platform/ios/src/MGLAnnotationContainerView_Private.h",
- "MGLStyle_Private.h": "platform/darwin/src/MGLStyle_Private.h",
- "MMECategoryLoader.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/MMECategoryLoader.h",
- "MGLHeatmapStyleLayer_Private.h": "platform/darwin/src/MGLHeatmapStyleLayer_Private.h",
- "NSPredicate+MGLPrivateAdditions.h": "platform/darwin/src/NSPredicate+MGLPrivateAdditions.h",
- "MGLSDKMetricsManager_Private.h": "platform/darwin/src/MGLSDKMetricsManager_Private.h",
- "MGLNetworkConfiguration_Private.h": "platform/darwin/src/MGLNetworkConfiguration_Private.h",
- "NSDate+MGLAdditions.h": "platform/darwin/src/NSDate+MGLAdditions.h",
- "MGLCompactCalloutView.h": "platform/ios/src/MGLCompactCalloutView.h",
- "MGLStyleLayerManager.h": "platform/darwin/src/MGLStyleLayerManager.h",
- "MGLUserLocation_Private.h": "platform/ios/src/MGLUserLocation_Private.h",
- "MGLUserLocationHeadingArrowLayer.h": "platform/ios/src/MGLUserLocationHeadingArrowLayer.h",
- "MGLAccountManager_Private.h": "platform/darwin/src/MGLAccountManager_Private.h",
- "UIViewController+MGLAdditions.h": "platform/ios/src/UIViewController+MGLAdditions.h",
- "MGLVectorTileSource_Private.h": "platform/darwin/src/MGLVectorTileSource_Private.h",
- "MGLCircleStyleLayer_Private.h": "platform/darwin/src/MGLCircleStyleLayer_Private.h",
- "NSArray+MGLAdditions.h": "platform/darwin/src/NSArray+MGLAdditions.h",
- "MGLShape_Private.h": "platform/darwin/src/MGLShape_Private.h",
- "MGLPolygon_Private.h": "platform/darwin/src/MGLPolygon_Private.h",
- "MGLStyleLayer_Private.h": "platform/darwin/src/MGLStyleLayer_Private.h",
- "UIView+MGLAdditions.h": "platform/ios/src/UIView+MGLAdditions.h",
- "MGLLocationManager_Private.h": "platform/darwin/src/MGLLocationManager_Private.h",
- "MGLMapView+OpenGL.h": "platform/ios/src/MGLMapView+OpenGL.h",
- "MGLLoggingConfiguration_Private.h": "platform/darwin/src/MGLLoggingConfiguration_Private.h",
- "NSComparisonPredicate+MGLAdditions.h": "platform/darwin/src/NSComparisonPredicate+MGLAdditions.h",
- "MGLMapAccessibilityElement.h": "platform/ios/src/MGLMapAccessibilityElement.h",
- "MGLScaleBar.h": "platform/ios/src/MGLScaleBar.h",
- "MMEDate.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDate.h",
- "NSString+MGLAdditions.h": "platform/darwin/src/NSString+MGLAdditions.h",
- "UIDevice+MGLAdditions.h": "platform/ios/src/UIDevice+MGLAdditions.h",
- "MGLMapSnapshotter_Private.h": "platform/darwin/src/MGLMapSnapshotter_Private.h",
- "MGLRendererFrontend.h": "platform/darwin/src/MGLRendererFrontend.h",
- "MGLStyleValue_Private.h": "platform/darwin/src/MGLStyleValue_Private.h",
- "MGLFillExtrusionStyleLayer_Private.h": "platform/darwin/src/MGLFillExtrusionStyleLayer_Private.h",
- "NSException+MGLAdditions.h": "platform/darwin/src/NSException+MGLAdditions.h",
- "MGLSymbolStyleLayer_Private.h": "platform/darwin/src/MGLSymbolStyleLayer_Private.h",
- "MGLTilePyramidOfflineRegion_Private.h": "platform/darwin/src/MGLTilePyramidOfflineRegion_Private.h",
- "MGLUserLocationHeadingIndicator.h": "platform/ios/src/MGLUserLocationHeadingIndicator.h",
- "NSDictionary+MGLAdditions.h": "platform/darwin/src/NSDictionary+MGLAdditions.h",
- "UIKit+MMEMobileEvents.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/UIKit+MMEMobileEvents.h",
- "MGLFoundation_Private.h": "platform/darwin/src/MGLFoundation_Private.h",
- "MGLUserLocationHeadingBeamLayer.h": "platform/ios/src/MGLUserLocationHeadingBeamLayer.h",
- "MMECertPin.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMECertPin.h",
- "MGLMapView_Private.h": "platform/ios/src/MGLMapView_Private.h",
- "MGLMapboxEvents.h": "platform/ios/src/MGLMapboxEvents.h",
- "NSURL+MGLAdditions.h": "platform/darwin/src/NSURL+MGLAdditions.h",
- "MGLMultiPoint_Private.h": "platform/darwin/src/MGLMultiPoint_Private.h",
- "UIColor+MGLAdditions.h": "platform/ios/src/UIColor+MGLAdditions.h",
- "MGLAttributionInfo_Private.h": "platform/darwin/src/MGLAttributionInfo_Private.h",
- "MBXSKUToken.h": "platform/ios/vendor/mapbox-accounts-ios/MBXSKUToken.h",
- "SMCalloutView.h": "platform/ios/vendor/SMCalloutView/SMCalloutView.h",
- "MGLOfflineRegion_Private.h": "platform/darwin/src/MGLOfflineRegion_Private.h",
- "MMEPinningConfigurationProvider.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEPinningConfigurationProvider.h",
- "MGLPointCollection_Private.h": "platform/darwin/src/MGLPointCollection_Private.h",
- "UIImage+MGLAdditions.h": "platform/ios/src/UIImage+MGLAdditions.h",
- "NSOrthography+MGLAdditions.h": "platform/ios/src/NSOrthography+MGLAdditions.h",
- "MGLLight_Private.h": "platform/darwin/src/MGLLight_Private.h",
- "MGLAnnotationContainerView.h": "platform/ios/src/MGLAnnotationContainerView.h",
- "MGLSDKUpdateChecker.h": "platform/ios/src/MGLSDKUpdateChecker.h",
- "MGLAnnotationImage_Private.h": "platform/ios/src/MGLAnnotationImage_Private.h",
- "MGLConversion.h": "platform/darwin/src/MGLConversion.h",
- "MGLShapeOfflineRegion_Private.h": "platform/darwin/src/MGLShapeOfflineRegion_Private.h",
- "MGLTelemetryConfig.h": "platform/ios/src/MGLTelemetryConfig.h",
- "MGLGeometry_Private.h": "platform/darwin/src/MGLGeometry_Private.h",
- "NSCompoundPredicate+MGLAdditions.h": "platform/darwin/src/NSCompoundPredicate+MGLAdditions.h",
- "NSExpression+MGLPrivateAdditions.h": "platform/darwin/src/NSExpression+MGLPrivateAdditions.h",
- "MGLOpenGLStyleLayer_Private.h": "platform/darwin/src/MGLOpenGLStyleLayer_Private.h",
- "MGLTileSource_Private.h": "platform/darwin/src/MGLTileSource_Private.h",
- "MGLFaux3DUserLocationAnnotationView.h": "platform/ios/src/MGLFaux3DUserLocationAnnotationView.h",
- "MGLUserLocationAnnotationView_Private.h": "platform/ios/src/MGLUserLocationAnnotationView_Private.h",
- "MGLRasterTileSource_Private.h": "platform/darwin/src/MGLRasterTileSource_Private.h",
- "MGLFeature_Private.h": "platform/darwin/src/MGLFeature_Private.h",
- "MGLRendererConfiguration.h": "platform/darwin/src/MGLRendererConfiguration.h",
- "MMEReachability.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Reachability/MMEReachability.h",
- "MMENamespacedDependencies.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMENamespacedDependencies.h",
- "MapboxMobileEvents.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MapboxMobileEvents.h",
- "MMEAPIClient.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEAPIClient.h",
- "MMECommonEventData.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMECommonEventData.h",
- "MMEConstants.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEConstants.h",
- "MMEDependencyManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDependencyManager.h",
- "MMEEvent.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEvent.h",
- "CLLocation+MMEMobileEvents.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/CLLocation+MMEMobileEvents.h",
- "MMEEventLogger.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventLogger.h",
- "MMEEventLogReportViewController.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventLogReportViewController.h",
- "MMEEventsConfiguration.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventsConfiguration.h",
- "MGLNetworkIntegrationManager.h": "platform/darwin/src/MGLNetworkIntegrationManager.h",
- "MMEConfigurator.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEConfigurator.h",
- "MMELocationManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMELocationManager.h",
- "MMEMetrics.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEMetrics.h",
- "MMEMetricsManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEMetricsManager.h",
- "MMENSURLSessionWrapper.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMENSURLSessionWrapper.h",
- "MGLMapView+Impl.h": "platform/ios/src/MGLMapView+Impl.h",
- "MMETimerManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMETimerManager.h",
- "MMETypes.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMETypes.h",
- "CLLocationManager+MMEMobileEvents.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/Categories/CLLocationManager+MMEMobileEvents.h",
- "MMEUIApplicationWrapper.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUIApplicationWrapper.h",
- "MMEUINavigation.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUINavigation.h",
- "MMEUniqueIdentifier.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEUniqueIdentifier.h",
- "MMEDispatchManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEDispatchManager.h",
- "MMEEventsManager.h": "platform/ios/vendor/mapbox-events-ios/MapboxMobileEvents/MMEEventsManager.h"
- }
-}
diff --git a/platform/ios/toolchain.cmake b/platform/ios/toolchain.cmake
deleted file mode 100644
index 8299d624d0..0000000000
--- a/platform/ios/toolchain.cmake
+++ /dev/null
@@ -1,129 +0,0 @@
-# From https://github.com/OtherLevels/ios-cmake
-# This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake
-# files which are included with CMake 2.8.4
-# It has been altered for iOS development
-
-# Options:
-#
-# IOS_PLATFORM = OS (default) or SIMULATOR or SIMULATOR64
-# This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform folders
-# OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch.
-# SIMULATOR - used to build for the Simulator platforms, which have an x86 arch.
-#
-# CMAKE_IOS_DEVELOPER_ROOT = automatic(default) or /path/to/platform/Developer folder
-# By default this location is automatcially chosen based on the IOS_PLATFORM value above.
-# If set manually, it will override the default location and force the user of a particular Developer Platform
-#
-# CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder
-# By default this location is automatcially chosen based on the CMAKE_IOS_DEVELOPER_ROOT value.
-# In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path.
-# If set manually, this will force the use of a specific SDK version
-
-# Macros:
-#
-# set_xcode_property (TARGET XCODE_PROPERTY XCODE_VALUE)
-# A convenience macro for setting xcode specific properties on targets
-# example: set_xcode_property (myioslib IPHONEOS_DEPLOYMENT_TARGET "3.1")
-#
-# find_host_package (PROGRAM ARGS)
-# A macro used to find executable programs on the host system, not within the iOS environment.
-# Thanks to the android-cmake project for providing the command
-
-# Standard settings
-set (CMAKE_SYSTEM_NAME Darwin)
-set (CMAKE_SYSTEM_VERSION 1)
-set (UNIX True)
-set (APPLE True)
-set (IOS True)
-
-# Required as of cmake 2.8.10
-set (CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FORCE)
-
-# Determine the cmake host system version so we know where to find the iOS SDKs
-find_program (CMAKE_UNAME uname /bin /usr/bin /usr/local/bin)
-if (CMAKE_UNAME)
- exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION)
- string (REGEX REPLACE "^([0-9]+)\\.([0-9]+).*$" "\\1" DARWIN_MAJOR_VERSION "${CMAKE_HOST_SYSTEM_VERSION}")
-endif (CMAKE_UNAME)
-
-# Force the compilers to gcc for iOS
-include (CMakeForceCompiler)
-set(XCODE_TOOLCHAIN /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain)
-set(XCODE_BIN ${XCODE_TOOLCHAIN}/usr/bin)
-set(CMAKE_C_COMPILER ${XCODE_BIN}/clang)
-set(CMAKE_CXX_COMPILER ${XCODE_BIN}/clang++)
-set(CMAKE_FIND_ROOT_PATH ${XCODE_TOOLCHAIN_ROOT})
-set(CMAKE_AR ar CACHE FILEPATH "" FORCE)
-
-# Skip the platform compiler checks for cross compiling
-set (CMAKE_CXX_COMPILER_WORKS TRUE)
-set (CMAKE_C_COMPILER_WORKS TRUE)
-
-# All iOS/Darwin specific settings - some may be redundant
-set (CMAKE_SHARED_LIBRARY_PREFIX "lib")
-set (CMAKE_SHARED_LIBRARY_SUFFIX ".dylib")
-set (CMAKE_SHARED_MODULE_PREFIX "lib")
-set (CMAKE_SHARED_MODULE_SUFFIX ".so")
-set (CMAKE_MODULE_EXISTS 1)
-set (CMAKE_DL_LIBS "")
-
-set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ")
-set (CMAKE_C_OSX_CURRENT_VERSION_FLAG "-current_version ")
-set (CMAKE_CXX_OSX_COMPATIBILITY_VERSION_FLAG "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}")
-set (CMAKE_CXX_OSX_CURRENT_VERSION_FLAG "${CMAKE_C_OSX_CURRENT_VERSION_FLAG}")
-
-
-# This was required for Other C++ Flags to be set for enabling bitcode in a static lib.
-# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fembed-bitcode")
-
-
-set (CMAKE_C_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_C_LINK_FLAGS}")
-set (CMAKE_CXX_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_CXX_LINK_FLAGS}")
-
-set (CMAKE_PLATFORM_HAS_INSTALLNAME 1)
-set (CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-dynamiclib -headerpad_max_install_names")
-set (CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle -headerpad_max_install_names")
-set (CMAKE_SHARED_MODULE_LOADER_C_FLAG "-Wl,-bundle_loader,")
-set (CMAKE_SHARED_MODULE_LOADER_CXX_FLAG "-Wl,-bundle_loader,")
-set (CMAKE_FIND_LIBRARY_SUFFIXES ".dylib" ".so" ".a")
-
-
-# Point to the latest SDK.
-set (CMAKE_OSX_SYSROOT "iphoneos" CACHE STRING "Sysroot used for iOS support")
-
-
-
-set (CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)" CACHE STRING "Build architecture for iOS")
-
-# Set the find root to the iOS developer roots and to user defined paths
-set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE STRING "iOS find search path root")
-
-# default to searching for frameworks first
-set (CMAKE_FIND_FRAMEWORK FIRST)
-
-# set up the default search directories for frameworks
-set (CMAKE_SYSTEM_FRAMEWORK_PATH
- ${CMAKE_IOS_SDK_ROOT}/System/Library/Frameworks
- ${CMAKE_IOS_SDK_ROOT}/System/Library/PrivateFrameworks
- ${CMAKE_IOS_SDK_ROOT}/Developer/Library/Frameworks
-)
-
-# only search the iOS sdks, not the remainder of the host filesystem
-set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
-set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
-
-# This macro lets you find executable programs on the host system
-macro (find_host_package)
- set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
- set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER)
- set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER)
- set (IOS FALSE)
-
- find_package(${ARGN})
-
- set (IOS TRUE)
- set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
- set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
- set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
-endmacro (find_host_package)
diff --git a/platform/linux/config.cmake b/platform/linux/config.cmake
deleted file mode 100644
index 75070ad7d6..0000000000
--- a/platform/linux/config.cmake
+++ /dev/null
@@ -1,188 +0,0 @@
-include(cmake/sqlite.cmake)
-
-add_library(mbgl-loop-uv STATIC
- platform/default/src/mbgl/util/async_task.cpp
- platform/default/src/mbgl/util/run_loop.cpp
- platform/default/src/mbgl/util/timer.cpp
-)
-
-target_include_directories(mbgl-loop-uv
- PRIVATE include
- PRIVATE src
-)
-
-target_link_libraries(mbgl-loop-uv
- PRIVATE mbgl-core
-)
-
-target_add_mason_package(mbgl-loop-uv PUBLIC libuv)
-
-macro(mbgl_platform_core)
- if(WITH_OSMESA)
- target_sources(mbgl-core
- PRIVATE platform/default/src/mbgl/gl/headless_backend_osmesa.cpp
- )
- target_link_libraries(mbgl-core
- PUBLIC -lOSMesa
- )
- elseif(WITH_EGL)
- target_sources(mbgl-core
- PRIVATE platform/linux/src/headless_backend_egl.cpp
- )
- target_add_mason_package(mbgl-core PUBLIC swiftshader)
- else()
- target_sources(mbgl-core
- PRIVATE platform/linux/src/headless_backend_glx.cpp
- )
- target_link_libraries(mbgl-core
- PUBLIC -lGL
- PUBLIC -lX11
- )
- endif()
-
- target_sources(mbgl-core
- # GL
- PRIVATE platform/linux/src/gl_functions.cpp
-
- # Misc
- PRIVATE platform/default/src/mbgl/i18n/collator.cpp
- PRIVATE platform/default/src/mbgl/i18n/number_format.cpp
- PRIVATE platform/default/src/mbgl/text/bidi.cpp
- PRIVATE platform/default/src/mbgl/text/local_glyph_rasterizer.cpp
- PRIVATE platform/default/src/mbgl/layermanager/layer_manager.cpp
- PRIVATE platform/default/src/mbgl/util/compression.cpp
- PRIVATE platform/default/src/mbgl/util/logging_stderr.cpp
- PRIVATE platform/default/src/mbgl/util/monotonic_timer.cpp
- PRIVATE platform/default/src/mbgl/util/string_stdlib.cpp
- PRIVATE platform/default/src/mbgl/util/thread.cpp
- PRIVATE platform/default/src/mbgl/util/thread_local.cpp
- PRIVATE platform/default/src/mbgl/util/utf.cpp
-
- # Image handling
- PRIVATE platform/default/src/mbgl/util/image.cpp
- PRIVATE platform/default/src/mbgl/util/jpeg_reader.cpp
- PRIVATE platform/default/src/mbgl/util/png_writer.cpp
- PRIVATE platform/default/src/mbgl/util/png_reader.cpp
-
- # Headless view
- PRIVATE platform/default/src/mbgl/gfx/headless_frontend.cpp
- PRIVATE platform/default/include/mbgl/gfx/headless_frontend.hpp
- PRIVATE platform/default/src/mbgl/gfx/headless_backend.cpp
- PRIVATE platform/default/include/mbgl/gfx/headless_backend.hpp
- PRIVATE platform/default/src/mbgl/gl/headless_backend.cpp
- PRIVATE platform/default/include/mbgl/gl/headless_backend.hpp
-
- # Snapshotting
- PRIVATE platform/default/src/mbgl/map/map_snapshotter.cpp
- PRIVATE platform/default/include/mbgl/map/map_snapshotter.hpp
- )
-
- target_include_directories(mbgl-core
- PRIVATE platform/default/include
- PRIVATE platform/linux
- )
-
- target_add_mason_package(mbgl-core PUBLIC libpng)
- target_add_mason_package(mbgl-core PUBLIC libjpeg-turbo)
- target_add_mason_package(mbgl-core PRIVATE icu)
-
- # Ignore warning caused by ICU header unistr.h in some CI environments
- set_source_files_properties(platform/default/src/mbgl/i18n/number_format.cpp PROPERTIES COMPILE_FLAGS -Wno-error=shadow)
-
- # Link all ICU libraries (by default only libicuuc is linked)
- find_library(LIBICUI18N NAMES icui18n HINTS ${MASON_PACKAGE_icu_INCLUDE_DIRS}/../lib)
- find_library(LIBICUUC NAMES icuuc HINTS ${MASON_PACKAGE_icu_INCLUDE_DIRS}/../lib)
- find_library(LIBICUDATA NAMES icudata HINTS ${MASON_PACKAGE_icu_INCLUDE_DIRS}/../lib)
-
- target_link_libraries(mbgl-core
- PRIVATE ${LIBICUI18N}
- PRIVATE ${LIBICUUC}
- PRIVATE ${LIBICUDATA}
- PRIVATE mbgl-vendor-nunicode
- PUBLIC -lz
- )
-endmacro()
-
-
-macro(mbgl_filesource)
- # Modify platform/linux/filesource-files.json to change the source files for this target.
- target_sources_from_file(mbgl-filesource PRIVATE platform/linux/filesource-files.json)
-
- # We're not referencing any cURL symbols since we're dynamically loading it. However, we want to
- # link the library anyway since we're definitely going to load it on startup anyway.
- target_link_libraries(mbgl-filesource
- PUBLIC sqlite
- PUBLIC -Wl,--no-as-needed -lcurl -Wl,--as-needed
- )
-endmacro()
-
-
-macro(mbgl_platform_glfw)
- target_link_libraries(mbgl-glfw
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-uv
- )
-endmacro()
-
-
-macro(mbgl_platform_render)
- target_link_libraries(mbgl-render
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-uv
- )
-endmacro()
-
-
-macro(mbgl_platform_offline)
- target_link_libraries(mbgl-offline
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-uv
- )
-endmacro()
-
-
-macro(mbgl_platform_test)
- target_sources(mbgl-test
- PRIVATE platform/default/src/mbgl/test/main.cpp
- )
-
- target_include_directories(mbgl-test
- PRIVATE platform/linux
- )
-
- set_source_files_properties(
- platform/default/src/mbgl/test/main.cpp
- PROPERTIES
- COMPILE_FLAGS -DWORK_DIRECTORY="${CMAKE_SOURCE_DIR}"
- )
-
- target_link_libraries(mbgl-test
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-uv
- )
-endmacro()
-
-
-macro(mbgl_platform_benchmark)
- target_sources(mbgl-benchmark
- PRIVATE platform/default/src/mbgl/benchmark/main.cpp
- )
-
- set_source_files_properties(
- platform/default/src/mbgl/benchmark/main.cpp
- PROPERTIES
- COMPILE_FLAGS -DWORK_DIRECTORY="${CMAKE_SOURCE_DIR}"
- )
-
- target_link_libraries(mbgl-benchmark
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-uv
- )
-endmacro()
-
-
-macro(mbgl_platform_node)
- target_link_libraries(mbgl-node INTERFACE
- -Wl,--version-script=${CMAKE_SOURCE_DIR}/platform/node/version-script
- )
-endmacro()
diff --git a/platform/linux/filesource-files.json b/platform/linux/filesource-files.json
deleted file mode 100644
index 669a4e612c..0000000000
--- a/platform/linux/filesource-files.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/default/src/mbgl/storage/http_file_source.cpp",
- "platform/default/src/mbgl/storage/sqlite3.cpp"
- ],
- "public_headers": {},
- "private_headers": {}
-}
diff --git a/platform/macos/config.cmake b/platform/macos/config.cmake
deleted file mode 100644
index 28c3610634..0000000000
--- a/platform/macos/config.cmake
+++ /dev/null
@@ -1,132 +0,0 @@
-include(cmake/loop-darwin.cmake)
-
-macro(mbgl_platform_core)
- target_sources_from_file(mbgl-core PRIVATE platform/macos/core-files.json)
-
- if(WITH_EGL)
- target_sources(mbgl-core
- PRIVATE platform/linux/src/headless_backend_egl.cpp
- )
- target_add_mason_package(mbgl-core PUBLIC swiftshader)
- else()
- target_sources(mbgl-core
- PRIVATE platform/darwin/src/headless_backend_cgl.mm
- )
- target_link_libraries(mbgl-core
- PUBLIC "-framework OpenGL"
- )
- endif()
-
- target_compile_options(mbgl-core
- PRIVATE -fobjc-arc
- )
-
- target_include_directories(mbgl-core
- PUBLIC platform/darwin/include
- PUBLIC platform/default/include
- )
-
- target_link_libraries(mbgl-core
- PUBLIC "-lz"
- PUBLIC "-framework Foundation"
- PUBLIC "-framework CoreText"
- PUBLIC "-framework CoreGraphics"
- PUBLIC "-framework ImageIO"
- PUBLIC "-framework CoreServices"
- PUBLIC "-framework SystemConfiguration"
- )
-endmacro()
-
-
-macro(mbgl_filesource)
- # Modify platform/darwin/filesource-files.json to change the source files for this target.
- target_sources_from_file(mbgl-filesource PRIVATE platform/darwin/filesource-files.json)
-
- target_compile_options(mbgl-filesource
- PRIVATE -fobjc-arc
- )
-
- target_link_libraries(mbgl-filesource
- PUBLIC "-lsqlite3"
- PUBLIC "-framework Foundation"
- )
-endmacro()
-
-
-macro(mbgl_platform_glfw)
- target_link_libraries(mbgl-glfw
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-darwin
- )
-endmacro()
-
-
-macro(mbgl_platform_render)
- target_link_libraries(mbgl-render
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-darwin
- )
-endmacro()
-
-
-macro(mbgl_platform_offline)
- target_sources(mbgl-offline
- PRIVATE platform/default/src/mbgl/layermanager/layer_manager.cpp
- )
-
- target_link_libraries(mbgl-offline
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-darwin
- )
-endmacro()
-
-
-macro(mbgl_platform_test)
- target_sources(mbgl-test
- PRIVATE platform/default/src/mbgl/layermanager/layer_manager.cpp
- PRIVATE platform/default/src/mbgl/test/main.cpp
- )
-
- target_include_directories(mbgl-test
- PRIVATE platform/macos
- )
-
- set_source_files_properties(
- platform/default/src/mbgl/test/main.cpp
- PROPERTIES
- COMPILE_FLAGS -DWORK_DIRECTORY="${CMAKE_SOURCE_DIR}"
- )
-
- target_link_libraries(mbgl-test
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-darwin
- )
-endmacro()
-
-macro(mbgl_platform_benchmark)
- target_sources(mbgl-benchmark
- PRIVATE platform/default/src/mbgl/layermanager/layer_manager.cpp
- PRIVATE platform/default/src/mbgl/benchmark/main.cpp
- )
-
- set_source_files_properties(
- platform/default/src/mbgl/benchmark/main.cpp
- PROPERTIES
- COMPILE_FLAGS -DWORK_DIRECTORY="${CMAKE_SOURCE_DIR}"
- )
-
- target_link_libraries(mbgl-benchmark
- PRIVATE mbgl-filesource
- PRIVATE mbgl-loop-darwin
- )
-endmacro()
-
-macro(mbgl_platform_node)
- target_sources(mbgl-core
- PRIVATE platform/default/src/mbgl/layermanager/layer_manager.cpp
- )
- target_link_libraries(mbgl-node INTERFACE
- -exported_symbols_list ${CMAKE_SOURCE_DIR}/platform/node/symbol-list
- -dead_strip
- )
-endmacro()
diff --git a/platform/macos/core-files.json b/platform/macos/core-files.json
deleted file mode 100644
index 9472721e8b..0000000000
--- a/platform/macos/core-files.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "//": "This file can be edited manually and is the canonical source.",
- "sources": [
- "platform/darwin/src/collator.mm",
- "platform/darwin/src/gl_functions.cpp",
- "platform/darwin/src/image.mm",
- "platform/darwin/src/local_glyph_rasterizer.mm",
- "platform/darwin/src/logging_nslog.mm",
- "platform/darwin/src/nsthread.mm",
- "platform/darwin/src/number_format.mm",
- "platform/darwin/src/reachability.m",
- "platform/darwin/src/string_nsstring.mm",
- "platform/default/src/mbgl/gfx/headless_backend.cpp",
- "platform/default/src/mbgl/gfx/headless_frontend.cpp",
- "platform/default/src/mbgl/gl/headless_backend.cpp",
- "platform/default/src/mbgl/map/map_snapshotter.cpp",
- "platform/default/src/mbgl/text/bidi.cpp",
- "platform/default/src/mbgl/util/compression.cpp",
- "platform/default/src/mbgl/util/monotonic_timer.cpp",
- "platform/default/src/mbgl/util/png_writer.cpp",
- "platform/default/src/mbgl/util/thread_local.cpp",
- "platform/default/src/mbgl/util/utf.cpp",
- "platform/darwin/src/native_apple_interface.m"
- ],
- "public_headers": {
- "mbgl/storage/reachability.h": "platform/darwin/include/mbgl/storage/reachability.h",
- "mbgl/interface/native_apple_interface.h": "platform/darwin/include/mbgl/interface/native_apple_interface.h",
- "mbgl/util/image+MGLAdditions.hpp": "platform/darwin/include/mbgl/util/image+MGLAdditions.hpp",
- "mbgl/gfx/headless_backend.hpp": "platform/default/include/mbgl/gfx/headless_backend.hpp",
- "mbgl/gfx/headless_frontend.hpp": "platform/default/include/mbgl/gfx/headless_frontend.hpp",
- "mbgl/gl/headless_backend.hpp": "platform/default/include/mbgl/gl/headless_backend.hpp",
- "mbgl/map/map_snapshotter.hpp": "platform/default/include/mbgl/map/map_snapshotter.hpp"
- },
- "private_headers": {
- "CFHandle.hpp": "platform/darwin/src/CFHandle.hpp"
- }
-}
diff --git a/platform/macos/sdk-files.json b/platform/macos/sdk-files.json
deleted file mode 100644
index 65b946cd06..0000000000
--- a/platform/macos/sdk-files.json
+++ /dev/null
@@ -1,217 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "platform/darwin/src/MGLImageSource.mm",
- "platform/darwin/src/MGLMapSnapshotter.mm",
- "platform/macos/src/NSImage+MGLAdditions.mm",
- "platform/darwin/src/MGLHillshadeStyleLayer.mm",
- "platform/darwin/src/MGLPointAnnotation.mm",
- "platform/darwin/src/MGLSDKMetricsManager.m",
- "platform/darwin/src/NSBundle+MGLAdditions.m",
- "platform/macos/src/MGLMapView.mm",
- "platform/macos/src/MGLMapView+OpenGL.mm",
- "platform/darwin/src/NSArray+MGLAdditions.mm",
- "platform/darwin/src/MGLOfflinePack.mm",
- "platform/darwin/src/NSDate+MGLAdditions.mm",
- "platform/darwin/src/MGLLoggingConfiguration.mm",
- "platform/darwin/src/MGLNetworkConfiguration.m",
- "platform/darwin/src/MGLLight.mm",
- "platform/macos/src/MGLAnnotationImage.m",
- "platform/darwin/src/NSExpression+MGLAdditions.mm",
- "platform/darwin/src/MGLFeature.mm",
- "platform/darwin/src/MGLOpenGLStyleLayer.mm",
- "platform/macos/src/NSColor+MGLAdditions.mm",
- "platform/macos/src/MGLAttributionButton.mm",
- "platform/darwin/src/MGLFillStyleLayer.mm",
- "platform/darwin/src/MGLShape.mm",
- "platform/darwin/src/MGLRasterTileSource.mm",
- "platform/darwin/src/MGLFoundation.mm",
- "platform/darwin/src/NSString+MGLAdditions.m",
- "platform/darwin/src/NSCoder+MGLAdditions.mm",
- "platform/darwin/src/MGLStyleLayerManager.mm",
- "platform/darwin/src/MGLStyle.mm",
- "platform/darwin/src/MGLGeometry.mm",
- "platform/darwin/src/MGLHeatmapStyleLayer.mm",
- "platform/darwin/src/MGLCircleStyleLayer.mm",
- "platform/darwin/src/MGLForegroundStyleLayer.mm",
- "platform/darwin/src/NSDictionary+MGLAdditions.mm",
- "platform/darwin/src/MGLBackgroundStyleLayer.mm",
- "platform/darwin/src/MGLTileSource.mm",
- "platform/darwin/src/MGLNetworkIntegrationManager.m",
- "platform/macos/src/MGLMapView+IBAdditions.mm",
- "platform/darwin/src/NSValue+MGLAdditions.m",
- "platform/darwin/src/MGLStyleLayer.mm",
- "platform/darwin/src/MGLClockDirectionFormatter.m",
- "platform/darwin/src/MGLComputedShapeSource.mm",
- "platform/macos/src/MGLOpenGLLayer.mm",
- "platform/darwin/src/MGLMultiPoint.mm",
- "platform/darwin/src/MGLTypes.m",
- "platform/darwin/src/MGLPointCollection.mm",
- "platform/darwin/src/MGLCoordinateFormatter.m",
- "platform/darwin/src/MGLSource.mm",
- "platform/darwin/src/MGLMapCamera.mm",
- "platform/darwin/src/MGLVectorStyleLayer.mm",
- "platform/darwin/src/MGLAttributedExpression.m",
- "platform/darwin/src/NSValue+MGLStyleAttributeAdditions.mm",
- "platform/darwin/src/MGLPolygon.mm",
- "platform/darwin/src/MGLDistanceFormatter.m",
- "platform/macos/src/NSProcessInfo+MGLAdditions.m",
- "platform/darwin/src/MGLFillExtrusionStyleLayer.mm",
- "platform/darwin/src/MGLOfflineStorage.mm",
- "platform/darwin/src/NSURL+MGLAdditions.m",
- "platform/darwin/src/NSCompoundPredicate+MGLAdditions.mm",
- "platform/darwin/src/MGLTilePyramidOfflineRegion.mm",
- "platform/darwin/src/MGLAccountManager.m",
- "platform/darwin/src/MGLAttributionInfo.mm",
- "platform/darwin/src/MGLPolyline.mm",
- "platform/darwin/src/MGLShapeSource.mm",
- "platform/macos/src/MGLCompassCell.m",
- "platform/darwin/src/MGLRasterStyleLayer.mm",
- "platform/darwin/src/MGLShapeCollection.mm",
- "platform/darwin/src/MGLShapeOfflineRegion.mm",
- "platform/darwin/src/NSComparisonPredicate+MGLAdditions.mm",
- "platform/macos/src/MGLMapView+Impl.mm",
- "platform/darwin/src/MGLCompassDirectionFormatter.m",
- "platform/darwin/src/MGLRasterDEMSource.mm",
- "platform/darwin/src/MGLLineStyleLayer.mm",
- "platform/darwin/src/MGLSymbolStyleLayer.mm",
- "platform/darwin/src/NSPredicate+MGLAdditions.mm",
- "platform/darwin/src/MGLVectorTileSource.mm",
- "platform/darwin/src/MGLStyleValue.mm",
- "platform/darwin/src/MGLRendererConfiguration.mm"
- ],
- "public_headers": {
- "MGLFoundation.h": "platform/darwin/src/MGLFoundation.h",
- "MGLComputedShapeSource.h": "platform/darwin/src/MGLComputedShapeSource.h",
- "MGLRasterStyleLayer.h": "platform/darwin/src/MGLRasterStyleLayer.h",
- "NSExpression+MGLAdditions.h": "platform/darwin/src/NSExpression+MGLAdditions.h",
- "MGLAttributedExpression.h": "platform/darwin/src/MGLAttributedExpression.h",
- "MGLAnnotation.h": "platform/darwin/src/MGLAnnotation.h",
- "MGLHillshadeStyleLayer.h": "platform/darwin/src/MGLHillshadeStyleLayer.h",
- "MGLMapSnapshotter.h": "platform/darwin/src/MGLMapSnapshotter.h",
- "MGLCircleStyleLayer.h": "platform/darwin/src/MGLCircleStyleLayer.h",
- "MGLAttributionInfo.h": "platform/darwin/src/MGLAttributionInfo.h",
- "MGLFillExtrusionStyleLayer.h": "platform/darwin/src/MGLFillExtrusionStyleLayer.h",
- "MGLAnnotationImage.h": "platform/macos/src/MGLAnnotationImage.h",
- "MGLMapView.h": "platform/macos/src/MGLMapView.h",
- "MGLOfflineStorage.h": "platform/darwin/src/MGLOfflineStorage.h",
- "MGLStyleValue.h": "platform/darwin/src/MGLStyleValue.h",
- "MGLSDKMetricsManager.h": "platform/darwin/src/MGLSDKMetricsManager.h",
- "MGLMultiPoint.h": "platform/darwin/src/MGLMultiPoint.h",
- "MGLShapeCollection.h": "platform/darwin/src/MGLShapeCollection.h",
- "MGLPointAnnotation.h": "platform/darwin/src/MGLPointAnnotation.h",
- "MGLOfflinePack.h": "platform/darwin/src/MGLOfflinePack.h",
- "MGLLoggingConfiguration.h": "platform/darwin/src/MGLLoggingConfiguration.h",
- "NSPredicate+MGLAdditions.h": "platform/darwin/src/NSPredicate+MGLAdditions.h",
- "MGLVectorTileSource.h": "platform/darwin/src/MGLVectorTileSource.h",
- "MGLRasterDEMSource.h": "platform/darwin/src/MGLRasterDEMSource.h",
- "MGLTypes.h": "platform/darwin/src/MGLTypes.h",
- "MGLBackgroundStyleLayer.h": "platform/darwin/src/MGLBackgroundStyleLayer.h",
- "MGLPointCollection.h": "platform/darwin/src/MGLPointCollection.h",
- "MGLShape.h": "platform/darwin/src/MGLShape.h",
- "MGLOpenGLStyleLayer.h": "platform/darwin/src/MGLOpenGLStyleLayer.h",
- "MGLSource.h": "platform/darwin/src/MGLSource.h",
- "MGLPolygon.h": "platform/darwin/src/MGLPolygon.h",
- "MGLClockDirectionFormatter.h": "platform/darwin/src/MGLClockDirectionFormatter.h",
- "MGLFillStyleLayer.h": "platform/darwin/src/MGLFillStyleLayer.h",
- "MGLCoordinateFormatter.h": "platform/darwin/src/MGLCoordinateFormatter.h",
- "MGLShapeOfflineRegion.h": "platform/darwin/src/MGLShapeOfflineRegion.h",
- "MGLNetworkConfiguration.h": "platform/darwin/src/MGLNetworkConfiguration.h",
- "MGLOverlay.h": "platform/darwin/src/MGLOverlay.h",
- "MGLPolyline.h": "platform/darwin/src/MGLPolyline.h",
- "MGLLineStyleLayer.h": "platform/darwin/src/MGLLineStyleLayer.h",
- "MGLDistanceFormatter.h": "platform/darwin/src/MGLDistanceFormatter.h",
- "MGLHeatmapStyleLayer.h": "platform/darwin/src/MGLHeatmapStyleLayer.h",
- "MGLOfflineRegion.h": "platform/darwin/src/MGLOfflineRegion.h",
- "MGLTilePyramidOfflineRegion.h": "platform/darwin/src/MGLTilePyramidOfflineRegion.h",
- "NSValue+MGLAdditions.h": "platform/darwin/src/NSValue+MGLAdditions.h",
- "MGLMapViewDelegate.h": "platform/macos/src/MGLMapViewDelegate.h",
- "MGLCluster.h": "platform/darwin/src/MGLCluster.h",
- "MGLFeature.h": "platform/darwin/src/MGLFeature.h",
- "MGLStyleLayer.h": "platform/darwin/src/MGLStyleLayer.h",
- "MGLGeometry.h": "platform/darwin/src/MGLGeometry.h",
- "MGLAccountManager.h": "platform/darwin/src/MGLAccountManager.h",
- "MGLTileSource.h": "platform/darwin/src/MGLTileSource.h",
- "MGLForegroundStyleLayer.h": "platform/darwin/src/MGLForegroundStyleLayer.h",
- "MGLMapCamera.h": "platform/darwin/src/MGLMapCamera.h",
- "MGLImageSource.h": "platform/darwin/src/MGLImageSource.h",
- "MGLSymbolStyleLayer.h": "platform/darwin/src/MGLSymbolStyleLayer.h",
- "MGLMapView+IBAdditions.h": "platform/macos/src/MGLMapView+IBAdditions.h",
- "MGLCompassDirectionFormatter.h": "platform/darwin/src/MGLCompassDirectionFormatter.h",
- "MGLRasterTileSource.h": "platform/darwin/src/MGLRasterTileSource.h",
- "MGLVectorStyleLayer.h": "platform/darwin/src/MGLVectorStyleLayer.h",
- "MGLShapeSource.h": "platform/darwin/src/MGLShapeSource.h",
- "MGLLight.h": "platform/darwin/src/MGLLight.h",
- "MGLStyle.h": "platform/darwin/src/MGLStyle.h",
- "Mapbox/Mapbox.h": "platform/macos/src/Mapbox.h"
- },
- "private_headers": {
- "MGLOfflineRegion_Private.h": "platform/darwin/src/MGLOfflineRegion_Private.h",
- "MGLRasterTileSource_Private.h": "platform/darwin/src/MGLRasterTileSource_Private.h",
- "MGLBackgroundStyleLayer_Private.h": "platform/darwin/src/MGLBackgroundStyleLayer_Private.h",
- "MGLConversion.h": "platform/darwin/src/MGLConversion.h",
- "MGLFillExtrusionStyleLayer_Private.h": "platform/darwin/src/MGLFillExtrusionStyleLayer_Private.h",
- "MGLStyleValue_Private.h": "platform/darwin/src/MGLStyleValue_Private.h",
- "MGLMapView_Private.h": "platform/macos/src/MGLMapView_Private.h",
- "MGLRasterStyleLayer_Private.h": "platform/darwin/src/MGLRasterStyleLayer_Private.h",
- "MGLHeatmapStyleLayer_Private.h": "platform/darwin/src/MGLHeatmapStyleLayer_Private.h",
- "MGLAttributionButton.h": "platform/macos/src/MGLAttributionButton.h",
- "NSArray+MGLAdditions.h": "platform/darwin/src/NSArray+MGLAdditions.h",
- "NSComparisonPredicate+MGLAdditions.h": "platform/darwin/src/NSComparisonPredicate+MGLAdditions.h",
- "MGLStyleLayerManager.h": "platform/darwin/src/MGLStyleLayerManager.h",
- "MGLStyleLayer_Private.h": "platform/darwin/src/MGLStyleLayer_Private.h",
- "MGLShapeOfflineRegion_Private.h": "platform/darwin/src/MGLShapeOfflineRegion_Private.h",
- "MGLAttributionInfo_Private.h": "platform/darwin/src/MGLAttributionInfo_Private.h",
- "NSBundle+MGLAdditions.h": "platform/darwin/src/NSBundle+MGLAdditions.h",
- "NSURL+MGLAdditions.h": "platform/darwin/src/NSURL+MGLAdditions.h",
- "MGLAnnotationImage_Private.h": "platform/macos/src/MGLAnnotationImage_Private.h",
- "MGLLoggingConfiguration_Private.h": "platform/darwin/src/MGLLoggingConfiguration_Private.h",
- "NSPredicate+MGLPrivateAdditions.h": "platform/darwin/src/NSPredicate+MGLPrivateAdditions.h",
- "NSString+MGLAdditions.h": "platform/darwin/src/NSString+MGLAdditions.h",
- "MGLCircleStyleLayer_Private.h": "platform/darwin/src/MGLCircleStyleLayer_Private.h",
- "MGLVectorTileSource_Private.h": "platform/darwin/src/MGLVectorTileSource_Private.h",
- "MGLGeometry_Private.h": "platform/darwin/src/MGLGeometry_Private.h",
- "MGLAccountManager_Private.h": "platform/darwin/src/MGLAccountManager_Private.h",
- "MGLNetworkIntegrationManager.h": "platform/darwin/src/MGLNetworkIntegrationManager.h",
- "MGLComputedShapeSource_Private.h": "platform/darwin/src/MGLComputedShapeSource_Private.h",
- "NSException+MGLAdditions.h": "platform/darwin/src/NSException+MGLAdditions.h",
- "MGLTileSource_Private.h": "platform/darwin/src/MGLTileSource_Private.h",
- "NSExpression+MGLPrivateAdditions.h": "platform/darwin/src/NSExpression+MGLPrivateAdditions.h",
- "MGLSDKMetricsManager_Private.h": "platform/darwin/src/MGLSDKMetricsManager_Private.h",
- "MGLNetworkConfiguration_Private.h": "platform/darwin/src/MGLNetworkConfiguration_Private.h",
- "NSCompoundPredicate+MGLAdditions.h": "platform/darwin/src/NSCompoundPredicate+MGLAdditions.h",
- "MGLSymbolStyleLayer_Private.h": "platform/darwin/src/MGLSymbolStyleLayer_Private.h",
- "MGLMapView+OpenGL.h": "platform/macos/src/MGLMapView+OpenGL.h",
- "NSProcessInfo+MGLAdditions.h": "platform/macos/src/NSProcessInfo+MGLAdditions.h",
- "MGLRendererFrontend.h": "platform/darwin/src/MGLRendererFrontend.h",
- "NSValue+MGLStyleAttributeAdditions.h": "platform/darwin/src/NSValue+MGLStyleAttributeAdditions.h",
- "NSImage+MGLAdditions.h": "platform/macos/src/NSImage+MGLAdditions.h",
- "MGLLight_Private.h": "platform/darwin/src/MGLLight_Private.h",
- "MGLMapView+Impl.h": "platform/macos/src/MGLMapView+Impl.h",
- "NSCoder+MGLAdditions.h": "platform/darwin/src/NSCoder+MGLAdditions.h",
- "MGLOfflineStorage_Private.h": "platform/darwin/src/MGLOfflineStorage_Private.h",
- "MGLLineStyleLayer_Private.h": "platform/darwin/src/MGLLineStyleLayer_Private.h",
- "MGLHillshadeStyleLayer_Private.h": "platform/darwin/src/MGLHillshadeStyleLayer_Private.h",
- "MGLValueEvaluator.h": "platform/darwin/src/MGLValueEvaluator.h",
- "MGLOfflinePack_Private.h": "platform/darwin/src/MGLOfflinePack_Private.h",
- "MGLFoundation_Private.h": "platform/darwin/src/MGLFoundation_Private.h",
- "MGLCompassCell.h": "platform/macos/src/MGLCompassCell.h",
- "MGLShapeSource_Private.h": "platform/darwin/src/MGLShapeSource_Private.h",
- "MGLStyle_Private.h": "platform/darwin/src/MGLStyle_Private.h",
- "MGLSource_Private.h": "platform/darwin/src/MGLSource_Private.h",
- "MGLOpenGLLayer.h": "platform/macos/src/MGLOpenGLLayer.h",
- "MGLPointCollection_Private.h": "platform/darwin/src/MGLPointCollection_Private.h",
- "NSDate+MGLAdditions.h": "platform/darwin/src/NSDate+MGLAdditions.h",
- "NSColor+MGLAdditions.h": "platform/macos/src/NSColor+MGLAdditions.h",
- "MGLMultiPoint_Private.h": "platform/darwin/src/MGLMultiPoint_Private.h",
- "MGLOpenGLStyleLayer_Private.h": "platform/darwin/src/MGLOpenGLStyleLayer_Private.h",
- "MGLPolygon_Private.h": "platform/darwin/src/MGLPolygon_Private.h",
- "MGLShape_Private.h": "platform/darwin/src/MGLShape_Private.h",
- "MGLTilePyramidOfflineRegion_Private.h": "platform/darwin/src/MGLTilePyramidOfflineRegion_Private.h",
- "MGLFeature_Private.h": "platform/darwin/src/MGLFeature_Private.h",
- "MGLPolyline_Private.h": "platform/darwin/src/MGLPolyline_Private.h",
- "MGLFillStyleLayer_Private.h": "platform/darwin/src/MGLFillStyleLayer_Private.h",
- "NSDictionary+MGLAdditions.h": "platform/darwin/src/NSDictionary+MGLAdditions.h",
- "MGLRendererConfiguration.h": "platform/darwin/src/MGLRendererConfiguration.h"
- }
-}
diff --git a/scripts/generate-file-lists.js b/scripts/generate-file-lists.js
deleted file mode 100755
index e525513653..0000000000
--- a/scripts/generate-file-lists.js
+++ /dev/null
@@ -1,157 +0,0 @@
-#!/usr/bin/env node
-
-const child_process = require('child_process');
-const fs = require('fs');
-const path = require('path');
-const xcode = require('xcode');
-
-require('./style-code');
-
-const classifier = /^(?:(?:(?:platform|vendor)\/(?:(?!include|src).)*\/|(?:test|benchmark)\/)?(?:(include|src)\/)?)?(.+\.h(?:pp|xx)?)$/;
-
-function generateFileList(filename, roots, regex, patterns) {
- writeFileList(
- filename,
- [].concat.apply([], roots.map(function(root) {
- return child_process
- .execSync(`git -C ${root} ls-files ${patterns.map((p) => '"' + p + '"').join(' ')}`)
- .toString()
- .trim()
- .split('\n')
- .map(file => path.join(root, file))
- })))
-}
-
-function writeFileList(filename, files) {
- const json = {
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- sources: [],
- public_headers: {},
- private_headers: {}
- };
- files.sort();
- for (const file of files) {
- const match = file.match(classifier);
- if (!match) {
- json.sources.push(file);
- } else if (match[1] === 'src') {
- json.private_headers[match[2]] = file;
- } else {
- if (match[1] !== 'include') {
- console.warn(`* ${file} is not in include or src directory. Treating as public header.`);
- }
- json.public_headers[match[2]] = file;
- }
- }
- writeIfModified(filename, JSON.stringify(json, null, 4) + '\n');
-}
-
-function generateXcodeSourceList(project, target, name) {
- const projectPath = path.dirname(project);
- let objects = xcode.project(path.join(project, 'project.pbxproj')).parseSync().hash.project.objects;
-
- // Build reverse lookup table for file => group
- let objToGroup = {};
- Object.keys(objects.PBXGroup)
- .filter(name => !/_comment$/.test(name))
- .forEach(name => objects.PBXGroup[name].children
- .forEach(child => objToGroup[child.value] = name));
-
- // Retrieve the target
- const targetObj = Object.keys(objects.PBXNativeTarget)
- .filter(name => !/_comment$/.test(name))
- .map(name => objects.PBXNativeTarget[name])
- .filter(project => project.name == target)[0];
-
- // Retrieve the sources associated with the target.
- const sourcesObjs = targetObj.buildPhases
- .map(phase => objects.PBXSourcesBuildPhase[phase.value] || objects.PBXHeadersBuildPhase[phase.value])
- .filter(phase => phase);
-
- const json = {
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- sources: [],
- public_headers: {},
- private_headers: {}
- };
-
- sourcesObjs
- .forEach(sourcesObj => sourcesObj.files
- .map(file => objects.PBXBuildFile[file.value])
- .forEach(buildFile => {
- // const isPublic = buildFile.settings && buildFile.settings.ATTRIBUTES && buildFile.settings.ATTRIBUTES.indexOf('Public') >= 0 || false;
- const fileRef = buildFile.fileRef;
- // Look up the full path, and fully qualified group name for every source reference
- let fileObj = objects.PBXFileReference[fileRef];
-
- // Ascend the group tree to find the full path.
- let fullPath = [ fileObj.path.replace(/^"(.+)"$/, '$1') ];
- for (let ref = fileRef, obj = fileObj; obj.sourceTree != 'SOURCE_ROOT' && ref in objToGroup;) {
- ref = objToGroup[ref];
- obj = objects.PBXGroup[ref];
- if (obj.path) {
- fullPath.unshift(obj.path.replace(/^"(.+)"$/, '$1'));
- }
- }
- fullPath.unshift(projectPath);
-
- const fullPathName = path.join.apply(path, fullPath);
-
- if (sourcesObj.isa === 'PBXHeadersBuildPhase') {
- const isPublic = buildFile.settings && buildFile.settings.ATTRIBUTES && buildFile.settings.ATTRIBUTES.indexOf('Public') >= 0 || false;
- json[isPublic ? 'public_headers' : 'private_headers'][path.basename(fullPathName)] = fullPathName;
- } else {
- json.sources.push(fullPathName);
- }
- })
- );
-
- json.public_headers['Mapbox/Mapbox.h'] = json.public_headers['Mapbox.h'];
- delete json.public_headers['Mapbox.h'];
-
- writeIfModified(`${projectPath}/${name || target}-files.json`, JSON.stringify(json, null, 4) + '\n');
-}
-
-generateFileList('src/core-files.json', [ '.' ], /^(?:src|include)\/(?:mbgl\/)?(.+)\/[^\/]+$/,
- [ 'include/*.hpp', 'include/*.h', 'src/*.hpp', 'src/*.cpp', 'src/*.h', 'src/*.c' ]);
-
-generateFileList('benchmark/benchmark-files.json', [ '.' ], /^benchmark\/(?:(?:src|include)\/)?(?:mbgl\/)?(?:(.+)\/)?[^\/]+$/,
- [ 'benchmark/*.hpp', 'benchmark/*.cpp', 'benchmark/*.host', 'benchmark/*.c' ]);
-
-generateFileList('test/test-files.json', [ '.' ], /^test\/(?:(?:src|include)\/)?(?:mbgl\/)?(?:(.+)\/)?[^\/]+$/,
- [ 'test/*.hpp', 'test/*.cpp', 'test/*.h', 'test/*.c' ]);
-
-generateXcodeSourceList('platform/macos/macos.xcodeproj', 'dynamic', 'sdk');
-
-generateXcodeSourceList('platform/ios/ios.xcodeproj', 'dynamic', 'sdk');
-
-const vendorRegex = /^(?:(?:src|include)\/)?(?:(.+)\/)?[^\/]+$/
-generateFileList('vendor/boost-files.json', [ 'vendor/boost' ], vendorRegex, [ "include/**/*.hpp", "include/**/*.h" ]);
-generateFileList('vendor/cheap-ruler-cpp-files.json', [ 'vendor/cheap-ruler-cpp' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/earcut.hpp-files.json', [ 'vendor/earcut.hpp' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/eternal-files.json', [ 'vendor/eternal' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/geojson-vt-cpp-files.json', [ 'vendor/geojson-vt-cpp' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/icu-files.json', [ 'vendor/icu' ], vendorRegex, [ "include/**/*.h", "src/*.h", "src/*.cpp" ]);
-generateFileList('vendor/mapbox-base-files.json',
- [ 'vendor/mapbox-base/extras/kdbush.hpp',
- 'vendor/mapbox-base/extras/filesystem',
- 'vendor/mapbox-base/extras/expected-lite',
- 'vendor/mapbox-base/extras/rapidjson',
- 'vendor/mapbox-base/mapbox/pixelmatch-cpp',
- 'vendor/mapbox-base/mapbox/geometry.hpp',
- 'vendor/mapbox-base/mapbox/variant',
- 'vendor/mapbox-base/mapbox/optional',
- 'vendor/mapbox-base/mapbox/supercluster.hpp',
- 'vendor/mapbox-base/mapbox/geojson.hpp',
- 'vendor/mapbox-base/mapbox/jni.hpp',
- 'vendor/mapbox-base/mapbox/weak',
- 'vendor/mapbox-base/mapbox/typewrapper',
- 'vendor/mapbox-base/mapbox/value'],
- vendorRegex, [ "include/*.hpp", "include/**/*.hpp", "include/**/*.h", "optional.hpp", ":!:include/jni/string_conversion.hpp" ]);
-generateFileList('vendor/polylabel-files.json', [ 'vendor/polylabel' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/protozero-files.json', [ 'vendor/protozero' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/shelf-pack-cpp-files.json', [ 'vendor/shelf-pack-cpp' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/sqlite-files.json', [ 'vendor/sqlite' ], vendorRegex, [ "include/*.h", "src/*.c" ]);
-generateFileList('vendor/unique_resource-files.json', [ 'vendor/unique_resource' ], vendorRegex, [ "unique_resource.hpp" ]);
-generateFileList('vendor/vector-tile-files.json', [ 'vendor/vector-tile' ], vendorRegex, [ "include/**/*.hpp" ]);
-generateFileList('vendor/wagyu-files.json', [ 'vendor/wagyu' ], vendorRegex, [ "include/**/*.hpp" ]);
diff --git a/scripts/standalone.cmake b/scripts/standalone.cmake
deleted file mode 100644
index b8bcbfa03f..0000000000
--- a/scripts/standalone.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-include(cmake/mason.cmake)
-
-# include once for every platform to get all dependency defines
-set(MBGL_PLATFORM "android")
-include(cmake/mason-dependencies.cmake)
-set(MBGL_PLATFORM "ios")
-include(cmake/mason-dependencies.cmake)
-
-get_cmake_property(_VARS VARIABLES)
-foreach (_VAR ${_VARS})
- if (_VAR MATCHES "^MASON_PACKAGE_.+_NAME$")
- set(_PACKAGE "${${_VAR}}")
- if (MASON_PACKAGE_${_PACKAGE}_HEADER_ONLY)
- file(RELATIVE_PATH _PREFIX "${CMAKE_CURRENT_LIST_DIR}/.." "${MASON_PACKAGE_${_PACKAGE}_PREFIX}")
- message("${_PACKAGE} ${_PREFIX} ${MASON_PACKAGE_${_PACKAGE}_VERSION}")
- endif()
- endif()
-endforeach()
diff --git a/src/core-files.json b/src/core-files.json
deleted file mode 100644
index fe68df16bf..0000000000
--- a/src/core-files.json
+++ /dev/null
@@ -1,815 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "src/csscolorparser/csscolorparser.cpp",
- "src/mbgl/actor/mailbox.cpp",
- "src/mbgl/actor/scheduler.cpp",
- "src/mbgl/annotation/annotation_manager.cpp",
- "src/mbgl/annotation/annotation_source.cpp",
- "src/mbgl/annotation/annotation_tile.cpp",
- "src/mbgl/annotation/fill_annotation_impl.cpp",
- "src/mbgl/annotation/line_annotation_impl.cpp",
- "src/mbgl/annotation/render_annotation_source.cpp",
- "src/mbgl/annotation/shape_annotation_impl.cpp",
- "src/mbgl/annotation/symbol_annotation_impl.cpp",
- "src/mbgl/geometry/dem_data.cpp",
- "src/mbgl/geometry/feature_index.cpp",
- "src/mbgl/geometry/line_atlas.cpp",
- "src/mbgl/gfx/attribute.cpp",
- "src/mbgl/gfx/renderer_backend.cpp",
- "src/mbgl/gfx/rendering_stats.cpp",
- "src/mbgl/gl/attribute.cpp",
- "src/mbgl/gl/command_encoder.cpp",
- "src/mbgl/gl/context.cpp",
- "src/mbgl/gl/custom_layer.cpp",
- "src/mbgl/gl/custom_layer_factory.cpp",
- "src/mbgl/gl/custom_layer_impl.cpp",
- "src/mbgl/gl/debugging_extension.cpp",
- "src/mbgl/gl/enum.cpp",
- "src/mbgl/gl/index_buffer_resource.cpp",
- "src/mbgl/gl/object.cpp",
- "src/mbgl/gl/offscreen_texture.cpp",
- "src/mbgl/gl/render_custom_layer.cpp",
- "src/mbgl/gl/render_pass.cpp",
- "src/mbgl/gl/renderer_backend.cpp",
- "src/mbgl/gl/texture.cpp",
- "src/mbgl/gl/texture_resource.cpp",
- "src/mbgl/gl/uniform.cpp",
- "src/mbgl/gl/upload_pass.cpp",
- "src/mbgl/gl/value.cpp",
- "src/mbgl/gl/vertex_array.cpp",
- "src/mbgl/gl/vertex_buffer_resource.cpp",
- "src/mbgl/layermanager/background_layer_factory.cpp",
- "src/mbgl/layermanager/circle_layer_factory.cpp",
- "src/mbgl/layermanager/fill_extrusion_layer_factory.cpp",
- "src/mbgl/layermanager/fill_layer_factory.cpp",
- "src/mbgl/layermanager/heatmap_layer_factory.cpp",
- "src/mbgl/layermanager/hillshade_layer_factory.cpp",
- "src/mbgl/layermanager/layer_factory.cpp",
- "src/mbgl/layermanager/layer_manager.cpp",
- "src/mbgl/layermanager/line_layer_factory.cpp",
- "src/mbgl/layermanager/raster_layer_factory.cpp",
- "src/mbgl/layermanager/symbol_layer_factory.cpp",
- "src/mbgl/layout/clip_lines.cpp",
- "src/mbgl/layout/merge_lines.cpp",
- "src/mbgl/layout/symbol_instance.cpp",
- "src/mbgl/layout/symbol_layout.cpp",
- "src/mbgl/layout/symbol_projection.cpp",
- "src/mbgl/map/map.cpp",
- "src/mbgl/map/map_impl.cpp",
- "src/mbgl/map/map_options.cpp",
- "src/mbgl/map/transform.cpp",
- "src/mbgl/map/transform_state.cpp",
- "src/mbgl/math/log2.cpp",
- "src/mbgl/platform/gl_functions.cpp",
- "src/mbgl/platform/settings.cpp",
- "src/mbgl/programs/background_program.cpp",
- "src/mbgl/programs/circle_program.cpp",
- "src/mbgl/programs/clipping_mask_program.cpp",
- "src/mbgl/programs/collision_box_program.cpp",
- "src/mbgl/programs/debug_program.cpp",
- "src/mbgl/programs/fill_extrusion_program.cpp",
- "src/mbgl/programs/fill_program.cpp",
- "src/mbgl/programs/gl/background.cpp",
- "src/mbgl/programs/gl/background_pattern.cpp",
- "src/mbgl/programs/gl/circle.cpp",
- "src/mbgl/programs/gl/clipping_mask.cpp",
- "src/mbgl/programs/gl/collision_box.cpp",
- "src/mbgl/programs/gl/collision_circle.cpp",
- "src/mbgl/programs/gl/debug.cpp",
- "src/mbgl/programs/gl/fill.cpp",
- "src/mbgl/programs/gl/fill_extrusion.cpp",
- "src/mbgl/programs/gl/fill_extrusion_pattern.cpp",
- "src/mbgl/programs/gl/fill_outline.cpp",
- "src/mbgl/programs/gl/fill_outline_pattern.cpp",
- "src/mbgl/programs/gl/fill_pattern.cpp",
- "src/mbgl/programs/gl/heatmap.cpp",
- "src/mbgl/programs/gl/heatmap_texture.cpp",
- "src/mbgl/programs/gl/hillshade.cpp",
- "src/mbgl/programs/gl/hillshade_prepare.cpp",
- "src/mbgl/programs/gl/line.cpp",
- "src/mbgl/programs/gl/line_gradient.cpp",
- "src/mbgl/programs/gl/line_pattern.cpp",
- "src/mbgl/programs/gl/line_sdf.cpp",
- "src/mbgl/programs/gl/raster.cpp",
- "src/mbgl/programs/gl/shader_source.cpp",
- "src/mbgl/programs/gl/shaders.cpp",
- "src/mbgl/programs/gl/symbol_icon.cpp",
- "src/mbgl/programs/gl/symbol_sdf_icon.cpp",
- "src/mbgl/programs/gl/symbol_sdf_text.cpp",
- "src/mbgl/programs/gl/symbol_text_and_icon.cpp",
- "src/mbgl/programs/heatmap_program.cpp",
- "src/mbgl/programs/heatmap_texture_program.cpp",
- "src/mbgl/programs/hillshade_prepare_program.cpp",
- "src/mbgl/programs/hillshade_program.cpp",
- "src/mbgl/programs/line_program.cpp",
- "src/mbgl/programs/program_parameters.cpp",
- "src/mbgl/programs/programs.cpp",
- "src/mbgl/programs/raster_program.cpp",
- "src/mbgl/programs/symbol_program.cpp",
- "src/mbgl/renderer/backend_scope.cpp",
- "src/mbgl/renderer/bucket_parameters.cpp",
- "src/mbgl/renderer/buckets/circle_bucket.cpp",
- "src/mbgl/renderer/buckets/debug_bucket.cpp",
- "src/mbgl/renderer/buckets/fill_bucket.cpp",
- "src/mbgl/renderer/buckets/fill_extrusion_bucket.cpp",
- "src/mbgl/renderer/buckets/heatmap_bucket.cpp",
- "src/mbgl/renderer/buckets/hillshade_bucket.cpp",
- "src/mbgl/renderer/buckets/line_bucket.cpp",
- "src/mbgl/renderer/buckets/raster_bucket.cpp",
- "src/mbgl/renderer/buckets/symbol_bucket.cpp",
- "src/mbgl/renderer/cross_faded_property_evaluator.cpp",
- "src/mbgl/renderer/group_by_layout.cpp",
- "src/mbgl/renderer/image_atlas.cpp",
- "src/mbgl/renderer/image_manager.cpp",
- "src/mbgl/renderer/layers/render_background_layer.cpp",
- "src/mbgl/renderer/layers/render_circle_layer.cpp",
- "src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp",
- "src/mbgl/renderer/layers/render_fill_layer.cpp",
- "src/mbgl/renderer/layers/render_heatmap_layer.cpp",
- "src/mbgl/renderer/layers/render_hillshade_layer.cpp",
- "src/mbgl/renderer/layers/render_line_layer.cpp",
- "src/mbgl/renderer/layers/render_raster_layer.cpp",
- "src/mbgl/renderer/layers/render_symbol_layer.cpp",
- "src/mbgl/renderer/paint_parameters.cpp",
- "src/mbgl/renderer/pattern_atlas.cpp",
- "src/mbgl/renderer/render_layer.cpp",
- "src/mbgl/renderer/render_light.cpp",
- "src/mbgl/renderer/render_orchestrator.cpp",
- "src/mbgl/renderer/render_source.cpp",
- "src/mbgl/renderer/render_static_data.cpp",
- "src/mbgl/renderer/render_tile.cpp",
- "src/mbgl/renderer/renderer.cpp",
- "src/mbgl/renderer/renderer_impl.cpp",
- "src/mbgl/renderer/renderer_state.cpp",
- "src/mbgl/renderer/source_state.cpp",
- "src/mbgl/renderer/sources/render_custom_geometry_source.cpp",
- "src/mbgl/renderer/sources/render_geojson_source.cpp",
- "src/mbgl/renderer/sources/render_image_source.cpp",
- "src/mbgl/renderer/sources/render_raster_dem_source.cpp",
- "src/mbgl/renderer/sources/render_raster_source.cpp",
- "src/mbgl/renderer/sources/render_tile_source.cpp",
- "src/mbgl/renderer/sources/render_vector_source.cpp",
- "src/mbgl/renderer/style_diff.cpp",
- "src/mbgl/renderer/tile_pyramid.cpp",
- "src/mbgl/renderer/tile_render_data.cpp",
- "src/mbgl/sprite/sprite_loader.cpp",
- "src/mbgl/sprite/sprite_loader_worker.cpp",
- "src/mbgl/sprite/sprite_parser.cpp",
- "src/mbgl/storage/file_source_manager.cpp",
- "src/mbgl/storage/network_status.cpp",
- "src/mbgl/storage/resource.cpp",
- "src/mbgl/storage/resource_options.cpp",
- "src/mbgl/storage/resource_transform.cpp",
- "src/mbgl/storage/response.cpp",
- "src/mbgl/style/conversion/color_ramp_property_value.cpp",
- "src/mbgl/style/conversion/constant.cpp",
- "src/mbgl/style/conversion/coordinate.cpp",
- "src/mbgl/style/conversion/custom_geometry_source_options.cpp",
- "src/mbgl/style/conversion/filter.cpp",
- "src/mbgl/style/conversion/function.cpp",
- "src/mbgl/style/conversion/geojson.cpp",
- "src/mbgl/style/conversion/geojson_options.cpp",
- "src/mbgl/style/conversion/get_json_type.cpp",
- "src/mbgl/style/conversion/layer.cpp",
- "src/mbgl/style/conversion/light.cpp",
- "src/mbgl/style/conversion/position.cpp",
- "src/mbgl/style/conversion/property_value.cpp",
- "src/mbgl/style/conversion/source.cpp",
- "src/mbgl/style/conversion/tileset.cpp",
- "src/mbgl/style/conversion/transition_options.cpp",
- "src/mbgl/style/custom_tile_loader.cpp",
- "src/mbgl/style/expression/assertion.cpp",
- "src/mbgl/style/expression/at.cpp",
- "src/mbgl/style/expression/boolean_operator.cpp",
- "src/mbgl/style/expression/case.cpp",
- "src/mbgl/style/expression/check_subtype.cpp",
- "src/mbgl/style/expression/coalesce.cpp",
- "src/mbgl/style/expression/coercion.cpp",
- "src/mbgl/style/expression/collator.cpp",
- "src/mbgl/style/expression/collator_expression.cpp",
- "src/mbgl/style/expression/comparison.cpp",
- "src/mbgl/style/expression/compound_expression.cpp",
- "src/mbgl/style/expression/dsl.cpp",
- "src/mbgl/style/expression/expression.cpp",
- "src/mbgl/style/expression/find_zoom_curve.cpp",
- "src/mbgl/style/expression/format_expression.cpp",
- "src/mbgl/style/expression/formatted.cpp",
- "src/mbgl/style/expression/get_covering_stops.cpp",
- "src/mbgl/style/expression/image.cpp",
- "src/mbgl/style/expression/image_expression.cpp",
- "src/mbgl/style/expression/interpolate.cpp",
- "src/mbgl/style/expression/is_constant.cpp",
- "src/mbgl/style/expression/is_expression.cpp",
- "src/mbgl/style/expression/length.cpp",
- "src/mbgl/style/expression/let.cpp",
- "src/mbgl/style/expression/literal.cpp",
- "src/mbgl/style/expression/match.cpp",
- "src/mbgl/style/expression/number_format.cpp",
- "src/mbgl/style/expression/parsing_context.cpp",
- "src/mbgl/style/expression/step.cpp",
- "src/mbgl/style/expression/util.cpp",
- "src/mbgl/style/expression/value.cpp",
- "src/mbgl/style/filter.cpp",
- "src/mbgl/style/image.cpp",
- "src/mbgl/style/image_impl.cpp",
- "src/mbgl/style/layer.cpp",
- "src/mbgl/style/layer_impl.cpp",
- "src/mbgl/style/layers/background_layer.cpp",
- "src/mbgl/style/layers/background_layer_impl.cpp",
- "src/mbgl/style/layers/background_layer_properties.cpp",
- "src/mbgl/style/layers/circle_layer.cpp",
- "src/mbgl/style/layers/circle_layer_impl.cpp",
- "src/mbgl/style/layers/circle_layer_properties.cpp",
- "src/mbgl/style/layers/fill_extrusion_layer.cpp",
- "src/mbgl/style/layers/fill_extrusion_layer_impl.cpp",
- "src/mbgl/style/layers/fill_extrusion_layer_properties.cpp",
- "src/mbgl/style/layers/fill_layer.cpp",
- "src/mbgl/style/layers/fill_layer_impl.cpp",
- "src/mbgl/style/layers/fill_layer_properties.cpp",
- "src/mbgl/style/layers/heatmap_layer.cpp",
- "src/mbgl/style/layers/heatmap_layer_impl.cpp",
- "src/mbgl/style/layers/heatmap_layer_properties.cpp",
- "src/mbgl/style/layers/hillshade_layer.cpp",
- "src/mbgl/style/layers/hillshade_layer_impl.cpp",
- "src/mbgl/style/layers/hillshade_layer_properties.cpp",
- "src/mbgl/style/layers/line_layer.cpp",
- "src/mbgl/style/layers/line_layer_impl.cpp",
- "src/mbgl/style/layers/line_layer_properties.cpp",
- "src/mbgl/style/layers/raster_layer.cpp",
- "src/mbgl/style/layers/raster_layer_impl.cpp",
- "src/mbgl/style/layers/raster_layer_properties.cpp",
- "src/mbgl/style/layers/symbol_layer.cpp",
- "src/mbgl/style/layers/symbol_layer_impl.cpp",
- "src/mbgl/style/layers/symbol_layer_properties.cpp",
- "src/mbgl/style/light.cpp",
- "src/mbgl/style/light_impl.cpp",
- "src/mbgl/style/parser.cpp",
- "src/mbgl/style/property_expression.cpp",
- "src/mbgl/style/source.cpp",
- "src/mbgl/style/source_impl.cpp",
- "src/mbgl/style/sources/custom_geometry_source.cpp",
- "src/mbgl/style/sources/custom_geometry_source_impl.cpp",
- "src/mbgl/style/sources/geojson_source.cpp",
- "src/mbgl/style/sources/geojson_source_impl.cpp",
- "src/mbgl/style/sources/image_source.cpp",
- "src/mbgl/style/sources/image_source_impl.cpp",
- "src/mbgl/style/sources/raster_dem_source.cpp",
- "src/mbgl/style/sources/raster_source.cpp",
- "src/mbgl/style/sources/raster_source_impl.cpp",
- "src/mbgl/style/sources/vector_source.cpp",
- "src/mbgl/style/sources/vector_source_impl.cpp",
- "src/mbgl/style/style.cpp",
- "src/mbgl/style/style_impl.cpp",
- "src/mbgl/style/types.cpp",
- "src/mbgl/text/check_max_angle.cpp",
- "src/mbgl/text/collision_feature.cpp",
- "src/mbgl/text/collision_index.cpp",
- "src/mbgl/text/cross_tile_symbol_index.cpp",
- "src/mbgl/text/get_anchors.cpp",
- "src/mbgl/text/glyph.cpp",
- "src/mbgl/text/glyph_atlas.cpp",
- "src/mbgl/text/glyph_manager.cpp",
- "src/mbgl/text/glyph_pbf.cpp",
- "src/mbgl/text/language_tag.cpp",
- "src/mbgl/text/placement.cpp",
- "src/mbgl/text/quads.cpp",
- "src/mbgl/text/shaping.cpp",
- "src/mbgl/text/tagged_string.cpp",
- "src/mbgl/tile/custom_geometry_tile.cpp",
- "src/mbgl/tile/geojson_tile.cpp",
- "src/mbgl/tile/geometry_tile.cpp",
- "src/mbgl/tile/geometry_tile_data.cpp",
- "src/mbgl/tile/geometry_tile_worker.cpp",
- "src/mbgl/tile/raster_dem_tile.cpp",
- "src/mbgl/tile/raster_dem_tile_worker.cpp",
- "src/mbgl/tile/raster_tile.cpp",
- "src/mbgl/tile/raster_tile_worker.cpp",
- "src/mbgl/tile/tile.cpp",
- "src/mbgl/tile/tile_cache.cpp",
- "src/mbgl/tile/tile_id_hash.cpp",
- "src/mbgl/tile/tile_id_io.cpp",
- "src/mbgl/tile/vector_tile.cpp",
- "src/mbgl/tile/vector_tile_data.cpp",
- "src/mbgl/util/chrono.cpp",
- "src/mbgl/util/color.cpp",
- "src/mbgl/util/constants.cpp",
- "src/mbgl/util/convert.cpp",
- "src/mbgl/util/dtoa.cpp",
- "src/mbgl/util/event.cpp",
- "src/mbgl/util/font_stack.cpp",
- "src/mbgl/util/geo.cpp",
- "src/mbgl/util/geojson_impl.cpp",
- "src/mbgl/util/grid_index.cpp",
- "src/mbgl/util/http_header.cpp",
- "src/mbgl/util/http_timeout.cpp",
- "src/mbgl/util/i18n.cpp",
- "src/mbgl/util/id.cpp",
- "src/mbgl/util/interpolate.cpp",
- "src/mbgl/util/intersection_tests.cpp",
- "src/mbgl/util/io.cpp",
- "src/mbgl/util/logging.cpp",
- "src/mbgl/util/mapbox.cpp",
- "src/mbgl/util/mat2.cpp",
- "src/mbgl/util/mat3.cpp",
- "src/mbgl/util/mat4.cpp",
- "src/mbgl/util/premultiply.cpp",
- "src/mbgl/util/rapidjson.cpp",
- "src/mbgl/util/stopwatch.cpp",
- "src/mbgl/util/string.cpp",
- "src/mbgl/util/thread.cpp",
- "src/mbgl/util/thread_pool.cpp",
- "src/mbgl/util/tile_cover.cpp",
- "src/mbgl/util/tile_cover_impl.cpp",
- "src/mbgl/util/tiny_sdf.cpp",
- "src/mbgl/util/url.cpp",
- "src/mbgl/util/version.cpp",
- "src/mbgl/util/work_request.cpp",
- "src/parsedate/parsedate.cpp"
- ],
- "public_headers": {
- "mbgl/actor/actor.hpp": "include/mbgl/actor/actor.hpp",
- "mbgl/actor/actor_ref.hpp": "include/mbgl/actor/actor_ref.hpp",
- "mbgl/actor/aspiring_actor.hpp": "include/mbgl/actor/aspiring_actor.hpp",
- "mbgl/actor/established_actor.hpp": "include/mbgl/actor/established_actor.hpp",
- "mbgl/actor/mailbox.hpp": "include/mbgl/actor/mailbox.hpp",
- "mbgl/actor/message.hpp": "include/mbgl/actor/message.hpp",
- "mbgl/actor/scheduler.hpp": "include/mbgl/actor/scheduler.hpp",
- "mbgl/annotation/annotation.hpp": "include/mbgl/annotation/annotation.hpp",
- "mbgl/gfx/backend.hpp": "include/mbgl/gfx/backend.hpp",
- "mbgl/gfx/backend_scope.hpp": "include/mbgl/gfx/backend_scope.hpp",
- "mbgl/gfx/renderable.hpp": "include/mbgl/gfx/renderable.hpp",
- "mbgl/gfx/renderer_backend.hpp": "include/mbgl/gfx/renderer_backend.hpp",
- "mbgl/gfx/rendering_stats.hpp": "include/mbgl/gfx/rendering_stats.hpp",
- "mbgl/gl/custom_layer.hpp": "include/mbgl/gl/custom_layer.hpp",
- "mbgl/gl/custom_layer_factory.hpp": "include/mbgl/gl/custom_layer_factory.hpp",
- "mbgl/gl/renderable_resource.hpp": "include/mbgl/gl/renderable_resource.hpp",
- "mbgl/gl/renderer_backend.hpp": "include/mbgl/gl/renderer_backend.hpp",
- "mbgl/i18n/collator.hpp": "include/mbgl/i18n/collator.hpp",
- "mbgl/i18n/number_format.hpp": "include/mbgl/i18n/number_format.hpp",
- "mbgl/layermanager/background_layer_factory.hpp": "include/mbgl/layermanager/background_layer_factory.hpp",
- "mbgl/layermanager/circle_layer_factory.hpp": "include/mbgl/layermanager/circle_layer_factory.hpp",
- "mbgl/layermanager/fill_extrusion_layer_factory.hpp": "include/mbgl/layermanager/fill_extrusion_layer_factory.hpp",
- "mbgl/layermanager/fill_layer_factory.hpp": "include/mbgl/layermanager/fill_layer_factory.hpp",
- "mbgl/layermanager/heatmap_layer_factory.hpp": "include/mbgl/layermanager/heatmap_layer_factory.hpp",
- "mbgl/layermanager/hillshade_layer_factory.hpp": "include/mbgl/layermanager/hillshade_layer_factory.hpp",
- "mbgl/layermanager/layer_factory.hpp": "include/mbgl/layermanager/layer_factory.hpp",
- "mbgl/layermanager/layer_manager.hpp": "include/mbgl/layermanager/layer_manager.hpp",
- "mbgl/layermanager/line_layer_factory.hpp": "include/mbgl/layermanager/line_layer_factory.hpp",
- "mbgl/layermanager/raster_layer_factory.hpp": "include/mbgl/layermanager/raster_layer_factory.hpp",
- "mbgl/layermanager/symbol_layer_factory.hpp": "include/mbgl/layermanager/symbol_layer_factory.hpp",
- "mbgl/map/bound_options.hpp": "include/mbgl/map/bound_options.hpp",
- "mbgl/map/camera.hpp": "include/mbgl/map/camera.hpp",
- "mbgl/map/change.hpp": "include/mbgl/map/change.hpp",
- "mbgl/map/map.hpp": "include/mbgl/map/map.hpp",
- "mbgl/map/map_observer.hpp": "include/mbgl/map/map_observer.hpp",
- "mbgl/map/map_options.hpp": "include/mbgl/map/map_options.hpp",
- "mbgl/map/mode.hpp": "include/mbgl/map/mode.hpp",
- "mbgl/map/projection_mode.hpp": "include/mbgl/map/projection_mode.hpp",
- "mbgl/math/clamp.hpp": "include/mbgl/math/clamp.hpp",
- "mbgl/math/log2.hpp": "include/mbgl/math/log2.hpp",
- "mbgl/math/minmax.hpp": "include/mbgl/math/minmax.hpp",
- "mbgl/math/wrap.hpp": "include/mbgl/math/wrap.hpp",
- "mbgl/platform/gl_functions.hpp": "include/mbgl/platform/gl_functions.hpp",
- "mbgl/platform/settings.hpp": "include/mbgl/platform/settings.hpp",
- "mbgl/platform/thread.hpp": "include/mbgl/platform/thread.hpp",
- "mbgl/renderer/query.hpp": "include/mbgl/renderer/query.hpp",
- "mbgl/renderer/renderer.hpp": "include/mbgl/renderer/renderer.hpp",
- "mbgl/renderer/renderer_frontend.hpp": "include/mbgl/renderer/renderer_frontend.hpp",
- "mbgl/renderer/renderer_observer.hpp": "include/mbgl/renderer/renderer_observer.hpp",
- "mbgl/renderer/renderer_state.hpp": "include/mbgl/renderer/renderer_state.hpp",
- "mbgl/storage/database_file_source.hpp": "include/mbgl/storage/database_file_source.hpp",
- "mbgl/storage/file_source.hpp": "include/mbgl/storage/file_source.hpp",
- "mbgl/storage/file_source_manager.hpp": "include/mbgl/storage/file_source_manager.hpp",
- "mbgl/storage/network_status.hpp": "include/mbgl/storage/network_status.hpp",
- "mbgl/storage/offline.hpp": "include/mbgl/storage/offline.hpp",
- "mbgl/storage/online_file_source.hpp": "include/mbgl/storage/online_file_source.hpp",
- "mbgl/storage/resource.hpp": "include/mbgl/storage/resource.hpp",
- "mbgl/storage/resource_options.hpp": "include/mbgl/storage/resource_options.hpp",
- "mbgl/storage/resource_transform.hpp": "include/mbgl/storage/resource_transform.hpp",
- "mbgl/storage/response.hpp": "include/mbgl/storage/response.hpp",
- "mbgl/style/color_ramp_property_value.hpp": "include/mbgl/style/color_ramp_property_value.hpp",
- "mbgl/style/conversion.hpp": "include/mbgl/style/conversion.hpp",
- "mbgl/style/conversion/color_ramp_property_value.hpp": "include/mbgl/style/conversion/color_ramp_property_value.hpp",
- "mbgl/style/conversion/constant.hpp": "include/mbgl/style/conversion/constant.hpp",
- "mbgl/style/conversion/coordinate.hpp": "include/mbgl/style/conversion/coordinate.hpp",
- "mbgl/style/conversion/custom_geometry_source_options.hpp": "include/mbgl/style/conversion/custom_geometry_source_options.hpp",
- "mbgl/style/conversion/filter.hpp": "include/mbgl/style/conversion/filter.hpp",
- "mbgl/style/conversion/function.hpp": "include/mbgl/style/conversion/function.hpp",
- "mbgl/style/conversion/geojson.hpp": "include/mbgl/style/conversion/geojson.hpp",
- "mbgl/style/conversion/geojson_options.hpp": "include/mbgl/style/conversion/geojson_options.hpp",
- "mbgl/style/conversion/get_json_type.hpp": "include/mbgl/style/conversion/get_json_type.hpp",
- "mbgl/style/conversion/layer.hpp": "include/mbgl/style/conversion/layer.hpp",
- "mbgl/style/conversion/light.hpp": "include/mbgl/style/conversion/light.hpp",
- "mbgl/style/conversion/position.hpp": "include/mbgl/style/conversion/position.hpp",
- "mbgl/style/conversion/property_value.hpp": "include/mbgl/style/conversion/property_value.hpp",
- "mbgl/style/conversion/source.hpp": "include/mbgl/style/conversion/source.hpp",
- "mbgl/style/conversion/tileset.hpp": "include/mbgl/style/conversion/tileset.hpp",
- "mbgl/style/conversion/transition_options.hpp": "include/mbgl/style/conversion/transition_options.hpp",
- "mbgl/style/conversion_impl.hpp": "include/mbgl/style/conversion_impl.hpp",
- "mbgl/style/expression/assertion.hpp": "include/mbgl/style/expression/assertion.hpp",
- "mbgl/style/expression/at.hpp": "include/mbgl/style/expression/at.hpp",
- "mbgl/style/expression/boolean_operator.hpp": "include/mbgl/style/expression/boolean_operator.hpp",
- "mbgl/style/expression/case.hpp": "include/mbgl/style/expression/case.hpp",
- "mbgl/style/expression/check_subtype.hpp": "include/mbgl/style/expression/check_subtype.hpp",
- "mbgl/style/expression/coalesce.hpp": "include/mbgl/style/expression/coalesce.hpp",
- "mbgl/style/expression/coercion.hpp": "include/mbgl/style/expression/coercion.hpp",
- "mbgl/style/expression/collator.hpp": "include/mbgl/style/expression/collator.hpp",
- "mbgl/style/expression/collator_expression.hpp": "include/mbgl/style/expression/collator_expression.hpp",
- "mbgl/style/expression/comparison.hpp": "include/mbgl/style/expression/comparison.hpp",
- "mbgl/style/expression/compound_expression.hpp": "include/mbgl/style/expression/compound_expression.hpp",
- "mbgl/style/expression/dsl.hpp": "include/mbgl/style/expression/dsl.hpp",
- "mbgl/style/expression/error.hpp": "include/mbgl/style/expression/error.hpp",
- "mbgl/style/expression/expression.hpp": "include/mbgl/style/expression/expression.hpp",
- "mbgl/style/expression/find_zoom_curve.hpp": "include/mbgl/style/expression/find_zoom_curve.hpp",
- "mbgl/style/expression/format_expression.hpp": "include/mbgl/style/expression/format_expression.hpp",
- "mbgl/style/expression/format_section_override.hpp": "include/mbgl/style/expression/format_section_override.hpp",
- "mbgl/style/expression/formatted.hpp": "include/mbgl/style/expression/formatted.hpp",
- "mbgl/style/expression/get_covering_stops.hpp": "include/mbgl/style/expression/get_covering_stops.hpp",
- "mbgl/style/expression/image.hpp": "include/mbgl/style/expression/image.hpp",
- "mbgl/style/expression/image_expression.hpp": "include/mbgl/style/expression/image_expression.hpp",
- "mbgl/style/expression/interpolate.hpp": "include/mbgl/style/expression/interpolate.hpp",
- "mbgl/style/expression/interpolator.hpp": "include/mbgl/style/expression/interpolator.hpp",
- "mbgl/style/expression/is_constant.hpp": "include/mbgl/style/expression/is_constant.hpp",
- "mbgl/style/expression/is_expression.hpp": "include/mbgl/style/expression/is_expression.hpp",
- "mbgl/style/expression/length.hpp": "include/mbgl/style/expression/length.hpp",
- "mbgl/style/expression/let.hpp": "include/mbgl/style/expression/let.hpp",
- "mbgl/style/expression/literal.hpp": "include/mbgl/style/expression/literal.hpp",
- "mbgl/style/expression/match.hpp": "include/mbgl/style/expression/match.hpp",
- "mbgl/style/expression/number_format.hpp": "include/mbgl/style/expression/number_format.hpp",
- "mbgl/style/expression/parsing_context.hpp": "include/mbgl/style/expression/parsing_context.hpp",
- "mbgl/style/expression/step.hpp": "include/mbgl/style/expression/step.hpp",
- "mbgl/style/expression/type.hpp": "include/mbgl/style/expression/type.hpp",
- "mbgl/style/expression/value.hpp": "include/mbgl/style/expression/value.hpp",
- "mbgl/style/filter.hpp": "include/mbgl/style/filter.hpp",
- "mbgl/style/image.hpp": "include/mbgl/style/image.hpp",
- "mbgl/style/layer.hpp": "include/mbgl/style/layer.hpp",
- "mbgl/style/layer_properties.hpp": "include/mbgl/style/layer_properties.hpp",
- "mbgl/style/layers/background_layer.hpp": "include/mbgl/style/layers/background_layer.hpp",
- "mbgl/style/layers/circle_layer.hpp": "include/mbgl/style/layers/circle_layer.hpp",
- "mbgl/style/layers/fill_extrusion_layer.hpp": "include/mbgl/style/layers/fill_extrusion_layer.hpp",
- "mbgl/style/layers/fill_layer.hpp": "include/mbgl/style/layers/fill_layer.hpp",
- "mbgl/style/layers/heatmap_layer.hpp": "include/mbgl/style/layers/heatmap_layer.hpp",
- "mbgl/style/layers/hillshade_layer.hpp": "include/mbgl/style/layers/hillshade_layer.hpp",
- "mbgl/style/layers/line_layer.hpp": "include/mbgl/style/layers/line_layer.hpp",
- "mbgl/style/layers/raster_layer.hpp": "include/mbgl/style/layers/raster_layer.hpp",
- "mbgl/style/layers/symbol_layer.hpp": "include/mbgl/style/layers/symbol_layer.hpp",
- "mbgl/style/light.hpp": "include/mbgl/style/light.hpp",
- "mbgl/style/position.hpp": "include/mbgl/style/position.hpp",
- "mbgl/style/property_expression.hpp": "include/mbgl/style/property_expression.hpp",
- "mbgl/style/property_value.hpp": "include/mbgl/style/property_value.hpp",
- "mbgl/style/source.hpp": "include/mbgl/style/source.hpp",
- "mbgl/style/sources/custom_geometry_source.hpp": "include/mbgl/style/sources/custom_geometry_source.hpp",
- "mbgl/style/sources/geojson_source.hpp": "include/mbgl/style/sources/geojson_source.hpp",
- "mbgl/style/sources/image_source.hpp": "include/mbgl/style/sources/image_source.hpp",
- "mbgl/style/sources/raster_dem_source.hpp": "include/mbgl/style/sources/raster_dem_source.hpp",
- "mbgl/style/sources/raster_source.hpp": "include/mbgl/style/sources/raster_source.hpp",
- "mbgl/style/sources/vector_source.hpp": "include/mbgl/style/sources/vector_source.hpp",
- "mbgl/style/style.hpp": "include/mbgl/style/style.hpp",
- "mbgl/style/style_property.hpp": "include/mbgl/style/style_property.hpp",
- "mbgl/style/transition_options.hpp": "include/mbgl/style/transition_options.hpp",
- "mbgl/style/types.hpp": "include/mbgl/style/types.hpp",
- "mbgl/style/undefined.hpp": "include/mbgl/style/undefined.hpp",
- "mbgl/tile/tile_id.hpp": "include/mbgl/tile/tile_id.hpp",
- "mbgl/tile/tile_necessity.hpp": "include/mbgl/tile/tile_necessity.hpp",
- "mbgl/util/async_request.hpp": "include/mbgl/util/async_request.hpp",
- "mbgl/util/async_task.hpp": "include/mbgl/util/async_task.hpp",
- "mbgl/util/bitmask_operations.hpp": "include/mbgl/util/bitmask_operations.hpp",
- "mbgl/util/char_array_buffer.hpp": "include/mbgl/util/char_array_buffer.hpp",
- "mbgl/util/chrono.hpp": "include/mbgl/util/chrono.hpp",
- "mbgl/util/color.hpp": "include/mbgl/util/color.hpp",
- "mbgl/util/compression.hpp": "include/mbgl/util/compression.hpp",
- "mbgl/util/constants.hpp": "include/mbgl/util/constants.hpp",
- "mbgl/util/convert.hpp": "include/mbgl/util/convert.hpp",
- "mbgl/util/default_styles.hpp": "include/mbgl/util/default_styles.hpp",
- "mbgl/util/enum.hpp": "include/mbgl/util/enum.hpp",
- "mbgl/util/event.hpp": "include/mbgl/util/event.hpp",
- "mbgl/util/exception.hpp": "include/mbgl/util/exception.hpp",
- "mbgl/util/expected.hpp": "include/mbgl/util/expected.hpp",
- "mbgl/util/feature.hpp": "include/mbgl/util/feature.hpp",
- "mbgl/util/font_stack.hpp": "include/mbgl/util/font_stack.hpp",
- "mbgl/util/geo.hpp": "include/mbgl/util/geo.hpp",
- "mbgl/util/geojson.hpp": "include/mbgl/util/geojson.hpp",
- "mbgl/util/geometry.hpp": "include/mbgl/util/geometry.hpp",
- "mbgl/util/ignore.hpp": "include/mbgl/util/ignore.hpp",
- "mbgl/util/image.hpp": "include/mbgl/util/image.hpp",
- "mbgl/util/immutable.hpp": "include/mbgl/util/immutable.hpp",
- "mbgl/util/indexed_tuple.hpp": "include/mbgl/util/indexed_tuple.hpp",
- "mbgl/util/interpolate.hpp": "include/mbgl/util/interpolate.hpp",
- "mbgl/util/logging.hpp": "include/mbgl/util/logging.hpp",
- "mbgl/util/monotonic_timer.hpp": "include/mbgl/util/monotonic_timer.hpp",
- "mbgl/util/noncopyable.hpp": "include/mbgl/util/noncopyable.hpp",
- "mbgl/util/optional.hpp": "include/mbgl/util/optional.hpp",
- "mbgl/util/platform.hpp": "include/mbgl/util/platform.hpp",
- "mbgl/util/premultiply.hpp": "include/mbgl/util/premultiply.hpp",
- "mbgl/util/projection.hpp": "include/mbgl/util/projection.hpp",
- "mbgl/util/range.hpp": "include/mbgl/util/range.hpp",
- "mbgl/util/run_loop.hpp": "include/mbgl/util/run_loop.hpp",
- "mbgl/util/size.hpp": "include/mbgl/util/size.hpp",
- "mbgl/util/string.hpp": "include/mbgl/util/string.hpp",
- "mbgl/util/thread.hpp": "include/mbgl/util/thread.hpp",
- "mbgl/util/tileset.hpp": "include/mbgl/util/tileset.hpp",
- "mbgl/util/timer.hpp": "include/mbgl/util/timer.hpp",
- "mbgl/util/traits.hpp": "include/mbgl/util/traits.hpp",
- "mbgl/util/type_list.hpp": "include/mbgl/util/type_list.hpp",
- "mbgl/util/unitbezier.hpp": "include/mbgl/util/unitbezier.hpp",
- "mbgl/util/util.hpp": "include/mbgl/util/util.hpp",
- "mbgl/util/variant.hpp": "include/mbgl/util/variant.hpp",
- "mbgl/util/work_request.hpp": "include/mbgl/util/work_request.hpp",
- "mbgl/util/work_task.hpp": "include/mbgl/util/work_task.hpp",
- "mbgl/util/work_task_impl.hpp": "include/mbgl/util/work_task_impl.hpp"
- },
- "private_headers": {
- "csscolorparser/csscolorparser.hpp": "src/csscolorparser/csscolorparser.hpp",
- "mbgl/algorithm/update_renderables.hpp": "src/mbgl/algorithm/update_renderables.hpp",
- "mbgl/algorithm/update_tile_masks.hpp": "src/mbgl/algorithm/update_tile_masks.hpp",
- "mbgl/annotation/annotation_manager.hpp": "src/mbgl/annotation/annotation_manager.hpp",
- "mbgl/annotation/annotation_source.hpp": "src/mbgl/annotation/annotation_source.hpp",
- "mbgl/annotation/annotation_tile.hpp": "src/mbgl/annotation/annotation_tile.hpp",
- "mbgl/annotation/fill_annotation_impl.hpp": "src/mbgl/annotation/fill_annotation_impl.hpp",
- "mbgl/annotation/line_annotation_impl.hpp": "src/mbgl/annotation/line_annotation_impl.hpp",
- "mbgl/annotation/render_annotation_source.hpp": "src/mbgl/annotation/render_annotation_source.hpp",
- "mbgl/annotation/shape_annotation_impl.hpp": "src/mbgl/annotation/shape_annotation_impl.hpp",
- "mbgl/annotation/symbol_annotation_impl.hpp": "src/mbgl/annotation/symbol_annotation_impl.hpp",
- "mbgl/geometry/anchor.hpp": "src/mbgl/geometry/anchor.hpp",
- "mbgl/geometry/debug_font_data.hpp": "src/mbgl/geometry/debug_font_data.hpp",
- "mbgl/geometry/dem_data.hpp": "src/mbgl/geometry/dem_data.hpp",
- "mbgl/geometry/feature_index.hpp": "src/mbgl/geometry/feature_index.hpp",
- "mbgl/geometry/line_atlas.hpp": "src/mbgl/geometry/line_atlas.hpp",
- "mbgl/gfx/attribute.hpp": "src/mbgl/gfx/attribute.hpp",
- "mbgl/gfx/color_mode.hpp": "src/mbgl/gfx/color_mode.hpp",
- "mbgl/gfx/command_encoder.hpp": "src/mbgl/gfx/command_encoder.hpp",
- "mbgl/gfx/context.hpp": "src/mbgl/gfx/context.hpp",
- "mbgl/gfx/cull_face_mode.hpp": "src/mbgl/gfx/cull_face_mode.hpp",
- "mbgl/gfx/debug_group.hpp": "src/mbgl/gfx/debug_group.hpp",
- "mbgl/gfx/depth_mode.hpp": "src/mbgl/gfx/depth_mode.hpp",
- "mbgl/gfx/draw_mode.hpp": "src/mbgl/gfx/draw_mode.hpp",
- "mbgl/gfx/draw_scope.hpp": "src/mbgl/gfx/draw_scope.hpp",
- "mbgl/gfx/index_buffer.hpp": "src/mbgl/gfx/index_buffer.hpp",
- "mbgl/gfx/index_vector.hpp": "src/mbgl/gfx/index_vector.hpp",
- "mbgl/gfx/offscreen_texture.hpp": "src/mbgl/gfx/offscreen_texture.hpp",
- "mbgl/gfx/program.hpp": "src/mbgl/gfx/program.hpp",
- "mbgl/gfx/render_pass.hpp": "src/mbgl/gfx/render_pass.hpp",
- "mbgl/gfx/renderbuffer.hpp": "src/mbgl/gfx/renderbuffer.hpp",
- "mbgl/gfx/stencil_mode.hpp": "src/mbgl/gfx/stencil_mode.hpp",
- "mbgl/gfx/texture.hpp": "src/mbgl/gfx/texture.hpp",
- "mbgl/gfx/types.hpp": "src/mbgl/gfx/types.hpp",
- "mbgl/gfx/uniform.hpp": "src/mbgl/gfx/uniform.hpp",
- "mbgl/gfx/upload_pass.hpp": "src/mbgl/gfx/upload_pass.hpp",
- "mbgl/gfx/vertex_buffer.hpp": "src/mbgl/gfx/vertex_buffer.hpp",
- "mbgl/gfx/vertex_vector.hpp": "src/mbgl/gfx/vertex_vector.hpp",
- "mbgl/gl/attribute.hpp": "src/mbgl/gl/attribute.hpp",
- "mbgl/gl/command_encoder.hpp": "src/mbgl/gl/command_encoder.hpp",
- "mbgl/gl/context.hpp": "src/mbgl/gl/context.hpp",
- "mbgl/gl/custom_layer_impl.hpp": "src/mbgl/gl/custom_layer_impl.hpp",
- "mbgl/gl/debugging_extension.hpp": "src/mbgl/gl/debugging_extension.hpp",
- "mbgl/gl/defines.hpp": "src/mbgl/gl/defines.hpp",
- "mbgl/gl/draw_scope_resource.hpp": "src/mbgl/gl/draw_scope_resource.hpp",
- "mbgl/gl/enum.hpp": "src/mbgl/gl/enum.hpp",
- "mbgl/gl/extension.hpp": "src/mbgl/gl/extension.hpp",
- "mbgl/gl/framebuffer.hpp": "src/mbgl/gl/framebuffer.hpp",
- "mbgl/gl/index_buffer_resource.hpp": "src/mbgl/gl/index_buffer_resource.hpp",
- "mbgl/gl/object.hpp": "src/mbgl/gl/object.hpp",
- "mbgl/gl/offscreen_texture.hpp": "src/mbgl/gl/offscreen_texture.hpp",
- "mbgl/gl/program.hpp": "src/mbgl/gl/program.hpp",
- "mbgl/gl/render_custom_layer.hpp": "src/mbgl/gl/render_custom_layer.hpp",
- "mbgl/gl/render_pass.hpp": "src/mbgl/gl/render_pass.hpp",
- "mbgl/gl/renderbuffer_resource.hpp": "src/mbgl/gl/renderbuffer_resource.hpp",
- "mbgl/gl/state.hpp": "src/mbgl/gl/state.hpp",
- "mbgl/gl/texture.hpp": "src/mbgl/gl/texture.hpp",
- "mbgl/gl/texture_resource.hpp": "src/mbgl/gl/texture_resource.hpp",
- "mbgl/gl/types.hpp": "src/mbgl/gl/types.hpp",
- "mbgl/gl/uniform.hpp": "src/mbgl/gl/uniform.hpp",
- "mbgl/gl/upload_pass.hpp": "src/mbgl/gl/upload_pass.hpp",
- "mbgl/gl/value.hpp": "src/mbgl/gl/value.hpp",
- "mbgl/gl/vertex_array.hpp": "src/mbgl/gl/vertex_array.hpp",
- "mbgl/gl/vertex_array_extension.hpp": "src/mbgl/gl/vertex_array_extension.hpp",
- "mbgl/gl/vertex_buffer_resource.hpp": "src/mbgl/gl/vertex_buffer_resource.hpp",
- "mbgl/layout/clip_lines.hpp": "src/mbgl/layout/clip_lines.hpp",
- "mbgl/layout/layout.hpp": "src/mbgl/layout/layout.hpp",
- "mbgl/layout/merge_lines.hpp": "src/mbgl/layout/merge_lines.hpp",
- "mbgl/layout/pattern_layout.hpp": "src/mbgl/layout/pattern_layout.hpp",
- "mbgl/layout/symbol_feature.hpp": "src/mbgl/layout/symbol_feature.hpp",
- "mbgl/layout/symbol_instance.hpp": "src/mbgl/layout/symbol_instance.hpp",
- "mbgl/layout/symbol_layout.hpp": "src/mbgl/layout/symbol_layout.hpp",
- "mbgl/layout/symbol_projection.hpp": "src/mbgl/layout/symbol_projection.hpp",
- "mbgl/map/map_impl.hpp": "src/mbgl/map/map_impl.hpp",
- "mbgl/map/transform.hpp": "src/mbgl/map/transform.hpp",
- "mbgl/map/transform_state.hpp": "src/mbgl/map/transform_state.hpp",
- "mbgl/map/zoom_history.hpp": "src/mbgl/map/zoom_history.hpp",
- "mbgl/programs/attributes.hpp": "src/mbgl/programs/attributes.hpp",
- "mbgl/programs/background_pattern_program.hpp": "src/mbgl/programs/background_pattern_program.hpp",
- "mbgl/programs/background_program.hpp": "src/mbgl/programs/background_program.hpp",
- "mbgl/programs/circle_program.hpp": "src/mbgl/programs/circle_program.hpp",
- "mbgl/programs/clipping_mask_program.hpp": "src/mbgl/programs/clipping_mask_program.hpp",
- "mbgl/programs/collision_box_program.hpp": "src/mbgl/programs/collision_box_program.hpp",
- "mbgl/programs/collision_circle_program.hpp": "src/mbgl/programs/collision_circle_program.hpp",
- "mbgl/programs/debug_program.hpp": "src/mbgl/programs/debug_program.hpp",
- "mbgl/programs/fill_extrusion_pattern_program.hpp": "src/mbgl/programs/fill_extrusion_pattern_program.hpp",
- "mbgl/programs/fill_extrusion_program.hpp": "src/mbgl/programs/fill_extrusion_program.hpp",
- "mbgl/programs/fill_outline_pattern_program.hpp": "src/mbgl/programs/fill_outline_pattern_program.hpp",
- "mbgl/programs/fill_outline_program.hpp": "src/mbgl/programs/fill_outline_program.hpp",
- "mbgl/programs/fill_pattern_program.hpp": "src/mbgl/programs/fill_pattern_program.hpp",
- "mbgl/programs/fill_program.hpp": "src/mbgl/programs/fill_program.hpp",
- "mbgl/programs/gl/preludes.hpp": "src/mbgl/programs/gl/preludes.hpp",
- "mbgl/programs/gl/shader_source.hpp": "src/mbgl/programs/gl/shader_source.hpp",
- "mbgl/programs/gl/shaders.hpp": "src/mbgl/programs/gl/shaders.hpp",
- "mbgl/programs/heatmap_program.hpp": "src/mbgl/programs/heatmap_program.hpp",
- "mbgl/programs/heatmap_texture_program.hpp": "src/mbgl/programs/heatmap_texture_program.hpp",
- "mbgl/programs/hillshade_prepare_program.hpp": "src/mbgl/programs/hillshade_prepare_program.hpp",
- "mbgl/programs/hillshade_program.hpp": "src/mbgl/programs/hillshade_program.hpp",
- "mbgl/programs/line_gradient_program.hpp": "src/mbgl/programs/line_gradient_program.hpp",
- "mbgl/programs/line_pattern_program.hpp": "src/mbgl/programs/line_pattern_program.hpp",
- "mbgl/programs/line_program.hpp": "src/mbgl/programs/line_program.hpp",
- "mbgl/programs/line_sdf_program.hpp": "src/mbgl/programs/line_sdf_program.hpp",
- "mbgl/programs/program.hpp": "src/mbgl/programs/program.hpp",
- "mbgl/programs/program_parameters.hpp": "src/mbgl/programs/program_parameters.hpp",
- "mbgl/programs/programs.hpp": "src/mbgl/programs/programs.hpp",
- "mbgl/programs/raster_program.hpp": "src/mbgl/programs/raster_program.hpp",
- "mbgl/programs/segment.hpp": "src/mbgl/programs/segment.hpp",
- "mbgl/programs/symbol_icon_program.hpp": "src/mbgl/programs/symbol_icon_program.hpp",
- "mbgl/programs/symbol_program.hpp": "src/mbgl/programs/symbol_program.hpp",
- "mbgl/programs/symbol_sdf_icon_program.hpp": "src/mbgl/programs/symbol_sdf_icon_program.hpp",
- "mbgl/programs/symbol_sdf_text_program.hpp": "src/mbgl/programs/symbol_sdf_text_program.hpp",
- "mbgl/programs/symbol_text_and_icon_program.hpp": "src/mbgl/programs/symbol_text_and_icon_program.hpp",
- "mbgl/programs/textures.hpp": "src/mbgl/programs/textures.hpp",
- "mbgl/programs/uniforms.hpp": "src/mbgl/programs/uniforms.hpp",
- "mbgl/renderer/bucket.hpp": "src/mbgl/renderer/bucket.hpp",
- "mbgl/renderer/bucket_parameters.hpp": "src/mbgl/renderer/bucket_parameters.hpp",
- "mbgl/renderer/buckets/circle_bucket.hpp": "src/mbgl/renderer/buckets/circle_bucket.hpp",
- "mbgl/renderer/buckets/debug_bucket.hpp": "src/mbgl/renderer/buckets/debug_bucket.hpp",
- "mbgl/renderer/buckets/fill_bucket.hpp": "src/mbgl/renderer/buckets/fill_bucket.hpp",
- "mbgl/renderer/buckets/fill_extrusion_bucket.hpp": "src/mbgl/renderer/buckets/fill_extrusion_bucket.hpp",
- "mbgl/renderer/buckets/heatmap_bucket.hpp": "src/mbgl/renderer/buckets/heatmap_bucket.hpp",
- "mbgl/renderer/buckets/hillshade_bucket.hpp": "src/mbgl/renderer/buckets/hillshade_bucket.hpp",
- "mbgl/renderer/buckets/line_bucket.hpp": "src/mbgl/renderer/buckets/line_bucket.hpp",
- "mbgl/renderer/buckets/raster_bucket.hpp": "src/mbgl/renderer/buckets/raster_bucket.hpp",
- "mbgl/renderer/buckets/symbol_bucket.hpp": "src/mbgl/renderer/buckets/symbol_bucket.hpp",
- "mbgl/renderer/cross_faded_property_evaluator.hpp": "src/mbgl/renderer/cross_faded_property_evaluator.hpp",
- "mbgl/renderer/data_driven_property_evaluator.hpp": "src/mbgl/renderer/data_driven_property_evaluator.hpp",
- "mbgl/renderer/group_by_layout.hpp": "src/mbgl/renderer/group_by_layout.hpp",
- "mbgl/renderer/image_atlas.hpp": "src/mbgl/renderer/image_atlas.hpp",
- "mbgl/renderer/image_manager.hpp": "src/mbgl/renderer/image_manager.hpp",
- "mbgl/renderer/image_manager_observer.hpp": "src/mbgl/renderer/image_manager_observer.hpp",
- "mbgl/renderer/layers/render_background_layer.hpp": "src/mbgl/renderer/layers/render_background_layer.hpp",
- "mbgl/renderer/layers/render_circle_layer.hpp": "src/mbgl/renderer/layers/render_circle_layer.hpp",
- "mbgl/renderer/layers/render_fill_extrusion_layer.hpp": "src/mbgl/renderer/layers/render_fill_extrusion_layer.hpp",
- "mbgl/renderer/layers/render_fill_layer.hpp": "src/mbgl/renderer/layers/render_fill_layer.hpp",
- "mbgl/renderer/layers/render_heatmap_layer.hpp": "src/mbgl/renderer/layers/render_heatmap_layer.hpp",
- "mbgl/renderer/layers/render_hillshade_layer.hpp": "src/mbgl/renderer/layers/render_hillshade_layer.hpp",
- "mbgl/renderer/layers/render_line_layer.hpp": "src/mbgl/renderer/layers/render_line_layer.hpp",
- "mbgl/renderer/layers/render_raster_layer.hpp": "src/mbgl/renderer/layers/render_raster_layer.hpp",
- "mbgl/renderer/layers/render_symbol_layer.hpp": "src/mbgl/renderer/layers/render_symbol_layer.hpp",
- "mbgl/renderer/paint_parameters.hpp": "src/mbgl/renderer/paint_parameters.hpp",
- "mbgl/renderer/paint_property_binder.hpp": "src/mbgl/renderer/paint_property_binder.hpp",
- "mbgl/renderer/paint_property_statistics.hpp": "src/mbgl/renderer/paint_property_statistics.hpp",
- "mbgl/renderer/pattern_atlas.hpp": "src/mbgl/renderer/pattern_atlas.hpp",
- "mbgl/renderer/possibly_evaluated_property_value.hpp": "src/mbgl/renderer/possibly_evaluated_property_value.hpp",
- "mbgl/renderer/property_evaluation_parameters.hpp": "src/mbgl/renderer/property_evaluation_parameters.hpp",
- "mbgl/renderer/property_evaluator.hpp": "src/mbgl/renderer/property_evaluator.hpp",
- "mbgl/renderer/render_layer.hpp": "src/mbgl/renderer/render_layer.hpp",
- "mbgl/renderer/render_light.hpp": "src/mbgl/renderer/render_light.hpp",
- "mbgl/renderer/render_orchestrator.hpp": "src/mbgl/renderer/render_orchestrator.hpp",
- "mbgl/renderer/render_pass.hpp": "src/mbgl/renderer/render_pass.hpp",
- "mbgl/renderer/render_source.hpp": "src/mbgl/renderer/render_source.hpp",
- "mbgl/renderer/render_source_observer.hpp": "src/mbgl/renderer/render_source_observer.hpp",
- "mbgl/renderer/render_static_data.hpp": "src/mbgl/renderer/render_static_data.hpp",
- "mbgl/renderer/render_tile.hpp": "src/mbgl/renderer/render_tile.hpp",
- "mbgl/renderer/render_tree.hpp": "src/mbgl/renderer/render_tree.hpp",
- "mbgl/renderer/renderer_impl.hpp": "src/mbgl/renderer/renderer_impl.hpp",
- "mbgl/renderer/source_state.hpp": "src/mbgl/renderer/source_state.hpp",
- "mbgl/renderer/sources/render_custom_geometry_source.hpp": "src/mbgl/renderer/sources/render_custom_geometry_source.hpp",
- "mbgl/renderer/sources/render_geojson_source.hpp": "src/mbgl/renderer/sources/render_geojson_source.hpp",
- "mbgl/renderer/sources/render_image_source.hpp": "src/mbgl/renderer/sources/render_image_source.hpp",
- "mbgl/renderer/sources/render_raster_dem_source.hpp": "src/mbgl/renderer/sources/render_raster_dem_source.hpp",
- "mbgl/renderer/sources/render_raster_source.hpp": "src/mbgl/renderer/sources/render_raster_source.hpp",
- "mbgl/renderer/sources/render_tile_source.hpp": "src/mbgl/renderer/sources/render_tile_source.hpp",
- "mbgl/renderer/sources/render_vector_source.hpp": "src/mbgl/renderer/sources/render_vector_source.hpp",
- "mbgl/renderer/style_diff.hpp": "src/mbgl/renderer/style_diff.hpp",
- "mbgl/renderer/tile_mask.hpp": "src/mbgl/renderer/tile_mask.hpp",
- "mbgl/renderer/tile_parameters.hpp": "src/mbgl/renderer/tile_parameters.hpp",
- "mbgl/renderer/tile_pyramid.hpp": "src/mbgl/renderer/tile_pyramid.hpp",
- "mbgl/renderer/tile_render_data.hpp": "src/mbgl/renderer/tile_render_data.hpp",
- "mbgl/renderer/transition_parameters.hpp": "src/mbgl/renderer/transition_parameters.hpp",
- "mbgl/renderer/update_parameters.hpp": "src/mbgl/renderer/update_parameters.hpp",
- "mbgl/renderer/upload_parameters.hpp": "src/mbgl/renderer/upload_parameters.hpp",
- "mbgl/sprite/sprite_loader.hpp": "src/mbgl/sprite/sprite_loader.hpp",
- "mbgl/sprite/sprite_loader_observer.hpp": "src/mbgl/sprite/sprite_loader_observer.hpp",
- "mbgl/sprite/sprite_loader_worker.hpp": "src/mbgl/sprite/sprite_loader_worker.hpp",
- "mbgl/sprite/sprite_parser.hpp": "src/mbgl/sprite/sprite_parser.hpp",
- "mbgl/storage/asset_file_source.hpp": "src/mbgl/storage/asset_file_source.hpp",
- "mbgl/storage/http_file_source.hpp": "src/mbgl/storage/http_file_source.hpp",
- "mbgl/storage/local_file_source.hpp": "src/mbgl/storage/local_file_source.hpp",
- "mbgl/storage/main_resource_loader.hpp": "src/mbgl/storage/main_resource_loader.hpp",
- "mbgl/style/collection.hpp": "src/mbgl/style/collection.hpp",
- "mbgl/style/conversion/json.hpp": "src/mbgl/style/conversion/json.hpp",
- "mbgl/style/conversion/stringify.hpp": "src/mbgl/style/conversion/stringify.hpp",
- "mbgl/style/custom_tile_loader.hpp": "src/mbgl/style/custom_tile_loader.hpp",
- "mbgl/style/expression/dsl_impl.hpp": "src/mbgl/style/expression/dsl_impl.hpp",
- "mbgl/style/expression/util.hpp": "src/mbgl/style/expression/util.hpp",
- "mbgl/style/image_impl.hpp": "src/mbgl/style/image_impl.hpp",
- "mbgl/style/layer_impl.hpp": "src/mbgl/style/layer_impl.hpp",
- "mbgl/style/layer_observer.hpp": "src/mbgl/style/layer_observer.hpp",
- "mbgl/style/layers/background_layer_impl.hpp": "src/mbgl/style/layers/background_layer_impl.hpp",
- "mbgl/style/layers/background_layer_properties.hpp": "src/mbgl/style/layers/background_layer_properties.hpp",
- "mbgl/style/layers/circle_layer_impl.hpp": "src/mbgl/style/layers/circle_layer_impl.hpp",
- "mbgl/style/layers/circle_layer_properties.hpp": "src/mbgl/style/layers/circle_layer_properties.hpp",
- "mbgl/style/layers/fill_extrusion_layer_impl.hpp": "src/mbgl/style/layers/fill_extrusion_layer_impl.hpp",
- "mbgl/style/layers/fill_extrusion_layer_properties.hpp": "src/mbgl/style/layers/fill_extrusion_layer_properties.hpp",
- "mbgl/style/layers/fill_layer_impl.hpp": "src/mbgl/style/layers/fill_layer_impl.hpp",
- "mbgl/style/layers/fill_layer_properties.hpp": "src/mbgl/style/layers/fill_layer_properties.hpp",
- "mbgl/style/layers/heatmap_layer_impl.hpp": "src/mbgl/style/layers/heatmap_layer_impl.hpp",
- "mbgl/style/layers/heatmap_layer_properties.hpp": "src/mbgl/style/layers/heatmap_layer_properties.hpp",
- "mbgl/style/layers/hillshade_layer_impl.hpp": "src/mbgl/style/layers/hillshade_layer_impl.hpp",
- "mbgl/style/layers/hillshade_layer_properties.hpp": "src/mbgl/style/layers/hillshade_layer_properties.hpp",
- "mbgl/style/layers/line_layer_impl.hpp": "src/mbgl/style/layers/line_layer_impl.hpp",
- "mbgl/style/layers/line_layer_properties.hpp": "src/mbgl/style/layers/line_layer_properties.hpp",
- "mbgl/style/layers/raster_layer_impl.hpp": "src/mbgl/style/layers/raster_layer_impl.hpp",
- "mbgl/style/layers/raster_layer_properties.hpp": "src/mbgl/style/layers/raster_layer_properties.hpp",
- "mbgl/style/layers/symbol_layer_impl.hpp": "src/mbgl/style/layers/symbol_layer_impl.hpp",
- "mbgl/style/layers/symbol_layer_properties.hpp": "src/mbgl/style/layers/symbol_layer_properties.hpp",
- "mbgl/style/layout_property.hpp": "src/mbgl/style/layout_property.hpp",
- "mbgl/style/light_impl.hpp": "src/mbgl/style/light_impl.hpp",
- "mbgl/style/light_observer.hpp": "src/mbgl/style/light_observer.hpp",
- "mbgl/style/observer.hpp": "src/mbgl/style/observer.hpp",
- "mbgl/style/paint_property.hpp": "src/mbgl/style/paint_property.hpp",
- "mbgl/style/parser.hpp": "src/mbgl/style/parser.hpp",
- "mbgl/style/properties.hpp": "src/mbgl/style/properties.hpp",
- "mbgl/style/rapidjson_conversion.hpp": "src/mbgl/style/rapidjson_conversion.hpp",
- "mbgl/style/source_impl.hpp": "src/mbgl/style/source_impl.hpp",
- "mbgl/style/source_observer.hpp": "src/mbgl/style/source_observer.hpp",
- "mbgl/style/sources/custom_geometry_source_impl.hpp": "src/mbgl/style/sources/custom_geometry_source_impl.hpp",
- "mbgl/style/sources/geojson_source_impl.hpp": "src/mbgl/style/sources/geojson_source_impl.hpp",
- "mbgl/style/sources/image_source_impl.hpp": "src/mbgl/style/sources/image_source_impl.hpp",
- "mbgl/style/sources/raster_source_impl.hpp": "src/mbgl/style/sources/raster_source_impl.hpp",
- "mbgl/style/sources/vector_source_impl.hpp": "src/mbgl/style/sources/vector_source_impl.hpp",
- "mbgl/style/style_impl.hpp": "src/mbgl/style/style_impl.hpp",
- "mbgl/text/bidi.hpp": "src/mbgl/text/bidi.hpp",
- "mbgl/text/check_max_angle.hpp": "src/mbgl/text/check_max_angle.hpp",
- "mbgl/text/collision_feature.hpp": "src/mbgl/text/collision_feature.hpp",
- "mbgl/text/collision_index.hpp": "src/mbgl/text/collision_index.hpp",
- "mbgl/text/cross_tile_symbol_index.hpp": "src/mbgl/text/cross_tile_symbol_index.hpp",
- "mbgl/text/get_anchors.hpp": "src/mbgl/text/get_anchors.hpp",
- "mbgl/text/glyph.hpp": "src/mbgl/text/glyph.hpp",
- "mbgl/text/glyph_atlas.hpp": "src/mbgl/text/glyph_atlas.hpp",
- "mbgl/text/glyph_manager.hpp": "src/mbgl/text/glyph_manager.hpp",
- "mbgl/text/glyph_manager_observer.hpp": "src/mbgl/text/glyph_manager_observer.hpp",
- "mbgl/text/glyph_pbf.hpp": "src/mbgl/text/glyph_pbf.hpp",
- "mbgl/text/glyph_range.hpp": "src/mbgl/text/glyph_range.hpp",
- "mbgl/text/language_tag.hpp": "src/mbgl/text/language_tag.hpp",
- "mbgl/text/local_glyph_rasterizer.hpp": "src/mbgl/text/local_glyph_rasterizer.hpp",
- "mbgl/text/placement.hpp": "src/mbgl/text/placement.hpp",
- "mbgl/text/quads.hpp": "src/mbgl/text/quads.hpp",
- "mbgl/text/shaping.hpp": "src/mbgl/text/shaping.hpp",
- "mbgl/text/tagged_string.hpp": "src/mbgl/text/tagged_string.hpp",
- "mbgl/tile/custom_geometry_tile.hpp": "src/mbgl/tile/custom_geometry_tile.hpp",
- "mbgl/tile/geojson_tile.hpp": "src/mbgl/tile/geojson_tile.hpp",
- "mbgl/tile/geojson_tile_data.hpp": "src/mbgl/tile/geojson_tile_data.hpp",
- "mbgl/tile/geometry_tile.hpp": "src/mbgl/tile/geometry_tile.hpp",
- "mbgl/tile/geometry_tile_data.hpp": "src/mbgl/tile/geometry_tile_data.hpp",
- "mbgl/tile/geometry_tile_worker.hpp": "src/mbgl/tile/geometry_tile_worker.hpp",
- "mbgl/tile/raster_dem_tile.hpp": "src/mbgl/tile/raster_dem_tile.hpp",
- "mbgl/tile/raster_dem_tile_worker.hpp": "src/mbgl/tile/raster_dem_tile_worker.hpp",
- "mbgl/tile/raster_tile.hpp": "src/mbgl/tile/raster_tile.hpp",
- "mbgl/tile/raster_tile_worker.hpp": "src/mbgl/tile/raster_tile_worker.hpp",
- "mbgl/tile/tile.hpp": "src/mbgl/tile/tile.hpp",
- "mbgl/tile/tile_cache.hpp": "src/mbgl/tile/tile_cache.hpp",
- "mbgl/tile/tile_loader.hpp": "src/mbgl/tile/tile_loader.hpp",
- "mbgl/tile/tile_loader_impl.hpp": "src/mbgl/tile/tile_loader_impl.hpp",
- "mbgl/tile/tile_observer.hpp": "src/mbgl/tile/tile_observer.hpp",
- "mbgl/tile/vector_tile.hpp": "src/mbgl/tile/vector_tile.hpp",
- "mbgl/tile/vector_tile_data.hpp": "src/mbgl/tile/vector_tile_data.hpp",
- "mbgl/util/dtoa.hpp": "src/mbgl/util/dtoa.hpp",
- "mbgl/util/grid_index.hpp": "src/mbgl/util/grid_index.hpp",
- "mbgl/util/hash.hpp": "src/mbgl/util/hash.hpp",
- "mbgl/util/http_header.hpp": "src/mbgl/util/http_header.hpp",
- "mbgl/util/http_timeout.hpp": "src/mbgl/util/http_timeout.hpp",
- "mbgl/util/i18n.hpp": "src/mbgl/util/i18n.hpp",
- "mbgl/util/id.hpp": "src/mbgl/util/id.hpp",
- "mbgl/util/intersection_tests.hpp": "src/mbgl/util/intersection_tests.hpp",
- "mbgl/util/io.hpp": "src/mbgl/util/io.hpp",
- "mbgl/util/literal.hpp": "src/mbgl/util/literal.hpp",
- "mbgl/util/longest_common_subsequence.hpp": "src/mbgl/util/longest_common_subsequence.hpp",
- "mbgl/util/mapbox.hpp": "src/mbgl/util/mapbox.hpp",
- "mbgl/util/mat2.hpp": "src/mbgl/util/mat2.hpp",
- "mbgl/util/mat3.hpp": "src/mbgl/util/mat3.hpp",
- "mbgl/util/mat4.hpp": "src/mbgl/util/mat4.hpp",
- "mbgl/util/math.hpp": "src/mbgl/util/math.hpp",
- "mbgl/util/rapidjson.hpp": "src/mbgl/util/rapidjson.hpp",
- "mbgl/util/rect.hpp": "src/mbgl/util/rect.hpp",
- "mbgl/util/std.hpp": "src/mbgl/util/std.hpp",
- "mbgl/util/stopwatch.hpp": "src/mbgl/util/stopwatch.hpp",
- "mbgl/util/thread_local.hpp": "src/mbgl/util/thread_local.hpp",
- "mbgl/util/thread_pool.hpp": "src/mbgl/util/thread_pool.hpp",
- "mbgl/util/tile_coordinate.hpp": "src/mbgl/util/tile_coordinate.hpp",
- "mbgl/util/tile_cover.hpp": "src/mbgl/util/tile_cover.hpp",
- "mbgl/util/tile_cover_impl.hpp": "src/mbgl/util/tile_cover_impl.hpp",
- "mbgl/util/tile_range.hpp": "src/mbgl/util/tile_range.hpp",
- "mbgl/util/tiny_sdf.hpp": "src/mbgl/util/tiny_sdf.hpp",
- "mbgl/util/token.hpp": "src/mbgl/util/token.hpp",
- "mbgl/util/url.hpp": "src/mbgl/util/url.hpp",
- "mbgl/util/utf.hpp": "src/mbgl/util/utf.hpp",
- "mbgl/util/version.hpp": "src/mbgl/util/version.hpp",
- "parsedate/parsedate.hpp": "src/parsedate/parsedate.hpp"
- }
-}
diff --git a/test/test-files.json b/test/test-files.json
deleted file mode 100644
index 1c70565de8..0000000000
--- a/test/test-files.json
+++ /dev/null
@@ -1,135 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "test/actor/actor.test.cpp",
- "test/actor/actor_ref.test.cpp",
- "test/algorithm/update_renderables.test.cpp",
- "test/algorithm/update_tile_masks.test.cpp",
- "test/api/annotations.test.cpp",
- "test/api/api_misuse.test.cpp",
- "test/api/custom_geometry_source.test.cpp",
- "test/api/custom_layer.test.cpp",
- "test/api/query.test.cpp",
- "test/api/recycle_map.cpp",
- "test/geometry/dem_data.test.cpp",
- "test/geometry/line_atlas.test.cpp",
- "test/gl/bucket.test.cpp",
- "test/gl/context.test.cpp",
- "test/gl/gl_functions.test.cpp",
- "test/gl/object.test.cpp",
- "test/map/map.test.cpp",
- "test/map/prefetch.test.cpp",
- "test/map/transform.test.cpp",
- "test/math/clamp.test.cpp",
- "test/math/minmax.test.cpp",
- "test/math/wrap.test.cpp",
- "test/platform/settings.test.cpp",
- "test/programs/symbol_program.test.cpp",
- "test/renderer/backend_scope.test.cpp",
- "test/renderer/image_manager.test.cpp",
- "test/renderer/pattern_atlas.test.cpp",
- "test/sprite/sprite_loader.test.cpp",
- "test/sprite/sprite_parser.test.cpp",
- "test/src/mbgl/test/fixture_log_observer.cpp",
- "test/src/mbgl/test/getrss.cpp",
- "test/src/mbgl/test/http_server.cpp",
- "test/src/mbgl/test/sqlite3_test_fs.cpp",
- "test/src/mbgl/test/stub_file_source.cpp",
- "test/src/mbgl/test/test.cpp",
- "test/src/mbgl/test/util.cpp",
- "test/storage/asset_file_source.test.cpp",
- "test/storage/database_file_source.test.cpp",
- "test/storage/headers.test.cpp",
- "test/storage/http_file_source.test.cpp",
- "test/storage/local_file_source.test.cpp",
- "test/storage/main_resource_loader.test.cpp",
- "test/storage/offline.test.cpp",
- "test/storage/offline_database.test.cpp",
- "test/storage/offline_download.test.cpp",
- "test/storage/online_file_source.test.cpp",
- "test/storage/resource.test.cpp",
- "test/storage/sqlite.test.cpp",
- "test/storage/sync_file_source.test.cpp",
- "test/style/conversion/conversion_impl.test.cpp",
- "test/style/conversion/function.test.cpp",
- "test/style/conversion/geojson_options.test.cpp",
- "test/style/conversion/layer.test.cpp",
- "test/style/conversion/light.test.cpp",
- "test/style/conversion/property_value.test.cpp",
- "test/style/conversion/stringify.test.cpp",
- "test/style/conversion/tileset.test.cpp",
- "test/style/expression/expression.test.cpp",
- "test/style/expression/util.test.cpp",
- "test/style/filter.test.cpp",
- "test/style/properties.test.cpp",
- "test/style/property_expression.test.cpp",
- "test/style/source.test.cpp",
- "test/style/style.test.cpp",
- "test/style/style_image.test.cpp",
- "test/style/style_layer.test.cpp",
- "test/style/style_parser.test.cpp",
- "test/text/bidi.test.cpp",
- "test/text/calculate_tile_distances.test.cpp",
- "test/text/cross_tile_symbol_index.test.cpp",
- "test/text/formatted.test.cpp",
- "test/text/get_anchors.test.cpp",
- "test/text/glyph_manager.test.cpp",
- "test/text/glyph_pbf.test.cpp",
- "test/text/language_tag.test.cpp",
- "test/text/local_glyph_rasterizer.test.cpp",
- "test/text/quads.test.cpp",
- "test/text/shaping.test.cpp",
- "test/text/tagged_string.test.cpp",
- "test/tile/custom_geometry_tile.test.cpp",
- "test/tile/geojson_tile.test.cpp",
- "test/tile/geometry_tile_data.test.cpp",
- "test/tile/raster_dem_tile.test.cpp",
- "test/tile/raster_tile.test.cpp",
- "test/tile/tile_cache.test.cpp",
- "test/tile/tile_coordinate.test.cpp",
- "test/tile/tile_id.test.cpp",
- "test/tile/vector_tile.test.cpp",
- "test/util/async_task.test.cpp",
- "test/util/dtoa.test.cpp",
- "test/util/geo.test.cpp",
- "test/util/grid_index.test.cpp",
- "test/util/http_timeout.test.cpp",
- "test/util/image.test.cpp",
- "test/util/mapbox.test.cpp",
- "test/util/memory.test.cpp",
- "test/util/merge_lines.test.cpp",
- "test/util/number_conversions.test.cpp",
- "test/util/offscreen_texture.test.cpp",
- "test/util/position.test.cpp",
- "test/util/projection.test.cpp",
- "test/util/run_loop.test.cpp",
- "test/util/string.test.cpp",
- "test/util/text_conversions.test.cpp",
- "test/util/thread.test.cpp",
- "test/util/thread_local.test.cpp",
- "test/util/tile_cover.test.cpp",
- "test/util/tile_range.test.cpp",
- "test/util/timer.test.cpp",
- "test/util/token.test.cpp",
- "test/util/url.test.cpp"
- ],
- "public_headers": {
- "mbgl/test.hpp": "test/include/mbgl/test.hpp",
- "mbgl/test/util.hpp": "test/include/mbgl/test/util.hpp"
- },
- "private_headers": {
- "mbgl/test/fake_file_source.hpp": "test/src/mbgl/test/fake_file_source.hpp",
- "mbgl/test/fixture_log_observer.hpp": "test/src/mbgl/test/fixture_log_observer.hpp",
- "mbgl/test/getrss.hpp": "test/src/mbgl/test/getrss.hpp",
- "mbgl/test/map_adapter.hpp": "test/src/mbgl/test/map_adapter.hpp",
- "mbgl/test/mock.hpp": "test/src/mbgl/test/mock.hpp",
- "mbgl/test/sqlite3_test_fs.hpp": "test/src/mbgl/test/sqlite3_test_fs.hpp",
- "mbgl/test/stub_file_source.hpp": "test/src/mbgl/test/stub_file_source.hpp",
- "mbgl/test/stub_geometry_tile_feature.hpp": "test/src/mbgl/test/stub_geometry_tile_feature.hpp",
- "mbgl/test/stub_layer_observer.hpp": "test/src/mbgl/test/stub_layer_observer.hpp",
- "mbgl/test/stub_map_observer.hpp": "test/src/mbgl/test/stub_map_observer.hpp",
- "mbgl/test/stub_render_source_observer.hpp": "test/src/mbgl/test/stub_render_source_observer.hpp",
- "mbgl/test/stub_style_observer.hpp": "test/src/mbgl/test/stub_style_observer.hpp",
- "mbgl/test/stub_tile_observer.hpp": "test/src/mbgl/test/stub_tile_observer.hpp"
- }
-}
diff --git a/vendor/boost-files.json b/vendor/boost-files.json
deleted file mode 100644
index 3e64d09959..0000000000
--- a/vendor/boost-files.json
+++ /dev/null
@@ -1,3828 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "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",
- "boost/algorithm/string/classification.hpp": "vendor/boost/include/boost/algorithm/string/classification.hpp",
- "boost/algorithm/string/compare.hpp": "vendor/boost/include/boost/algorithm/string/compare.hpp",
- "boost/algorithm/string/concept.hpp": "vendor/boost/include/boost/algorithm/string/concept.hpp",
- "boost/algorithm/string/config.hpp": "vendor/boost/include/boost/algorithm/string/config.hpp",
- "boost/algorithm/string/constants.hpp": "vendor/boost/include/boost/algorithm/string/constants.hpp",
- "boost/algorithm/string/detail/case_conv.hpp": "vendor/boost/include/boost/algorithm/string/detail/case_conv.hpp",
- "boost/algorithm/string/detail/classification.hpp": "vendor/boost/include/boost/algorithm/string/detail/classification.hpp",
- "boost/algorithm/string/detail/find_format.hpp": "vendor/boost/include/boost/algorithm/string/detail/find_format.hpp",
- "boost/algorithm/string/detail/find_format_all.hpp": "vendor/boost/include/boost/algorithm/string/detail/find_format_all.hpp",
- "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/formatter.hpp": "vendor/boost/include/boost/algorithm/string/detail/formatter.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",
- "boost/algorithm/string/detail/trim.hpp": "vendor/boost/include/boost/algorithm/string/detail/trim.hpp",
- "boost/algorithm/string/detail/util.hpp": "vendor/boost/include/boost/algorithm/string/detail/util.hpp",
- "boost/algorithm/string/erase.hpp": "vendor/boost/include/boost/algorithm/string/erase.hpp",
- "boost/algorithm/string/find.hpp": "vendor/boost/include/boost/algorithm/string/find.hpp",
- "boost/algorithm/string/find_format.hpp": "vendor/boost/include/boost/algorithm/string/find_format.hpp",
- "boost/algorithm/string/find_iterator.hpp": "vendor/boost/include/boost/algorithm/string/find_iterator.hpp",
- "boost/algorithm/string/finder.hpp": "vendor/boost/include/boost/algorithm/string/finder.hpp",
- "boost/algorithm/string/formatter.hpp": "vendor/boost/include/boost/algorithm/string/formatter.hpp",
- "boost/algorithm/string/iter_find.hpp": "vendor/boost/include/boost/algorithm/string/iter_find.hpp",
- "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/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",
- "boost/algorithm/string/std/list_traits.hpp": "vendor/boost/include/boost/algorithm/string/std/list_traits.hpp",
- "boost/algorithm/string/std/slist_traits.hpp": "vendor/boost/include/boost/algorithm/string/std/slist_traits.hpp",
- "boost/algorithm/string/std/string_traits.hpp": "vendor/boost/include/boost/algorithm/string/std/string_traits.hpp",
- "boost/algorithm/string/std_containers_traits.hpp": "vendor/boost/include/boost/algorithm/string/std_containers_traits.hpp",
- "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/archive/iterators/base64_from_binary.hpp": "vendor/boost/include/boost/archive/iterators/base64_from_binary.hpp",
- "boost/archive/iterators/dataflow_exception.hpp": "vendor/boost/include/boost/archive/iterators/dataflow_exception.hpp",
- "boost/archive/iterators/insert_linebreaks.hpp": "vendor/boost/include/boost/archive/iterators/insert_linebreaks.hpp",
- "boost/archive/iterators/ostream_iterator.hpp": "vendor/boost/include/boost/archive/iterators/ostream_iterator.hpp",
- "boost/archive/iterators/transform_width.hpp": "vendor/boost/include/boost/archive/iterators/transform_width.hpp",
- "boost/array.hpp": "vendor/boost/include/boost/array.hpp",
- "boost/assert.hpp": "vendor/boost/include/boost/assert.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/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/checked_delete.hpp": "vendor/boost/include/boost/checked_delete.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",
- "boost/concept/detail/concept_def.hpp": "vendor/boost/include/boost/concept/detail/concept_def.hpp",
- "boost/concept/detail/concept_undef.hpp": "vendor/boost/include/boost/concept/detail/concept_undef.hpp",
- "boost/concept/detail/general.hpp": "vendor/boost/include/boost/concept/detail/general.hpp",
- "boost/concept/detail/has_constraints.hpp": "vendor/boost/include/boost/concept/detail/has_constraints.hpp",
- "boost/concept/detail/msvc.hpp": "vendor/boost/include/boost/concept/detail/msvc.hpp",
- "boost/concept/requires.hpp": "vendor/boost/include/boost/concept/requires.hpp",
- "boost/concept/usage.hpp": "vendor/boost/include/boost/concept/usage.hpp",
- "boost/concept_check.hpp": "vendor/boost/include/boost/concept_check.hpp",
- "boost/config.hpp": "vendor/boost/include/boost/config.hpp",
- "boost/config/abi/borland_prefix.hpp": "vendor/boost/include/boost/config/abi/borland_prefix.hpp",
- "boost/config/abi/borland_suffix.hpp": "vendor/boost/include/boost/config/abi/borland_suffix.hpp",
- "boost/config/abi/msvc_prefix.hpp": "vendor/boost/include/boost/config/abi/msvc_prefix.hpp",
- "boost/config/abi/msvc_suffix.hpp": "vendor/boost/include/boost/config/abi/msvc_suffix.hpp",
- "boost/config/abi_prefix.hpp": "vendor/boost/include/boost/config/abi_prefix.hpp",
- "boost/config/abi_suffix.hpp": "vendor/boost/include/boost/config/abi_suffix.hpp",
- "boost/config/auto_link.hpp": "vendor/boost/include/boost/config/auto_link.hpp",
- "boost/config/compiler/borland.hpp": "vendor/boost/include/boost/config/compiler/borland.hpp",
- "boost/config/compiler/clang.hpp": "vendor/boost/include/boost/config/compiler/clang.hpp",
- "boost/config/compiler/codegear.hpp": "vendor/boost/include/boost/config/compiler/codegear.hpp",
- "boost/config/compiler/comeau.hpp": "vendor/boost/include/boost/config/compiler/comeau.hpp",
- "boost/config/compiler/common_edg.hpp": "vendor/boost/include/boost/config/compiler/common_edg.hpp",
- "boost/config/compiler/compaq_cxx.hpp": "vendor/boost/include/boost/config/compiler/compaq_cxx.hpp",
- "boost/config/compiler/cray.hpp": "vendor/boost/include/boost/config/compiler/cray.hpp",
- "boost/config/compiler/diab.hpp": "vendor/boost/include/boost/config/compiler/diab.hpp",
- "boost/config/compiler/digitalmars.hpp": "vendor/boost/include/boost/config/compiler/digitalmars.hpp",
- "boost/config/compiler/gcc.hpp": "vendor/boost/include/boost/config/compiler/gcc.hpp",
- "boost/config/compiler/gcc_xml.hpp": "vendor/boost/include/boost/config/compiler/gcc_xml.hpp",
- "boost/config/compiler/greenhills.hpp": "vendor/boost/include/boost/config/compiler/greenhills.hpp",
- "boost/config/compiler/hp_acc.hpp": "vendor/boost/include/boost/config/compiler/hp_acc.hpp",
- "boost/config/compiler/intel.hpp": "vendor/boost/include/boost/config/compiler/intel.hpp",
- "boost/config/compiler/kai.hpp": "vendor/boost/include/boost/config/compiler/kai.hpp",
- "boost/config/compiler/metrowerks.hpp": "vendor/boost/include/boost/config/compiler/metrowerks.hpp",
- "boost/config/compiler/mpw.hpp": "vendor/boost/include/boost/config/compiler/mpw.hpp",
- "boost/config/compiler/nvcc.hpp": "vendor/boost/include/boost/config/compiler/nvcc.hpp",
- "boost/config/compiler/pathscale.hpp": "vendor/boost/include/boost/config/compiler/pathscale.hpp",
- "boost/config/compiler/pgi.hpp": "vendor/boost/include/boost/config/compiler/pgi.hpp",
- "boost/config/compiler/sgi_mipspro.hpp": "vendor/boost/include/boost/config/compiler/sgi_mipspro.hpp",
- "boost/config/compiler/sunpro_cc.hpp": "vendor/boost/include/boost/config/compiler/sunpro_cc.hpp",
- "boost/config/compiler/vacpp.hpp": "vendor/boost/include/boost/config/compiler/vacpp.hpp",
- "boost/config/compiler/visualc.hpp": "vendor/boost/include/boost/config/compiler/visualc.hpp",
- "boost/config/compiler/xlcpp.hpp": "vendor/boost/include/boost/config/compiler/xlcpp.hpp",
- "boost/config/compiler/xlcpp_zos.hpp": "vendor/boost/include/boost/config/compiler/xlcpp_zos.hpp",
- "boost/config/detail/posix_features.hpp": "vendor/boost/include/boost/config/detail/posix_features.hpp",
- "boost/config/detail/select_compiler_config.hpp": "vendor/boost/include/boost/config/detail/select_compiler_config.hpp",
- "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",
- "boost/config/no_tr1/memory.hpp": "vendor/boost/include/boost/config/no_tr1/memory.hpp",
- "boost/config/no_tr1/utility.hpp": "vendor/boost/include/boost/config/no_tr1/utility.hpp",
- "boost/config/platform/aix.hpp": "vendor/boost/include/boost/config/platform/aix.hpp",
- "boost/config/platform/amigaos.hpp": "vendor/boost/include/boost/config/platform/amigaos.hpp",
- "boost/config/platform/beos.hpp": "vendor/boost/include/boost/config/platform/beos.hpp",
- "boost/config/platform/bsd.hpp": "vendor/boost/include/boost/config/platform/bsd.hpp",
- "boost/config/platform/cloudabi.hpp": "vendor/boost/include/boost/config/platform/cloudabi.hpp",
- "boost/config/platform/cray.hpp": "vendor/boost/include/boost/config/platform/cray.hpp",
- "boost/config/platform/cygwin.hpp": "vendor/boost/include/boost/config/platform/cygwin.hpp",
- "boost/config/platform/haiku.hpp": "vendor/boost/include/boost/config/platform/haiku.hpp",
- "boost/config/platform/hpux.hpp": "vendor/boost/include/boost/config/platform/hpux.hpp",
- "boost/config/platform/irix.hpp": "vendor/boost/include/boost/config/platform/irix.hpp",
- "boost/config/platform/linux.hpp": "vendor/boost/include/boost/config/platform/linux.hpp",
- "boost/config/platform/macos.hpp": "vendor/boost/include/boost/config/platform/macos.hpp",
- "boost/config/platform/qnxnto.hpp": "vendor/boost/include/boost/config/platform/qnxnto.hpp",
- "boost/config/platform/solaris.hpp": "vendor/boost/include/boost/config/platform/solaris.hpp",
- "boost/config/platform/symbian.hpp": "vendor/boost/include/boost/config/platform/symbian.hpp",
- "boost/config/platform/vms.hpp": "vendor/boost/include/boost/config/platform/vms.hpp",
- "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",
- "boost/config/stdlib/libcpp.hpp": "vendor/boost/include/boost/config/stdlib/libcpp.hpp",
- "boost/config/stdlib/libstdcpp3.hpp": "vendor/boost/include/boost/config/stdlib/libstdcpp3.hpp",
- "boost/config/stdlib/modena.hpp": "vendor/boost/include/boost/config/stdlib/modena.hpp",
- "boost/config/stdlib/msl.hpp": "vendor/boost/include/boost/config/stdlib/msl.hpp",
- "boost/config/stdlib/roguewave.hpp": "vendor/boost/include/boost/config/stdlib/roguewave.hpp",
- "boost/config/stdlib/sgi.hpp": "vendor/boost/include/boost/config/stdlib/sgi.hpp",
- "boost/config/stdlib/stlport.hpp": "vendor/boost/include/boost/config/stdlib/stlport.hpp",
- "boost/config/stdlib/vacpp.hpp": "vendor/boost/include/boost/config/stdlib/vacpp.hpp",
- "boost/config/stdlib/xlcpp_zos.hpp": "vendor/boost/include/boost/config/stdlib/xlcpp_zos.hpp",
- "boost/config/user.hpp": "vendor/boost/include/boost/config/user.hpp",
- "boost/config/warning_disable.hpp": "vendor/boost/include/boost/config/warning_disable.hpp",
- "boost/config/workaround.hpp": "vendor/boost/include/boost/config/workaround.hpp",
- "boost/container/allocator_traits.hpp": "vendor/boost/include/boost/container/allocator_traits.hpp",
- "boost/container/container_fwd.hpp": "vendor/boost/include/boost/container/container_fwd.hpp",
- "boost/container/detail/advanced_insert_int.hpp": "vendor/boost/include/boost/container/detail/advanced_insert_int.hpp",
- "boost/container/detail/algorithm.hpp": "vendor/boost/include/boost/container/detail/algorithm.hpp",
- "boost/container/detail/alloc_helpers.hpp": "vendor/boost/include/boost/container/detail/alloc_helpers.hpp",
- "boost/container/detail/allocation_type.hpp": "vendor/boost/include/boost/container/detail/allocation_type.hpp",
- "boost/container/detail/config_begin.hpp": "vendor/boost/include/boost/container/detail/config_begin.hpp",
- "boost/container/detail/config_end.hpp": "vendor/boost/include/boost/container/detail/config_end.hpp",
- "boost/container/detail/construct_in_place.hpp": "vendor/boost/include/boost/container/detail/construct_in_place.hpp",
- "boost/container/detail/copy_move_algo.hpp": "vendor/boost/include/boost/container/detail/copy_move_algo.hpp",
- "boost/container/detail/destroyers.hpp": "vendor/boost/include/boost/container/detail/destroyers.hpp",
- "boost/container/detail/iterator.hpp": "vendor/boost/include/boost/container/detail/iterator.hpp",
- "boost/container/detail/iterators.hpp": "vendor/boost/include/boost/container/detail/iterators.hpp",
- "boost/container/detail/min_max.hpp": "vendor/boost/include/boost/container/detail/min_max.hpp",
- "boost/container/detail/mpl.hpp": "vendor/boost/include/boost/container/detail/mpl.hpp",
- "boost/container/detail/next_capacity.hpp": "vendor/boost/include/boost/container/detail/next_capacity.hpp",
- "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/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",
- "boost/core/ref.hpp": "vendor/boost/include/boost/core/ref.hpp",
- "boost/core/scoped_enum.hpp": "vendor/boost/include/boost/core/scoped_enum.hpp",
- "boost/core/swap.hpp": "vendor/boost/include/boost/core/swap.hpp",
- "boost/core/typeinfo.hpp": "vendor/boost/include/boost/core/typeinfo.hpp",
- "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/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/call_traits.hpp": "vendor/boost/include/boost/detail/call_traits.hpp",
- "boost/detail/container_fwd.hpp": "vendor/boost/include/boost/detail/container_fwd.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/iterator.hpp": "vendor/boost/include/boost/detail/iterator.hpp",
- "boost/detail/lcast_precision.hpp": "vendor/boost/include/boost/detail/lcast_precision.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/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/foreach.hpp": "vendor/boost/include/boost/foreach.hpp",
- "boost/foreach_fwd.hpp": "vendor/boost/include/boost/foreach_fwd.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",
- "boost/function/detail/prologue.hpp": "vendor/boost/include/boost/function/detail/prologue.hpp",
- "boost/function/function0.hpp": "vendor/boost/include/boost/function/function0.hpp",
- "boost/function/function1.hpp": "vendor/boost/include/boost/function/function1.hpp",
- "boost/function/function10.hpp": "vendor/boost/include/boost/function/function10.hpp",
- "boost/function/function2.hpp": "vendor/boost/include/boost/function/function2.hpp",
- "boost/function/function3.hpp": "vendor/boost/include/boost/function/function3.hpp",
- "boost/function/function4.hpp": "vendor/boost/include/boost/function/function4.hpp",
- "boost/function/function5.hpp": "vendor/boost/include/boost/function/function5.hpp",
- "boost/function/function6.hpp": "vendor/boost/include/boost/function/function6.hpp",
- "boost/function/function7.hpp": "vendor/boost/include/boost/function/function7.hpp",
- "boost/function/function8.hpp": "vendor/boost/include/boost/function/function8.hpp",
- "boost/function/function9.hpp": "vendor/boost/include/boost/function/function9.hpp",
- "boost/function/function_base.hpp": "vendor/boost/include/boost/function/function_base.hpp",
- "boost/function/function_fwd.hpp": "vendor/boost/include/boost/function/function_fwd.hpp",
- "boost/function/function_template.hpp": "vendor/boost/include/boost/function/function_template.hpp",
- "boost/function_equal.hpp": "vendor/boost/include/boost/function_equal.hpp",
- "boost/function_output_iterator.hpp": "vendor/boost/include/boost/function_output_iterator.hpp",
- "boost/function_types/components.hpp": "vendor/boost/include/boost/function_types/components.hpp",
- "boost/function_types/config/cc_names.hpp": "vendor/boost/include/boost/function_types/config/cc_names.hpp",
- "boost/function_types/config/compiler.hpp": "vendor/boost/include/boost/function_types/config/compiler.hpp",
- "boost/function_types/config/config.hpp": "vendor/boost/include/boost/function_types/config/config.hpp",
- "boost/function_types/detail/class_transform.hpp": "vendor/boost/include/boost/function_types/detail/class_transform.hpp",
- "boost/function_types/detail/classifier.hpp": "vendor/boost/include/boost/function_types/detail/classifier.hpp",
- "boost/function_types/detail/classifier_impl/arity10_0.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity10_0.hpp",
- "boost/function_types/detail/classifier_impl/arity10_1.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity10_1.hpp",
- "boost/function_types/detail/classifier_impl/arity20_0.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity20_0.hpp",
- "boost/function_types/detail/classifier_impl/arity20_1.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity20_1.hpp",
- "boost/function_types/detail/classifier_impl/arity30_0.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity30_0.hpp",
- "boost/function_types/detail/classifier_impl/arity30_1.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity30_1.hpp",
- "boost/function_types/detail/classifier_impl/arity40_0.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity40_0.hpp",
- "boost/function_types/detail/classifier_impl/arity40_1.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity40_1.hpp",
- "boost/function_types/detail/classifier_impl/arity50_0.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity50_0.hpp",
- "boost/function_types/detail/classifier_impl/arity50_1.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/arity50_1.hpp",
- "boost/function_types/detail/classifier_impl/master.hpp": "vendor/boost/include/boost/function_types/detail/classifier_impl/master.hpp",
- "boost/function_types/detail/components_as_mpl_sequence.hpp": "vendor/boost/include/boost/function_types/detail/components_as_mpl_sequence.hpp",
- "boost/function_types/detail/components_impl/arity10_0.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity10_0.hpp",
- "boost/function_types/detail/components_impl/arity10_1.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity10_1.hpp",
- "boost/function_types/detail/components_impl/arity20_0.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity20_0.hpp",
- "boost/function_types/detail/components_impl/arity20_1.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity20_1.hpp",
- "boost/function_types/detail/components_impl/arity30_0.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity30_0.hpp",
- "boost/function_types/detail/components_impl/arity30_1.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity30_1.hpp",
- "boost/function_types/detail/components_impl/arity40_0.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity40_0.hpp",
- "boost/function_types/detail/components_impl/arity40_1.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity40_1.hpp",
- "boost/function_types/detail/components_impl/arity50_0.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity50_0.hpp",
- "boost/function_types/detail/components_impl/arity50_1.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/arity50_1.hpp",
- "boost/function_types/detail/components_impl/master.hpp": "vendor/boost/include/boost/function_types/detail/components_impl/master.hpp",
- "boost/function_types/detail/cv_traits.hpp": "vendor/boost/include/boost/function_types/detail/cv_traits.hpp",
- "boost/function_types/detail/encoding/aliases_def.hpp": "vendor/boost/include/boost/function_types/detail/encoding/aliases_def.hpp",
- "boost/function_types/detail/encoding/aliases_undef.hpp": "vendor/boost/include/boost/function_types/detail/encoding/aliases_undef.hpp",
- "boost/function_types/detail/encoding/def.hpp": "vendor/boost/include/boost/function_types/detail/encoding/def.hpp",
- "boost/function_types/detail/encoding/undef.hpp": "vendor/boost/include/boost/function_types/detail/encoding/undef.hpp",
- "boost/function_types/detail/pp_arity_loop.hpp": "vendor/boost/include/boost/function_types/detail/pp_arity_loop.hpp",
- "boost/function_types/detail/pp_cc_loop/master.hpp": "vendor/boost/include/boost/function_types/detail/pp_cc_loop/master.hpp",
- "boost/function_types/detail/pp_cc_loop/preprocessed.hpp": "vendor/boost/include/boost/function_types/detail/pp_cc_loop/preprocessed.hpp",
- "boost/function_types/detail/pp_loop.hpp": "vendor/boost/include/boost/function_types/detail/pp_loop.hpp",
- "boost/function_types/detail/pp_retag_default_cc/master.hpp": "vendor/boost/include/boost/function_types/detail/pp_retag_default_cc/master.hpp",
- "boost/function_types/detail/pp_retag_default_cc/preprocessed.hpp": "vendor/boost/include/boost/function_types/detail/pp_retag_default_cc/preprocessed.hpp",
- "boost/function_types/detail/pp_tags/cc_tag.hpp": "vendor/boost/include/boost/function_types/detail/pp_tags/cc_tag.hpp",
- "boost/function_types/detail/pp_tags/master.hpp": "vendor/boost/include/boost/function_types/detail/pp_tags/master.hpp",
- "boost/function_types/detail/pp_tags/preprocessed.hpp": "vendor/boost/include/boost/function_types/detail/pp_tags/preprocessed.hpp",
- "boost/function_types/detail/pp_variate_loop/master.hpp": "vendor/boost/include/boost/function_types/detail/pp_variate_loop/master.hpp",
- "boost/function_types/detail/pp_variate_loop/preprocessed.hpp": "vendor/boost/include/boost/function_types/detail/pp_variate_loop/preprocessed.hpp",
- "boost/function_types/detail/retag_default_cc.hpp": "vendor/boost/include/boost/function_types/detail/retag_default_cc.hpp",
- "boost/function_types/detail/synthesize.hpp": "vendor/boost/include/boost/function_types/detail/synthesize.hpp",
- "boost/function_types/detail/synthesize_impl/arity10_0.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity10_0.hpp",
- "boost/function_types/detail/synthesize_impl/arity10_1.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity10_1.hpp",
- "boost/function_types/detail/synthesize_impl/arity20_0.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity20_0.hpp",
- "boost/function_types/detail/synthesize_impl/arity20_1.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity20_1.hpp",
- "boost/function_types/detail/synthesize_impl/arity30_0.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity30_0.hpp",
- "boost/function_types/detail/synthesize_impl/arity30_1.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity30_1.hpp",
- "boost/function_types/detail/synthesize_impl/arity40_0.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity40_0.hpp",
- "boost/function_types/detail/synthesize_impl/arity40_1.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity40_1.hpp",
- "boost/function_types/detail/synthesize_impl/arity50_0.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity50_0.hpp",
- "boost/function_types/detail/synthesize_impl/arity50_1.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/arity50_1.hpp",
- "boost/function_types/detail/synthesize_impl/master.hpp": "vendor/boost/include/boost/function_types/detail/synthesize_impl/master.hpp",
- "boost/function_types/detail/to_sequence.hpp": "vendor/boost/include/boost/function_types/detail/to_sequence.hpp",
- "boost/function_types/function_arity.hpp": "vendor/boost/include/boost/function_types/function_arity.hpp",
- "boost/function_types/is_callable_builtin.hpp": "vendor/boost/include/boost/function_types/is_callable_builtin.hpp",
- "boost/function_types/is_function.hpp": "vendor/boost/include/boost/function_types/is_function.hpp",
- "boost/function_types/is_member_function_pointer.hpp": "vendor/boost/include/boost/function_types/is_member_function_pointer.hpp",
- "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_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",
- "boost/fusion/adapted/mpl/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/begin_impl.hpp",
- "boost/fusion/adapted/mpl/detail/category_of_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/category_of_impl.hpp",
- "boost/fusion/adapted/mpl/detail/empty_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/empty_impl.hpp",
- "boost/fusion/adapted/mpl/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/end_impl.hpp",
- "boost/fusion/adapted/mpl/detail/has_key_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/has_key_impl.hpp",
- "boost/fusion/adapted/mpl/detail/is_sequence_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/is_sequence_impl.hpp",
- "boost/fusion/adapted/mpl/detail/is_view_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/is_view_impl.hpp",
- "boost/fusion/adapted/mpl/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/size_impl.hpp",
- "boost/fusion/adapted/mpl/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/detail/value_at_impl.hpp",
- "boost/fusion/adapted/mpl/mpl_iterator.hpp": "vendor/boost/include/boost/fusion/adapted/mpl/mpl_iterator.hpp",
- "boost/fusion/adapted/struct/adapt_struct.hpp": "vendor/boost/include/boost/fusion/adapted/struct/adapt_struct.hpp",
- "boost/fusion/adapted/struct/detail/adapt_auto.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/adapt_auto.hpp",
- "boost/fusion/adapted/struct/detail/adapt_base.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/adapt_base.hpp",
- "boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp",
- "boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp",
- "boost/fusion/adapted/struct/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/at_impl.hpp",
- "boost/fusion/adapted/struct/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/begin_impl.hpp",
- "boost/fusion/adapted/struct/detail/category_of_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/category_of_impl.hpp",
- "boost/fusion/adapted/struct/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/deref_impl.hpp",
- "boost/fusion/adapted/struct/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/end_impl.hpp",
- "boost/fusion/adapted/struct/detail/extension.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/extension.hpp",
- "boost/fusion/adapted/struct/detail/is_sequence_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/is_sequence_impl.hpp",
- "boost/fusion/adapted/struct/detail/is_view_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/is_view_impl.hpp",
- "boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp",
- "boost/fusion/adapted/struct/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/size_impl.hpp",
- "boost/fusion/adapted/struct/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/value_at_impl.hpp",
- "boost/fusion/adapted/struct/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/adapted/struct/detail/value_of_impl.hpp",
- "boost/fusion/algorithm/auxiliary/copy.hpp": "vendor/boost/include/boost/fusion/algorithm/auxiliary/copy.hpp",
- "boost/fusion/algorithm/iteration/detail/fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/fold.hpp",
- "boost/fusion/algorithm/iteration/detail/for_each.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/for_each.hpp",
- "boost/fusion/algorithm/iteration/detail/preprocessed/fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/preprocessed/fold.hpp",
- "boost/fusion/algorithm/iteration/detail/preprocessed/reverse_fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/preprocessed/reverse_fold.hpp",
- "boost/fusion/algorithm/iteration/detail/segmented_fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/segmented_fold.hpp",
- "boost/fusion/algorithm/iteration/detail/segmented_for_each.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/detail/segmented_for_each.hpp",
- "boost/fusion/algorithm/iteration/fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/fold.hpp",
- "boost/fusion/algorithm/iteration/fold_fwd.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/fold_fwd.hpp",
- "boost/fusion/algorithm/iteration/for_each.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/for_each.hpp",
- "boost/fusion/algorithm/iteration/for_each_fwd.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/for_each_fwd.hpp",
- "boost/fusion/algorithm/iteration/reverse_fold.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/reverse_fold.hpp",
- "boost/fusion/algorithm/iteration/reverse_fold_fwd.hpp": "vendor/boost/include/boost/fusion/algorithm/iteration/reverse_fold_fwd.hpp",
- "boost/fusion/algorithm/query/any.hpp": "vendor/boost/include/boost/fusion/algorithm/query/any.hpp",
- "boost/fusion/algorithm/query/detail/any.hpp": "vendor/boost/include/boost/fusion/algorithm/query/detail/any.hpp",
- "boost/fusion/algorithm/query/detail/find_if.hpp": "vendor/boost/include/boost/fusion/algorithm/query/detail/find_if.hpp",
- "boost/fusion/algorithm/query/detail/segmented_find.hpp": "vendor/boost/include/boost/fusion/algorithm/query/detail/segmented_find.hpp",
- "boost/fusion/algorithm/query/detail/segmented_find_if.hpp": "vendor/boost/include/boost/fusion/algorithm/query/detail/segmented_find_if.hpp",
- "boost/fusion/algorithm/query/find.hpp": "vendor/boost/include/boost/fusion/algorithm/query/find.hpp",
- "boost/fusion/algorithm/query/find_fwd.hpp": "vendor/boost/include/boost/fusion/algorithm/query/find_fwd.hpp",
- "boost/fusion/algorithm/query/find_if.hpp": "vendor/boost/include/boost/fusion/algorithm/query/find_if.hpp",
- "boost/fusion/algorithm/query/find_if_fwd.hpp": "vendor/boost/include/boost/fusion/algorithm/query/find_if_fwd.hpp",
- "boost/fusion/algorithm/transformation/erase.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/erase.hpp",
- "boost/fusion/algorithm/transformation/erase_key.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/erase_key.hpp",
- "boost/fusion/algorithm/transformation/filter_if.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/filter_if.hpp",
- "boost/fusion/algorithm/transformation/insert.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/insert.hpp",
- "boost/fusion/algorithm/transformation/insert_range.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/insert_range.hpp",
- "boost/fusion/algorithm/transformation/pop_back.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/pop_back.hpp",
- "boost/fusion/algorithm/transformation/pop_front.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/pop_front.hpp",
- "boost/fusion/algorithm/transformation/push_back.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/push_back.hpp",
- "boost/fusion/algorithm/transformation/push_front.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/push_front.hpp",
- "boost/fusion/algorithm/transformation/remove.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/remove.hpp",
- "boost/fusion/algorithm/transformation/reverse.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/reverse.hpp",
- "boost/fusion/algorithm/transformation/transform.hpp": "vendor/boost/include/boost/fusion/algorithm/transformation/transform.hpp",
- "boost/fusion/container/deque/deque_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/deque_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/limits.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/limits.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque10_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque10_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque20_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque20_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque30_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque30_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque40_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque40_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque50_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque50_fwd.hpp",
- "boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp": "vendor/boost/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp",
- "boost/fusion/container/generation/detail/pp_make_vector.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/pp_make_vector.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector10.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector10.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector20.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector20.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector30.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector30.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector40.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector40.hpp",
- "boost/fusion/container/generation/detail/preprocessed/make_vector50.hpp": "vendor/boost/include/boost/fusion/container/generation/detail/preprocessed/make_vector50.hpp",
- "boost/fusion/container/generation/make_vector.hpp": "vendor/boost/include/boost/fusion/container/generation/make_vector.hpp",
- "boost/fusion/container/list/cons.hpp": "vendor/boost/include/boost/fusion/container/list/cons.hpp",
- "boost/fusion/container/list/cons_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/cons_fwd.hpp",
- "boost/fusion/container/list/cons_iterator.hpp": "vendor/boost/include/boost/fusion/container/list/cons_iterator.hpp",
- "boost/fusion/container/list/convert.hpp": "vendor/boost/include/boost/fusion/container/list/convert.hpp",
- "boost/fusion/container/list/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/at_impl.hpp",
- "boost/fusion/container/list/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/begin_impl.hpp",
- "boost/fusion/container/list/detail/build_cons.hpp": "vendor/boost/include/boost/fusion/container/list/detail/build_cons.hpp",
- "boost/fusion/container/list/detail/convert_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/convert_impl.hpp",
- "boost/fusion/container/list/detail/cpp03/limits.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/limits.hpp",
- "boost/fusion/container/list/detail/cpp03/list_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/list_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list10_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list10_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list20_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list20_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list30_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list30_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list40_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list40_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list50_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list50_fwd.hpp",
- "boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp",
- "boost/fusion/container/list/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/deref_impl.hpp",
- "boost/fusion/container/list/detail/empty_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/empty_impl.hpp",
- "boost/fusion/container/list/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/end_impl.hpp",
- "boost/fusion/container/list/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/equal_to_impl.hpp",
- "boost/fusion/container/list/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/next_impl.hpp",
- "boost/fusion/container/list/detail/reverse_cons.hpp": "vendor/boost/include/boost/fusion/container/list/detail/reverse_cons.hpp",
- "boost/fusion/container/list/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/value_at_impl.hpp",
- "boost/fusion/container/list/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/container/list/detail/value_of_impl.hpp",
- "boost/fusion/container/list/list_fwd.hpp": "vendor/boost/include/boost/fusion/container/list/list_fwd.hpp",
- "boost/fusion/container/list/nil.hpp": "vendor/boost/include/boost/fusion/container/list/nil.hpp",
- "boost/fusion/container/map/detail/cpp03/limits.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/limits.hpp",
- "boost/fusion/container/map/detail/cpp03/map_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/map_fwd.hpp",
- "boost/fusion/container/map/detail/cpp03/preprocessed/map10_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map10_fwd.hpp",
- "boost/fusion/container/map/detail/cpp03/preprocessed/map20_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map20_fwd.hpp",
- "boost/fusion/container/map/detail/cpp03/preprocessed/map30_fwd.hpp": "vendor/boost/include/boost/fusion/container/map/detail/cpp03/preprocessed/map30_fwd.hpp",
- "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/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",
- "boost/fusion/container/set/detail/cpp03/preprocessed/set20_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set20_fwd.hpp",
- "boost/fusion/container/set/detail/cpp03/preprocessed/set30_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set30_fwd.hpp",
- "boost/fusion/container/set/detail/cpp03/preprocessed/set40_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set40_fwd.hpp",
- "boost/fusion/container/set/detail/cpp03/preprocessed/set50_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set50_fwd.hpp",
- "boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp",
- "boost/fusion/container/set/detail/cpp03/set_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/detail/cpp03/set_fwd.hpp",
- "boost/fusion/container/set/set_fwd.hpp": "vendor/boost/include/boost/fusion/container/set/set_fwd.hpp",
- "boost/fusion/container/vector.hpp": "vendor/boost/include/boost/fusion/container/vector.hpp",
- "boost/fusion/container/vector/convert.hpp": "vendor/boost/include/boost/fusion/container/vector/convert.hpp",
- "boost/fusion/container/vector/detail/advance_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/advance_impl.hpp",
- "boost/fusion/container/vector/detail/as_vector.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/as_vector.hpp",
- "boost/fusion/container/vector/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/at_impl.hpp",
- "boost/fusion/container/vector/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/begin_impl.hpp",
- "boost/fusion/container/vector/detail/config.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/config.hpp",
- "boost/fusion/container/vector/detail/convert_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/convert_impl.hpp",
- "boost/fusion/container/vector/detail/cpp03/as_vector.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/as_vector.hpp",
- "boost/fusion/container/vector/detail/cpp03/limits.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/limits.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector10.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector10.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector20.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector20.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector30.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector30.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector40.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector40.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector50.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector50.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector10.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector10.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector10_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector10_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector20.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector20.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector20_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector20_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector30.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector30.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector30_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector30_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector40.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector40.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector40_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector40_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector50.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector50.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector50_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector50_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser10.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser10.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser20.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser20.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser30.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser30.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser40.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser40.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser50.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser50.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50.hpp",
- "boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/value_at_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/value_at_impl.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector10.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector10.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector20.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector20.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector30.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector30.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector40.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector40.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector50.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector50.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector_forward_ctor.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector_forward_ctor.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector_n.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector_n.hpp",
- "boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp",
- "boost/fusion/container/vector/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/deref_impl.hpp",
- "boost/fusion/container/vector/detail/distance_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/distance_impl.hpp",
- "boost/fusion/container/vector/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/end_impl.hpp",
- "boost/fusion/container/vector/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/equal_to_impl.hpp",
- "boost/fusion/container/vector/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/next_impl.hpp",
- "boost/fusion/container/vector/detail/prior_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/prior_impl.hpp",
- "boost/fusion/container/vector/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/value_at_impl.hpp",
- "boost/fusion/container/vector/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/container/vector/detail/value_of_impl.hpp",
- "boost/fusion/container/vector/vector.hpp": "vendor/boost/include/boost/fusion/container/vector/vector.hpp",
- "boost/fusion/container/vector/vector10.hpp": "vendor/boost/include/boost/fusion/container/vector/vector10.hpp",
- "boost/fusion/container/vector/vector_fwd.hpp": "vendor/boost/include/boost/fusion/container/vector/vector_fwd.hpp",
- "boost/fusion/container/vector/vector_iterator.hpp": "vendor/boost/include/boost/fusion/container/vector/vector_iterator.hpp",
- "boost/fusion/include/any.hpp": "vendor/boost/include/boost/fusion/include/any.hpp",
- "boost/fusion/include/as_list.hpp": "vendor/boost/include/boost/fusion/include/as_list.hpp",
- "boost/fusion/include/as_vector.hpp": "vendor/boost/include/boost/fusion/include/as_vector.hpp",
- "boost/fusion/include/at.hpp": "vendor/boost/include/boost/fusion/include/at.hpp",
- "boost/fusion/include/at_c.hpp": "vendor/boost/include/boost/fusion/include/at_c.hpp",
- "boost/fusion/include/begin.hpp": "vendor/boost/include/boost/fusion/include/begin.hpp",
- "boost/fusion/include/category_of.hpp": "vendor/boost/include/boost/fusion/include/category_of.hpp",
- "boost/fusion/include/cons.hpp": "vendor/boost/include/boost/fusion/include/cons.hpp",
- "boost/fusion/include/copy.hpp": "vendor/boost/include/boost/fusion/include/copy.hpp",
- "boost/fusion/include/deref.hpp": "vendor/boost/include/boost/fusion/include/deref.hpp",
- "boost/fusion/include/end.hpp": "vendor/boost/include/boost/fusion/include/end.hpp",
- "boost/fusion/include/equal_to.hpp": "vendor/boost/include/boost/fusion/include/equal_to.hpp",
- "boost/fusion/include/filter_if.hpp": "vendor/boost/include/boost/fusion/include/filter_if.hpp",
- "boost/fusion/include/fold.hpp": "vendor/boost/include/boost/fusion/include/fold.hpp",
- "boost/fusion/include/for_each.hpp": "vendor/boost/include/boost/fusion/include/for_each.hpp",
- "boost/fusion/include/intrinsic.hpp": "vendor/boost/include/boost/fusion/include/intrinsic.hpp",
- "boost/fusion/include/is_segmented.hpp": "vendor/boost/include/boost/fusion/include/is_segmented.hpp",
- "boost/fusion/include/is_sequence.hpp": "vendor/boost/include/boost/fusion/include/is_sequence.hpp",
- "boost/fusion/include/is_view.hpp": "vendor/boost/include/boost/fusion/include/is_view.hpp",
- "boost/fusion/include/iterator_base.hpp": "vendor/boost/include/boost/fusion/include/iterator_base.hpp",
- "boost/fusion/include/make_vector.hpp": "vendor/boost/include/boost/fusion/include/make_vector.hpp",
- "boost/fusion/include/mpl.hpp": "vendor/boost/include/boost/fusion/include/mpl.hpp",
- "boost/fusion/include/next.hpp": "vendor/boost/include/boost/fusion/include/next.hpp",
- "boost/fusion/include/out.hpp": "vendor/boost/include/boost/fusion/include/out.hpp",
- "boost/fusion/include/pop_back.hpp": "vendor/boost/include/boost/fusion/include/pop_back.hpp",
- "boost/fusion/include/pop_front.hpp": "vendor/boost/include/boost/fusion/include/pop_front.hpp",
- "boost/fusion/include/prior.hpp": "vendor/boost/include/boost/fusion/include/prior.hpp",
- "boost/fusion/include/push_back.hpp": "vendor/boost/include/boost/fusion/include/push_back.hpp",
- "boost/fusion/include/push_front.hpp": "vendor/boost/include/boost/fusion/include/push_front.hpp",
- "boost/fusion/include/reverse.hpp": "vendor/boost/include/boost/fusion/include/reverse.hpp",
- "boost/fusion/include/reverse_fold.hpp": "vendor/boost/include/boost/fusion/include/reverse_fold.hpp",
- "boost/fusion/include/single_view.hpp": "vendor/boost/include/boost/fusion/include/single_view.hpp",
- "boost/fusion/include/size.hpp": "vendor/boost/include/boost/fusion/include/size.hpp",
- "boost/fusion/include/tag_of_fwd.hpp": "vendor/boost/include/boost/fusion/include/tag_of_fwd.hpp",
- "boost/fusion/include/transform.hpp": "vendor/boost/include/boost/fusion/include/transform.hpp",
- "boost/fusion/include/value_at.hpp": "vendor/boost/include/boost/fusion/include/value_at.hpp",
- "boost/fusion/include/value_of.hpp": "vendor/boost/include/boost/fusion/include/value_of.hpp",
- "boost/fusion/include/vector.hpp": "vendor/boost/include/boost/fusion/include/vector.hpp",
- "boost/fusion/iterator/advance.hpp": "vendor/boost/include/boost/fusion/iterator/advance.hpp",
- "boost/fusion/iterator/basic_iterator.hpp": "vendor/boost/include/boost/fusion/iterator/basic_iterator.hpp",
- "boost/fusion/iterator/deref.hpp": "vendor/boost/include/boost/fusion/iterator/deref.hpp",
- "boost/fusion/iterator/deref_data.hpp": "vendor/boost/include/boost/fusion/iterator/deref_data.hpp",
- "boost/fusion/iterator/detail/adapt_deref_traits.hpp": "vendor/boost/include/boost/fusion/iterator/detail/adapt_deref_traits.hpp",
- "boost/fusion/iterator/detail/adapt_value_traits.hpp": "vendor/boost/include/boost/fusion/iterator/detail/adapt_value_traits.hpp",
- "boost/fusion/iterator/detail/advance.hpp": "vendor/boost/include/boost/fusion/iterator/detail/advance.hpp",
- "boost/fusion/iterator/detail/distance.hpp": "vendor/boost/include/boost/fusion/iterator/detail/distance.hpp",
- "boost/fusion/iterator/detail/segment_sequence.hpp": "vendor/boost/include/boost/fusion/iterator/detail/segment_sequence.hpp",
- "boost/fusion/iterator/detail/segmented_equal_to.hpp": "vendor/boost/include/boost/fusion/iterator/detail/segmented_equal_to.hpp",
- "boost/fusion/iterator/detail/segmented_iterator.hpp": "vendor/boost/include/boost/fusion/iterator/detail/segmented_iterator.hpp",
- "boost/fusion/iterator/detail/segmented_next_impl.hpp": "vendor/boost/include/boost/fusion/iterator/detail/segmented_next_impl.hpp",
- "boost/fusion/iterator/distance.hpp": "vendor/boost/include/boost/fusion/iterator/distance.hpp",
- "boost/fusion/iterator/equal_to.hpp": "vendor/boost/include/boost/fusion/iterator/equal_to.hpp",
- "boost/fusion/iterator/iterator_adapter.hpp": "vendor/boost/include/boost/fusion/iterator/iterator_adapter.hpp",
- "boost/fusion/iterator/iterator_facade.hpp": "vendor/boost/include/boost/fusion/iterator/iterator_facade.hpp",
- "boost/fusion/iterator/key_of.hpp": "vendor/boost/include/boost/fusion/iterator/key_of.hpp",
- "boost/fusion/iterator/mpl.hpp": "vendor/boost/include/boost/fusion/iterator/mpl.hpp",
- "boost/fusion/iterator/mpl/convert_iterator.hpp": "vendor/boost/include/boost/fusion/iterator/mpl/convert_iterator.hpp",
- "boost/fusion/iterator/mpl/fusion_iterator.hpp": "vendor/boost/include/boost/fusion/iterator/mpl/fusion_iterator.hpp",
- "boost/fusion/iterator/next.hpp": "vendor/boost/include/boost/fusion/iterator/next.hpp",
- "boost/fusion/iterator/prior.hpp": "vendor/boost/include/boost/fusion/iterator/prior.hpp",
- "boost/fusion/iterator/segmented_iterator.hpp": "vendor/boost/include/boost/fusion/iterator/segmented_iterator.hpp",
- "boost/fusion/iterator/value_of.hpp": "vendor/boost/include/boost/fusion/iterator/value_of.hpp",
- "boost/fusion/iterator/value_of_data.hpp": "vendor/boost/include/boost/fusion/iterator/value_of_data.hpp",
- "boost/fusion/mpl.hpp": "vendor/boost/include/boost/fusion/mpl.hpp",
- "boost/fusion/mpl/at.hpp": "vendor/boost/include/boost/fusion/mpl/at.hpp",
- "boost/fusion/mpl/back.hpp": "vendor/boost/include/boost/fusion/mpl/back.hpp",
- "boost/fusion/mpl/begin.hpp": "vendor/boost/include/boost/fusion/mpl/begin.hpp",
- "boost/fusion/mpl/clear.hpp": "vendor/boost/include/boost/fusion/mpl/clear.hpp",
- "boost/fusion/mpl/detail/clear.hpp": "vendor/boost/include/boost/fusion/mpl/detail/clear.hpp",
- "boost/fusion/mpl/empty.hpp": "vendor/boost/include/boost/fusion/mpl/empty.hpp",
- "boost/fusion/mpl/end.hpp": "vendor/boost/include/boost/fusion/mpl/end.hpp",
- "boost/fusion/mpl/erase.hpp": "vendor/boost/include/boost/fusion/mpl/erase.hpp",
- "boost/fusion/mpl/erase_key.hpp": "vendor/boost/include/boost/fusion/mpl/erase_key.hpp",
- "boost/fusion/mpl/front.hpp": "vendor/boost/include/boost/fusion/mpl/front.hpp",
- "boost/fusion/mpl/has_key.hpp": "vendor/boost/include/boost/fusion/mpl/has_key.hpp",
- "boost/fusion/mpl/insert.hpp": "vendor/boost/include/boost/fusion/mpl/insert.hpp",
- "boost/fusion/mpl/insert_range.hpp": "vendor/boost/include/boost/fusion/mpl/insert_range.hpp",
- "boost/fusion/mpl/pop_back.hpp": "vendor/boost/include/boost/fusion/mpl/pop_back.hpp",
- "boost/fusion/mpl/pop_front.hpp": "vendor/boost/include/boost/fusion/mpl/pop_front.hpp",
- "boost/fusion/mpl/push_back.hpp": "vendor/boost/include/boost/fusion/mpl/push_back.hpp",
- "boost/fusion/mpl/push_front.hpp": "vendor/boost/include/boost/fusion/mpl/push_front.hpp",
- "boost/fusion/mpl/size.hpp": "vendor/boost/include/boost/fusion/mpl/size.hpp",
- "boost/fusion/sequence/comparison/detail/equal_to.hpp": "vendor/boost/include/boost/fusion/sequence/comparison/detail/equal_to.hpp",
- "boost/fusion/sequence/comparison/enable_comparison.hpp": "vendor/boost/include/boost/fusion/sequence/comparison/enable_comparison.hpp",
- "boost/fusion/sequence/comparison/equal_to.hpp": "vendor/boost/include/boost/fusion/sequence/comparison/equal_to.hpp",
- "boost/fusion/sequence/convert.hpp": "vendor/boost/include/boost/fusion/sequence/convert.hpp",
- "boost/fusion/sequence/intrinsic.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic.hpp",
- "boost/fusion/sequence/intrinsic/at.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/at.hpp",
- "boost/fusion/sequence/intrinsic/at_c.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/at_c.hpp",
- "boost/fusion/sequence/intrinsic/at_key.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/at_key.hpp",
- "boost/fusion/sequence/intrinsic/back.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/back.hpp",
- "boost/fusion/sequence/intrinsic/begin.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/begin.hpp",
- "boost/fusion/sequence/intrinsic/detail/segmented_begin.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/detail/segmented_begin.hpp",
- "boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp",
- "boost/fusion/sequence/intrinsic/detail/segmented_end.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/detail/segmented_end.hpp",
- "boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp",
- "boost/fusion/sequence/intrinsic/detail/segmented_size.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/detail/segmented_size.hpp",
- "boost/fusion/sequence/intrinsic/empty.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/empty.hpp",
- "boost/fusion/sequence/intrinsic/end.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/end.hpp",
- "boost/fusion/sequence/intrinsic/front.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/front.hpp",
- "boost/fusion/sequence/intrinsic/has_key.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/has_key.hpp",
- "boost/fusion/sequence/intrinsic/segments.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/segments.hpp",
- "boost/fusion/sequence/intrinsic/size.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/size.hpp",
- "boost/fusion/sequence/intrinsic/swap.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/swap.hpp",
- "boost/fusion/sequence/intrinsic/value_at.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/value_at.hpp",
- "boost/fusion/sequence/intrinsic/value_at_key.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic/value_at_key.hpp",
- "boost/fusion/sequence/intrinsic_fwd.hpp": "vendor/boost/include/boost/fusion/sequence/intrinsic_fwd.hpp",
- "boost/fusion/sequence/io/detail/manip.hpp": "vendor/boost/include/boost/fusion/sequence/io/detail/manip.hpp",
- "boost/fusion/sequence/io/detail/out.hpp": "vendor/boost/include/boost/fusion/sequence/io/detail/out.hpp",
- "boost/fusion/sequence/io/out.hpp": "vendor/boost/include/boost/fusion/sequence/io/out.hpp",
- "boost/fusion/sequence/sequence_facade.hpp": "vendor/boost/include/boost/fusion/sequence/sequence_facade.hpp",
- "boost/fusion/support/as_const.hpp": "vendor/boost/include/boost/fusion/support/as_const.hpp",
- "boost/fusion/support/category_of.hpp": "vendor/boost/include/boost/fusion/support/category_of.hpp",
- "boost/fusion/support/config.hpp": "vendor/boost/include/boost/fusion/support/config.hpp",
- "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/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_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",
- "boost/fusion/support/is_iterator.hpp": "vendor/boost/include/boost/fusion/support/is_iterator.hpp",
- "boost/fusion/support/is_segmented.hpp": "vendor/boost/include/boost/fusion/support/is_segmented.hpp",
- "boost/fusion/support/is_sequence.hpp": "vendor/boost/include/boost/fusion/support/is_sequence.hpp",
- "boost/fusion/support/is_view.hpp": "vendor/boost/include/boost/fusion/support/is_view.hpp",
- "boost/fusion/support/iterator_base.hpp": "vendor/boost/include/boost/fusion/support/iterator_base.hpp",
- "boost/fusion/support/segmented_fold_until.hpp": "vendor/boost/include/boost/fusion/support/segmented_fold_until.hpp",
- "boost/fusion/support/sequence_base.hpp": "vendor/boost/include/boost/fusion/support/sequence_base.hpp",
- "boost/fusion/support/tag_of.hpp": "vendor/boost/include/boost/fusion/support/tag_of.hpp",
- "boost/fusion/support/tag_of_fwd.hpp": "vendor/boost/include/boost/fusion/support/tag_of_fwd.hpp",
- "boost/fusion/support/unused.hpp": "vendor/boost/include/boost/fusion/support/unused.hpp",
- "boost/fusion/support/void.hpp": "vendor/boost/include/boost/fusion/support/void.hpp",
- "boost/fusion/view/detail/strictest_traversal.hpp": "vendor/boost/include/boost/fusion/view/detail/strictest_traversal.hpp",
- "boost/fusion/view/filter_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/begin_impl.hpp",
- "boost/fusion/view/filter_view/detail/deref_data_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/deref_data_impl.hpp",
- "boost/fusion/view/filter_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/deref_impl.hpp",
- "boost/fusion/view/filter_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/end_impl.hpp",
- "boost/fusion/view/filter_view/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/equal_to_impl.hpp",
- "boost/fusion/view/filter_view/detail/key_of_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/key_of_impl.hpp",
- "boost/fusion/view/filter_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/next_impl.hpp",
- "boost/fusion/view/filter_view/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/size_impl.hpp",
- "boost/fusion/view/filter_view/detail/value_of_data_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/value_of_data_impl.hpp",
- "boost/fusion/view/filter_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/filter_view/detail/value_of_impl.hpp",
- "boost/fusion/view/filter_view/filter_view.hpp": "vendor/boost/include/boost/fusion/view/filter_view/filter_view.hpp",
- "boost/fusion/view/filter_view/filter_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/filter_view/filter_view_iterator.hpp",
- "boost/fusion/view/iterator_range.hpp": "vendor/boost/include/boost/fusion/view/iterator_range.hpp",
- "boost/fusion/view/iterator_range/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/at_impl.hpp",
- "boost/fusion/view/iterator_range/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/begin_impl.hpp",
- "boost/fusion/view/iterator_range/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/end_impl.hpp",
- "boost/fusion/view/iterator_range/detail/is_segmented_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/is_segmented_impl.hpp",
- "boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp",
- "boost/fusion/view/iterator_range/detail/segments_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/segments_impl.hpp",
- "boost/fusion/view/iterator_range/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/size_impl.hpp",
- "boost/fusion/view/iterator_range/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/detail/value_at_impl.hpp",
- "boost/fusion/view/iterator_range/iterator_range.hpp": "vendor/boost/include/boost/fusion/view/iterator_range/iterator_range.hpp",
- "boost/fusion/view/joint_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/begin_impl.hpp",
- "boost/fusion/view/joint_view/detail/deref_data_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/deref_data_impl.hpp",
- "boost/fusion/view/joint_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/deref_impl.hpp",
- "boost/fusion/view/joint_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/end_impl.hpp",
- "boost/fusion/view/joint_view/detail/key_of_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/key_of_impl.hpp",
- "boost/fusion/view/joint_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/next_impl.hpp",
- "boost/fusion/view/joint_view/detail/value_of_data_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/value_of_data_impl.hpp",
- "boost/fusion/view/joint_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/joint_view/detail/value_of_impl.hpp",
- "boost/fusion/view/joint_view/joint_view.hpp": "vendor/boost/include/boost/fusion/view/joint_view/joint_view.hpp",
- "boost/fusion/view/joint_view/joint_view_fwd.hpp": "vendor/boost/include/boost/fusion/view/joint_view/joint_view_fwd.hpp",
- "boost/fusion/view/joint_view/joint_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/joint_view/joint_view_iterator.hpp",
- "boost/fusion/view/reverse_view/detail/advance_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/advance_impl.hpp",
- "boost/fusion/view/reverse_view/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/at_impl.hpp",
- "boost/fusion/view/reverse_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/begin_impl.hpp",
- "boost/fusion/view/reverse_view/detail/deref_data_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/deref_data_impl.hpp",
- "boost/fusion/view/reverse_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/deref_impl.hpp",
- "boost/fusion/view/reverse_view/detail/distance_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/distance_impl.hpp",
- "boost/fusion/view/reverse_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/end_impl.hpp",
- "boost/fusion/view/reverse_view/detail/key_of_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/key_of_impl.hpp",
- "boost/fusion/view/reverse_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/next_impl.hpp",
- "boost/fusion/view/reverse_view/detail/prior_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/prior_impl.hpp",
- "boost/fusion/view/reverse_view/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/value_at_impl.hpp",
- "boost/fusion/view/reverse_view/detail/value_of_data_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/value_of_data_impl.hpp",
- "boost/fusion/view/reverse_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/detail/value_of_impl.hpp",
- "boost/fusion/view/reverse_view/reverse_view.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/reverse_view.hpp",
- "boost/fusion/view/reverse_view/reverse_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/reverse_view/reverse_view_iterator.hpp",
- "boost/fusion/view/single_view.hpp": "vendor/boost/include/boost/fusion/view/single_view.hpp",
- "boost/fusion/view/single_view/detail/advance_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/advance_impl.hpp",
- "boost/fusion/view/single_view/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/at_impl.hpp",
- "boost/fusion/view/single_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/begin_impl.hpp",
- "boost/fusion/view/single_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/deref_impl.hpp",
- "boost/fusion/view/single_view/detail/distance_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/distance_impl.hpp",
- "boost/fusion/view/single_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/end_impl.hpp",
- "boost/fusion/view/single_view/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/equal_to_impl.hpp",
- "boost/fusion/view/single_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/next_impl.hpp",
- "boost/fusion/view/single_view/detail/prior_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/prior_impl.hpp",
- "boost/fusion/view/single_view/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/size_impl.hpp",
- "boost/fusion/view/single_view/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/value_at_impl.hpp",
- "boost/fusion/view/single_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/single_view/detail/value_of_impl.hpp",
- "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/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",
- "boost/fusion/view/transform_view/detail/distance_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/distance_impl.hpp",
- "boost/fusion/view/transform_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/end_impl.hpp",
- "boost/fusion/view/transform_view/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/equal_to_impl.hpp",
- "boost/fusion/view/transform_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/next_impl.hpp",
- "boost/fusion/view/transform_view/detail/prior_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/prior_impl.hpp",
- "boost/fusion/view/transform_view/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/value_at_impl.hpp",
- "boost/fusion/view/transform_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/transform_view/detail/value_of_impl.hpp",
- "boost/fusion/view/transform_view/transform_view.hpp": "vendor/boost/include/boost/fusion/view/transform_view/transform_view.hpp",
- "boost/fusion/view/transform_view/transform_view_fwd.hpp": "vendor/boost/include/boost/fusion/view/transform_view/transform_view_fwd.hpp",
- "boost/fusion/view/transform_view/transform_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/transform_view/transform_view_iterator.hpp",
- "boost/fusion/view/zip_view.hpp": "vendor/boost/include/boost/fusion/view/zip_view.hpp",
- "boost/fusion/view/zip_view/detail/advance_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/advance_impl.hpp",
- "boost/fusion/view/zip_view/detail/at_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/at_impl.hpp",
- "boost/fusion/view/zip_view/detail/begin_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/begin_impl.hpp",
- "boost/fusion/view/zip_view/detail/deref_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/deref_impl.hpp",
- "boost/fusion/view/zip_view/detail/distance_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/distance_impl.hpp",
- "boost/fusion/view/zip_view/detail/end_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/end_impl.hpp",
- "boost/fusion/view/zip_view/detail/equal_to_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/equal_to_impl.hpp",
- "boost/fusion/view/zip_view/detail/next_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/next_impl.hpp",
- "boost/fusion/view/zip_view/detail/prior_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/prior_impl.hpp",
- "boost/fusion/view/zip_view/detail/size_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/size_impl.hpp",
- "boost/fusion/view/zip_view/detail/value_at_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/value_at_impl.hpp",
- "boost/fusion/view/zip_view/detail/value_of_impl.hpp": "vendor/boost/include/boost/fusion/view/zip_view/detail/value_of_impl.hpp",
- "boost/fusion/view/zip_view/zip_view.hpp": "vendor/boost/include/boost/fusion/view/zip_view/zip_view.hpp",
- "boost/fusion/view/zip_view/zip_view_iterator.hpp": "vendor/boost/include/boost/fusion/view/zip_view/zip_view_iterator.hpp",
- "boost/fusion/view/zip_view/zip_view_iterator_fwd.hpp": "vendor/boost/include/boost/fusion/view/zip_view/zip_view_iterator_fwd.hpp",
- "boost/geometry.hpp": "vendor/boost/include/boost/geometry.hpp",
- "boost/geometry/algorithms/append.hpp": "vendor/boost/include/boost/geometry/algorithms/append.hpp",
- "boost/geometry/algorithms/area.hpp": "vendor/boost/include/boost/geometry/algorithms/area.hpp",
- "boost/geometry/algorithms/assign.hpp": "vendor/boost/include/boost/geometry/algorithms/assign.hpp",
- "boost/geometry/algorithms/buffer.hpp": "vendor/boost/include/boost/geometry/algorithms/buffer.hpp",
- "boost/geometry/algorithms/centroid.hpp": "vendor/boost/include/boost/geometry/algorithms/centroid.hpp",
- "boost/geometry/algorithms/clear.hpp": "vendor/boost/include/boost/geometry/algorithms/clear.hpp",
- "boost/geometry/algorithms/comparable_distance.hpp": "vendor/boost/include/boost/geometry/algorithms/comparable_distance.hpp",
- "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/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",
- "boost/geometry/algorithms/detail/buffer/buffered_ring.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/buffered_ring.hpp",
- "boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp",
- "boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp",
- "boost/geometry/algorithms/detail/buffer/parallel_continue.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/parallel_continue.hpp",
- "boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp",
- "boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp",
- "boost/geometry/algorithms/detail/calculate_null.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/calculate_null.hpp",
- "boost/geometry/algorithms/detail/calculate_sum.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/calculate_sum.hpp",
- "boost/geometry/algorithms/detail/centroid/translating_transformer.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/centroid/translating_transformer.hpp",
- "boost/geometry/algorithms/detail/check_iterator_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/check_iterator_range.hpp",
- "boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp",
- "boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp",
- "boost/geometry/algorithms/detail/closest_feature/range_to_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/closest_feature/range_to_range.hpp",
- "boost/geometry/algorithms/detail/comparable_distance/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/comparable_distance/implementation.hpp",
- "boost/geometry/algorithms/detail/comparable_distance/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/comparable_distance/interface.hpp",
- "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/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",
- "boost/geometry/algorithms/detail/disjoint/areal_areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/areal_areal.hpp",
- "boost/geometry/algorithms/detail/disjoint/box_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/box_box.hpp",
- "boost/geometry/algorithms/detail/disjoint/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/implementation.hpp",
- "boost/geometry/algorithms/detail/disjoint/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/interface.hpp",
- "boost/geometry/algorithms/detail/disjoint/linear_areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/linear_areal.hpp",
- "boost/geometry/algorithms/detail/disjoint/linear_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/linear_linear.hpp",
- "boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp",
- "boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp",
- "boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp",
- "boost/geometry/algorithms/detail/disjoint/point_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/point_box.hpp",
- "boost/geometry/algorithms/detail/disjoint/point_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/point_geometry.hpp",
- "boost/geometry/algorithms/detail/disjoint/point_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/point_point.hpp",
- "boost/geometry/algorithms/detail/disjoint/segment_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/disjoint/segment_box.hpp",
- "boost/geometry/algorithms/detail/distance/backward_compatibility.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/backward_compatibility.hpp",
- "boost/geometry/algorithms/detail/distance/box_to_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/box_to_box.hpp",
- "boost/geometry/algorithms/detail/distance/default_strategies.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/default_strategies.hpp",
- "boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp",
- "boost/geometry/algorithms/detail/distance/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/implementation.hpp",
- "boost/geometry/algorithms/detail/distance/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/distance/interface.hpp",
- "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",
- "boost/geometry/algorithms/detail/envelope/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/interface.hpp",
- "boost/geometry/algorithms/detail/envelope/linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/linear.hpp",
- "boost/geometry/algorithms/detail/envelope/multipoint.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/multipoint.hpp",
- "boost/geometry/algorithms/detail/envelope/point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/point.hpp",
- "boost/geometry/algorithms/detail/envelope/range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/range.hpp",
- "boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp",
- "boost/geometry/algorithms/detail/envelope/segment.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/segment.hpp",
- "boost/geometry/algorithms/detail/envelope/transform_units.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/envelope/transform_units.hpp",
- "boost/geometry/algorithms/detail/equals/collect_vectors.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/equals/collect_vectors.hpp",
- "boost/geometry/algorithms/detail/equals/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/equals/implementation.hpp",
- "boost/geometry/algorithms/detail/equals/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/equals/interface.hpp",
- "boost/geometry/algorithms/detail/equals/point_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/equals/point_point.hpp",
- "boost/geometry/algorithms/detail/expand/box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/box.hpp",
- "boost/geometry/algorithms/detail/expand/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/implementation.hpp",
- "boost/geometry/algorithms/detail/expand/indexed.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/indexed.hpp",
- "boost/geometry/algorithms/detail/expand/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/interface.hpp",
- "boost/geometry/algorithms/detail/expand/point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/point.hpp",
- "boost/geometry/algorithms/detail/expand/segment.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand/segment.hpp",
- "boost/geometry/algorithms/detail/expand_by_epsilon.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/expand_by_epsilon.hpp",
- "boost/geometry/algorithms/detail/for_each_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/for_each_range.hpp",
- "boost/geometry/algorithms/detail/get_left_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/get_left_turns.hpp",
- "boost/geometry/algorithms/detail/get_max_size.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/get_max_size.hpp",
- "boost/geometry/algorithms/detail/has_self_intersections.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/has_self_intersections.hpp",
- "boost/geometry/algorithms/detail/interior_iterator.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/interior_iterator.hpp",
- "boost/geometry/algorithms/detail/intersection/box_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersection/box_box.hpp",
- "boost/geometry/algorithms/detail/intersection/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersection/implementation.hpp",
- "boost/geometry/algorithms/detail/intersection/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersection/interface.hpp",
- "boost/geometry/algorithms/detail/intersection/multi.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersection/multi.hpp",
- "boost/geometry/algorithms/detail/intersects/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersects/implementation.hpp",
- "boost/geometry/algorithms/detail/intersects/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/intersects/interface.hpp",
- "boost/geometry/algorithms/detail/is_simple/always_simple.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/always_simple.hpp",
- "boost/geometry/algorithms/detail/is_simple/areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/areal.hpp",
- "boost/geometry/algorithms/detail/is_simple/debug_print_boundary_points.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/debug_print_boundary_points.hpp",
- "boost/geometry/algorithms/detail/is_simple/failure_policy.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/failure_policy.hpp",
- "boost/geometry/algorithms/detail/is_simple/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/implementation.hpp",
- "boost/geometry/algorithms/detail/is_simple/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/interface.hpp",
- "boost/geometry/algorithms/detail/is_simple/linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/linear.hpp",
- "boost/geometry/algorithms/detail/is_simple/multipoint.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_simple/multipoint.hpp",
- "boost/geometry/algorithms/detail/is_valid/box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/box.hpp",
- "boost/geometry/algorithms/detail/is_valid/complement_graph.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/complement_graph.hpp",
- "boost/geometry/algorithms/detail/is_valid/debug_complement_graph.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/debug_complement_graph.hpp",
- "boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp",
- "boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp",
- "boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp",
- "boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp",
- "boost/geometry/algorithms/detail/is_valid/has_spikes.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/has_spikes.hpp",
- "boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp",
- "boost/geometry/algorithms/detail/is_valid/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/implementation.hpp",
- "boost/geometry/algorithms/detail/is_valid/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/interface.hpp",
- "boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp",
- "boost/geometry/algorithms/detail/is_valid/linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/linear.hpp",
- "boost/geometry/algorithms/detail/is_valid/multipolygon.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/multipolygon.hpp",
- "boost/geometry/algorithms/detail/is_valid/pointlike.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/pointlike.hpp",
- "boost/geometry/algorithms/detail/is_valid/polygon.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/polygon.hpp",
- "boost/geometry/algorithms/detail/is_valid/ring.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/ring.hpp",
- "boost/geometry/algorithms/detail/is_valid/segment.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/is_valid/segment.hpp",
- "boost/geometry/algorithms/detail/max_interval_gap.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/max_interval_gap.hpp",
- "boost/geometry/algorithms/detail/multi_modify.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/multi_modify.hpp",
- "boost/geometry/algorithms/detail/multi_sum.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/multi_sum.hpp",
- "boost/geometry/algorithms/detail/normalize.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/normalize.hpp",
- "boost/geometry/algorithms/detail/not.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/not.hpp",
- "boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp",
- "boost/geometry/algorithms/detail/occupation_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/occupation_info.hpp",
- "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/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",
- "boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp",
- "boost/geometry/algorithms/detail/overlay/check_enrich.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/check_enrich.hpp",
- "boost/geometry/algorithms/detail/overlay/clip_linestring.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/clip_linestring.hpp",
- "boost/geometry/algorithms/detail/overlay/cluster_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/cluster_info.hpp",
- "boost/geometry/algorithms/detail/overlay/convert_ring.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/convert_ring.hpp",
- "boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp",
- "boost/geometry/algorithms/detail/overlay/copy_segments.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/copy_segments.hpp",
- "boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp",
- "boost/geometry/algorithms/detail/overlay/do_reverse.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/do_reverse.hpp",
- "boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp",
- "boost/geometry/algorithms/detail/overlay/enrichment_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/enrichment_info.hpp",
- "boost/geometry/algorithms/detail/overlay/follow.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/follow.hpp",
- "boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp",
- "boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp",
- "boost/geometry/algorithms/detail/overlay/get_ring.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_ring.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turn_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turn_info.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp",
- "boost/geometry/algorithms/detail/overlay/get_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/get_turns.hpp",
- "boost/geometry/algorithms/detail/overlay/handle_colocations.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/handle_colocations.hpp",
- "boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp",
- "boost/geometry/algorithms/detail/overlay/inconsistent_turns_exception.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/inconsistent_turns_exception.hpp",
- "boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp",
- "boost/geometry/algorithms/detail/overlay/intersection_insert.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/intersection_insert.hpp",
- "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",
- "boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp",
- "boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp",
- "boost/geometry/algorithms/detail/overlay/ring_properties.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/ring_properties.hpp",
- "boost/geometry/algorithms/detail/overlay/segment_identifier.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/segment_identifier.hpp",
- "boost/geometry/algorithms/detail/overlay/select_rings.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/select_rings.hpp",
- "boost/geometry/algorithms/detail/overlay/self_turn_points.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/self_turn_points.hpp",
- "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_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",
- "boost/geometry/algorithms/detail/overlay/turn_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/turn_info.hpp",
- "boost/geometry/algorithms/detail/overlay/visit_info.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/overlay/visit_info.hpp",
- "boost/geometry/algorithms/detail/partition.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/partition.hpp",
- "boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp",
- "boost/geometry/algorithms/detail/point_on_border.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/point_on_border.hpp",
- "boost/geometry/algorithms/detail/recalculate.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/recalculate.hpp",
- "boost/geometry/algorithms/detail/relate/areal_areal.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/areal_areal.hpp",
- "boost/geometry/algorithms/detail/relate/boundary_checker.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/boundary_checker.hpp",
- "boost/geometry/algorithms/detail/relate/de9im.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/de9im.hpp",
- "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/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",
- "boost/geometry/algorithms/detail/relate/point_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/point_geometry.hpp",
- "boost/geometry/algorithms/detail/relate/point_point.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/point_point.hpp",
- "boost/geometry/algorithms/detail/relate/relate_impl.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/relate_impl.hpp",
- "boost/geometry/algorithms/detail/relate/result.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/result.hpp",
- "boost/geometry/algorithms/detail/relate/topology_check.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/topology_check.hpp",
- "boost/geometry/algorithms/detail/relate/turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relate/turns.hpp",
- "boost/geometry/algorithms/detail/relation/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relation/implementation.hpp",
- "boost/geometry/algorithms/detail/relation/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/relation/interface.hpp",
- "boost/geometry/algorithms/detail/ring_identifier.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/ring_identifier.hpp",
- "boost/geometry/algorithms/detail/sections/range_by_section.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sections/range_by_section.hpp",
- "boost/geometry/algorithms/detail/sections/section_box_policies.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sections/section_box_policies.hpp",
- "boost/geometry/algorithms/detail/sections/section_functions.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sections/section_functions.hpp",
- "boost/geometry/algorithms/detail/sections/sectionalize.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sections/sectionalize.hpp",
- "boost/geometry/algorithms/detail/signed_size_type.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/signed_size_type.hpp",
- "boost/geometry/algorithms/detail/single_geometry.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/single_geometry.hpp",
- "boost/geometry/algorithms/detail/sub_range.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sub_range.hpp",
- "boost/geometry/algorithms/detail/sweep.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/sweep.hpp",
- "boost/geometry/algorithms/detail/throw_on_empty_input.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/throw_on_empty_input.hpp",
- "boost/geometry/algorithms/detail/touches/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/touches/implementation.hpp",
- "boost/geometry/algorithms/detail/touches/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/touches/interface.hpp",
- "boost/geometry/algorithms/detail/turns/compare_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/turns/compare_turns.hpp",
- "boost/geometry/algorithms/detail/turns/debug_turn.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/turns/debug_turn.hpp",
- "boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp",
- "boost/geometry/algorithms/detail/turns/remove_duplicate_turns.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/turns/remove_duplicate_turns.hpp",
- "boost/geometry/algorithms/detail/within/implementation.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/within/implementation.hpp",
- "boost/geometry/algorithms/detail/within/interface.hpp": "vendor/boost/include/boost/geometry/algorithms/detail/within/interface.hpp",
- "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",
- "boost/geometry/algorithms/dispatch/envelope.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/envelope.hpp",
- "boost/geometry/algorithms/dispatch/expand.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/expand.hpp",
- "boost/geometry/algorithms/dispatch/is_simple.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/is_simple.hpp",
- "boost/geometry/algorithms/dispatch/is_valid.hpp": "vendor/boost/include/boost/geometry/algorithms/dispatch/is_valid.hpp",
- "boost/geometry/algorithms/distance.hpp": "vendor/boost/include/boost/geometry/algorithms/distance.hpp",
- "boost/geometry/algorithms/envelope.hpp": "vendor/boost/include/boost/geometry/algorithms/envelope.hpp",
- "boost/geometry/algorithms/equals.hpp": "vendor/boost/include/boost/geometry/algorithms/equals.hpp",
- "boost/geometry/algorithms/expand.hpp": "vendor/boost/include/boost/geometry/algorithms/expand.hpp",
- "boost/geometry/algorithms/for_each.hpp": "vendor/boost/include/boost/geometry/algorithms/for_each.hpp",
- "boost/geometry/algorithms/intersection.hpp": "vendor/boost/include/boost/geometry/algorithms/intersection.hpp",
- "boost/geometry/algorithms/intersects.hpp": "vendor/boost/include/boost/geometry/algorithms/intersects.hpp",
- "boost/geometry/algorithms/is_convex.hpp": "vendor/boost/include/boost/geometry/algorithms/is_convex.hpp",
- "boost/geometry/algorithms/is_empty.hpp": "vendor/boost/include/boost/geometry/algorithms/is_empty.hpp",
- "boost/geometry/algorithms/is_simple.hpp": "vendor/boost/include/boost/geometry/algorithms/is_simple.hpp",
- "boost/geometry/algorithms/is_valid.hpp": "vendor/boost/include/boost/geometry/algorithms/is_valid.hpp",
- "boost/geometry/algorithms/length.hpp": "vendor/boost/include/boost/geometry/algorithms/length.hpp",
- "boost/geometry/algorithms/make.hpp": "vendor/boost/include/boost/geometry/algorithms/make.hpp",
- "boost/geometry/algorithms/not_implemented.hpp": "vendor/boost/include/boost/geometry/algorithms/not_implemented.hpp",
- "boost/geometry/algorithms/num_geometries.hpp": "vendor/boost/include/boost/geometry/algorithms/num_geometries.hpp",
- "boost/geometry/algorithms/num_interior_rings.hpp": "vendor/boost/include/boost/geometry/algorithms/num_interior_rings.hpp",
- "boost/geometry/algorithms/num_points.hpp": "vendor/boost/include/boost/geometry/algorithms/num_points.hpp",
- "boost/geometry/algorithms/num_segments.hpp": "vendor/boost/include/boost/geometry/algorithms/num_segments.hpp",
- "boost/geometry/algorithms/overlaps.hpp": "vendor/boost/include/boost/geometry/algorithms/overlaps.hpp",
- "boost/geometry/algorithms/perimeter.hpp": "vendor/boost/include/boost/geometry/algorithms/perimeter.hpp",
- "boost/geometry/algorithms/relate.hpp": "vendor/boost/include/boost/geometry/algorithms/relate.hpp",
- "boost/geometry/algorithms/relation.hpp": "vendor/boost/include/boost/geometry/algorithms/relation.hpp",
- "boost/geometry/algorithms/remove_spikes.hpp": "vendor/boost/include/boost/geometry/algorithms/remove_spikes.hpp",
- "boost/geometry/algorithms/reverse.hpp": "vendor/boost/include/boost/geometry/algorithms/reverse.hpp",
- "boost/geometry/algorithms/simplify.hpp": "vendor/boost/include/boost/geometry/algorithms/simplify.hpp",
- "boost/geometry/algorithms/sym_difference.hpp": "vendor/boost/include/boost/geometry/algorithms/sym_difference.hpp",
- "boost/geometry/algorithms/touches.hpp": "vendor/boost/include/boost/geometry/algorithms/touches.hpp",
- "boost/geometry/algorithms/transform.hpp": "vendor/boost/include/boost/geometry/algorithms/transform.hpp",
- "boost/geometry/algorithms/union.hpp": "vendor/boost/include/boost/geometry/algorithms/union.hpp",
- "boost/geometry/algorithms/unique.hpp": "vendor/boost/include/boost/geometry/algorithms/unique.hpp",
- "boost/geometry/algorithms/validity_failure_type.hpp": "vendor/boost/include/boost/geometry/algorithms/validity_failure_type.hpp",
- "boost/geometry/algorithms/within.hpp": "vendor/boost/include/boost/geometry/algorithms/within.hpp",
- "boost/geometry/arithmetic/arithmetic.hpp": "vendor/boost/include/boost/geometry/arithmetic/arithmetic.hpp",
- "boost/geometry/arithmetic/cross_product.hpp": "vendor/boost/include/boost/geometry/arithmetic/cross_product.hpp",
- "boost/geometry/arithmetic/determinant.hpp": "vendor/boost/include/boost/geometry/arithmetic/determinant.hpp",
- "boost/geometry/arithmetic/dot_product.hpp": "vendor/boost/include/boost/geometry/arithmetic/dot_product.hpp",
- "boost/geometry/arithmetic/normalize.hpp": "vendor/boost/include/boost/geometry/arithmetic/normalize.hpp",
- "boost/geometry/core/access.hpp": "vendor/boost/include/boost/geometry/core/access.hpp",
- "boost/geometry/core/assert.hpp": "vendor/boost/include/boost/geometry/core/assert.hpp",
- "boost/geometry/core/closure.hpp": "vendor/boost/include/boost/geometry/core/closure.hpp",
- "boost/geometry/core/coordinate_dimension.hpp": "vendor/boost/include/boost/geometry/core/coordinate_dimension.hpp",
- "boost/geometry/core/coordinate_system.hpp": "vendor/boost/include/boost/geometry/core/coordinate_system.hpp",
- "boost/geometry/core/coordinate_type.hpp": "vendor/boost/include/boost/geometry/core/coordinate_type.hpp",
- "boost/geometry/core/cs.hpp": "vendor/boost/include/boost/geometry/core/cs.hpp",
- "boost/geometry/core/exception.hpp": "vendor/boost/include/boost/geometry/core/exception.hpp",
- "boost/geometry/core/exterior_ring.hpp": "vendor/boost/include/boost/geometry/core/exterior_ring.hpp",
- "boost/geometry/core/geometry_id.hpp": "vendor/boost/include/boost/geometry/core/geometry_id.hpp",
- "boost/geometry/core/interior_rings.hpp": "vendor/boost/include/boost/geometry/core/interior_rings.hpp",
- "boost/geometry/core/interior_type.hpp": "vendor/boost/include/boost/geometry/core/interior_type.hpp",
- "boost/geometry/core/is_areal.hpp": "vendor/boost/include/boost/geometry/core/is_areal.hpp",
- "boost/geometry/core/mutable_range.hpp": "vendor/boost/include/boost/geometry/core/mutable_range.hpp",
- "boost/geometry/core/point_order.hpp": "vendor/boost/include/boost/geometry/core/point_order.hpp",
- "boost/geometry/core/point_type.hpp": "vendor/boost/include/boost/geometry/core/point_type.hpp",
- "boost/geometry/core/radian_access.hpp": "vendor/boost/include/boost/geometry/core/radian_access.hpp",
- "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/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",
- "boost/geometry/geometries/concepts/check.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/check.hpp",
- "boost/geometry/geometries/concepts/linestring_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/linestring_concept.hpp",
- "boost/geometry/geometries/concepts/multi_linestring_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/multi_linestring_concept.hpp",
- "boost/geometry/geometries/concepts/multi_point_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/multi_point_concept.hpp",
- "boost/geometry/geometries/concepts/multi_polygon_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/multi_polygon_concept.hpp",
- "boost/geometry/geometries/concepts/point_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/point_concept.hpp",
- "boost/geometry/geometries/concepts/polygon_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/polygon_concept.hpp",
- "boost/geometry/geometries/concepts/ring_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/ring_concept.hpp",
- "boost/geometry/geometries/concepts/segment_concept.hpp": "vendor/boost/include/boost/geometry/geometries/concepts/segment_concept.hpp",
- "boost/geometry/geometries/geometries.hpp": "vendor/boost/include/boost/geometry/geometries/geometries.hpp",
- "boost/geometry/geometries/helper_geometry.hpp": "vendor/boost/include/boost/geometry/geometries/helper_geometry.hpp",
- "boost/geometry/geometries/linestring.hpp": "vendor/boost/include/boost/geometry/geometries/linestring.hpp",
- "boost/geometry/geometries/multi_linestring.hpp": "vendor/boost/include/boost/geometry/geometries/multi_linestring.hpp",
- "boost/geometry/geometries/multi_point.hpp": "vendor/boost/include/boost/geometry/geometries/multi_point.hpp",
- "boost/geometry/geometries/multi_polygon.hpp": "vendor/boost/include/boost/geometry/geometries/multi_polygon.hpp",
- "boost/geometry/geometries/point.hpp": "vendor/boost/include/boost/geometry/geometries/point.hpp",
- "boost/geometry/geometries/point_xy.hpp": "vendor/boost/include/boost/geometry/geometries/point_xy.hpp",
- "boost/geometry/geometries/pointing_segment.hpp": "vendor/boost/include/boost/geometry/geometries/pointing_segment.hpp",
- "boost/geometry/geometries/polygon.hpp": "vendor/boost/include/boost/geometry/geometries/polygon.hpp",
- "boost/geometry/geometries/register/box.hpp": "vendor/boost/include/boost/geometry/geometries/register/box.hpp",
- "boost/geometry/geometries/register/point.hpp": "vendor/boost/include/boost/geometry/geometries/register/point.hpp",
- "boost/geometry/geometries/ring.hpp": "vendor/boost/include/boost/geometry/geometries/ring.hpp",
- "boost/geometry/geometries/segment.hpp": "vendor/boost/include/boost/geometry/geometries/segment.hpp",
- "boost/geometry/geometries/variant.hpp": "vendor/boost/include/boost/geometry/geometries/variant.hpp",
- "boost/geometry/geometry.hpp": "vendor/boost/include/boost/geometry/geometry.hpp",
- "boost/geometry/index/adaptors/query.hpp": "vendor/boost/include/boost/geometry/index/adaptors/query.hpp",
- "boost/geometry/index/detail/algorithms/bounds.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/bounds.hpp",
- "boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp",
- "boost/geometry/index/detail/algorithms/comparable_distance_far.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/comparable_distance_far.hpp",
- "boost/geometry/index/detail/algorithms/comparable_distance_near.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/comparable_distance_near.hpp",
- "boost/geometry/index/detail/algorithms/content.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/content.hpp",
- "boost/geometry/index/detail/algorithms/diff_abs.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/diff_abs.hpp",
- "boost/geometry/index/detail/algorithms/intersection_content.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/intersection_content.hpp",
- "boost/geometry/index/detail/algorithms/is_valid.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/is_valid.hpp",
- "boost/geometry/index/detail/algorithms/margin.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/margin.hpp",
- "boost/geometry/index/detail/algorithms/nth_element.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/nth_element.hpp",
- "boost/geometry/index/detail/algorithms/path_intersection.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/path_intersection.hpp",
- "boost/geometry/index/detail/algorithms/segment_intersection.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/segment_intersection.hpp",
- "boost/geometry/index/detail/algorithms/sum_for_indexable.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/sum_for_indexable.hpp",
- "boost/geometry/index/detail/algorithms/union_content.hpp": "vendor/boost/include/boost/geometry/index/detail/algorithms/union_content.hpp",
- "boost/geometry/index/detail/assert.hpp": "vendor/boost/include/boost/geometry/index/detail/assert.hpp",
- "boost/geometry/index/detail/bounded_view.hpp": "vendor/boost/include/boost/geometry/index/detail/bounded_view.hpp",
- "boost/geometry/index/detail/config_begin.hpp": "vendor/boost/include/boost/geometry/index/detail/config_begin.hpp",
- "boost/geometry/index/detail/config_end.hpp": "vendor/boost/include/boost/geometry/index/detail/config_end.hpp",
- "boost/geometry/index/detail/distance_predicates.hpp": "vendor/boost/include/boost/geometry/index/detail/distance_predicates.hpp",
- "boost/geometry/index/detail/exception.hpp": "vendor/boost/include/boost/geometry/index/detail/exception.hpp",
- "boost/geometry/index/detail/is_bounding_geometry.hpp": "vendor/boost/include/boost/geometry/index/detail/is_bounding_geometry.hpp",
- "boost/geometry/index/detail/is_indexable.hpp": "vendor/boost/include/boost/geometry/index/detail/is_indexable.hpp",
- "boost/geometry/index/detail/meta.hpp": "vendor/boost/include/boost/geometry/index/detail/meta.hpp",
- "boost/geometry/index/detail/predicates.hpp": "vendor/boost/include/boost/geometry/index/detail/predicates.hpp",
- "boost/geometry/index/detail/rtree/adaptors.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/adaptors.hpp",
- "boost/geometry/index/detail/rtree/iterators.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/iterators.hpp",
- "boost/geometry/index/detail/rtree/linear/linear.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/linear/linear.hpp",
- "boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp",
- "boost/geometry/index/detail/rtree/node/concept.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/concept.hpp",
- "boost/geometry/index/detail/rtree/node/node.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/node.hpp",
- "boost/geometry/index/detail/rtree/node/node_elements.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/node_elements.hpp",
- "boost/geometry/index/detail/rtree/node/pairs.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/pairs.hpp",
- "boost/geometry/index/detail/rtree/node/scoped_deallocator.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/scoped_deallocator.hpp",
- "boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp",
- "boost/geometry/index/detail/rtree/node/variant_dynamic.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/variant_dynamic.hpp",
- "boost/geometry/index/detail/rtree/node/variant_static.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/variant_static.hpp",
- "boost/geometry/index/detail/rtree/node/variant_visitor.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/node/variant_visitor.hpp",
- "boost/geometry/index/detail/rtree/options.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/options.hpp",
- "boost/geometry/index/detail/rtree/pack_create.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/pack_create.hpp",
- "boost/geometry/index/detail/rtree/quadratic/quadratic.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/quadratic/quadratic.hpp",
- "boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp",
- "boost/geometry/index/detail/rtree/query_iterators.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/query_iterators.hpp",
- "boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp",
- "boost/geometry/index/detail/rtree/rstar/insert.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/rstar/insert.hpp",
- "boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp",
- "boost/geometry/index/detail/rtree/rstar/rstar.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/rstar/rstar.hpp",
- "boost/geometry/index/detail/rtree/utilities/view.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/utilities/view.hpp",
- "boost/geometry/index/detail/rtree/visitors/children_box.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/children_box.hpp",
- "boost/geometry/index/detail/rtree/visitors/copy.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/copy.hpp",
- "boost/geometry/index/detail/rtree/visitors/count.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/count.hpp",
- "boost/geometry/index/detail/rtree/visitors/destroy.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/destroy.hpp",
- "boost/geometry/index/detail/rtree/visitors/distance_query.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/distance_query.hpp",
- "boost/geometry/index/detail/rtree/visitors/insert.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/insert.hpp",
- "boost/geometry/index/detail/rtree/visitors/is_leaf.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/is_leaf.hpp",
- "boost/geometry/index/detail/rtree/visitors/iterator.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/iterator.hpp",
- "boost/geometry/index/detail/rtree/visitors/remove.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/remove.hpp",
- "boost/geometry/index/detail/rtree/visitors/spatial_query.hpp": "vendor/boost/include/boost/geometry/index/detail/rtree/visitors/spatial_query.hpp",
- "boost/geometry/index/detail/serialization.hpp": "vendor/boost/include/boost/geometry/index/detail/serialization.hpp",
- "boost/geometry/index/detail/tags.hpp": "vendor/boost/include/boost/geometry/index/detail/tags.hpp",
- "boost/geometry/index/detail/translator.hpp": "vendor/boost/include/boost/geometry/index/detail/translator.hpp",
- "boost/geometry/index/detail/tuples.hpp": "vendor/boost/include/boost/geometry/index/detail/tuples.hpp",
- "boost/geometry/index/detail/utilities.hpp": "vendor/boost/include/boost/geometry/index/detail/utilities.hpp",
- "boost/geometry/index/detail/varray.hpp": "vendor/boost/include/boost/geometry/index/detail/varray.hpp",
- "boost/geometry/index/detail/varray_detail.hpp": "vendor/boost/include/boost/geometry/index/detail/varray_detail.hpp",
- "boost/geometry/index/distance_predicates.hpp": "vendor/boost/include/boost/geometry/index/distance_predicates.hpp",
- "boost/geometry/index/equal_to.hpp": "vendor/boost/include/boost/geometry/index/equal_to.hpp",
- "boost/geometry/index/indexable.hpp": "vendor/boost/include/boost/geometry/index/indexable.hpp",
- "boost/geometry/index/inserter.hpp": "vendor/boost/include/boost/geometry/index/inserter.hpp",
- "boost/geometry/index/parameters.hpp": "vendor/boost/include/boost/geometry/index/parameters.hpp",
- "boost/geometry/index/predicates.hpp": "vendor/boost/include/boost/geometry/index/predicates.hpp",
- "boost/geometry/index/rtree.hpp": "vendor/boost/include/boost/geometry/index/rtree.hpp",
- "boost/geometry/io/dsv/write.hpp": "vendor/boost/include/boost/geometry/io/dsv/write.hpp",
- "boost/geometry/io/io.hpp": "vendor/boost/include/boost/geometry/io/io.hpp",
- "boost/geometry/io/svg/svg_mapper.hpp": "vendor/boost/include/boost/geometry/io/svg/svg_mapper.hpp",
- "boost/geometry/io/svg/write.hpp": "vendor/boost/include/boost/geometry/io/svg/write.hpp",
- "boost/geometry/io/wkt/detail/prefix.hpp": "vendor/boost/include/boost/geometry/io/wkt/detail/prefix.hpp",
- "boost/geometry/io/wkt/read.hpp": "vendor/boost/include/boost/geometry/io/wkt/read.hpp",
- "boost/geometry/io/wkt/wkt.hpp": "vendor/boost/include/boost/geometry/io/wkt/wkt.hpp",
- "boost/geometry/io/wkt/write.hpp": "vendor/boost/include/boost/geometry/io/wkt/write.hpp",
- "boost/geometry/iterators/base.hpp": "vendor/boost/include/boost/geometry/iterators/base.hpp",
- "boost/geometry/iterators/closing_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/closing_iterator.hpp",
- "boost/geometry/iterators/concatenate_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/concatenate_iterator.hpp",
- "boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp": "vendor/boost/include/boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp",
- "boost/geometry/iterators/detail/point_iterator/iterator_type.hpp": "vendor/boost/include/boost/geometry/iterators/detail/point_iterator/iterator_type.hpp",
- "boost/geometry/iterators/detail/point_iterator/value_type.hpp": "vendor/boost/include/boost/geometry/iterators/detail/point_iterator/value_type.hpp",
- "boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp": "vendor/boost/include/boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp",
- "boost/geometry/iterators/detail/segment_iterator/range_segment_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/detail/segment_iterator/range_segment_iterator.hpp",
- "boost/geometry/iterators/detail/segment_iterator/value_type.hpp": "vendor/boost/include/boost/geometry/iterators/detail/segment_iterator/value_type.hpp",
- "boost/geometry/iterators/dispatch/point_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/dispatch/point_iterator.hpp",
- "boost/geometry/iterators/dispatch/segment_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/dispatch/segment_iterator.hpp",
- "boost/geometry/iterators/ever_circling_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/ever_circling_iterator.hpp",
- "boost/geometry/iterators/flatten_iterator.hpp": "vendor/boost/include/boost/geometry/iterators/flatten_iterator.hpp",
- "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/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",
- "boost/geometry/policies/is_valid/failing_reason_policy.hpp": "vendor/boost/include/boost/geometry/policies/is_valid/failing_reason_policy.hpp",
- "boost/geometry/policies/is_valid/failure_type_policy.hpp": "vendor/boost/include/boost/geometry/policies/is_valid/failure_type_policy.hpp",
- "boost/geometry/policies/predicate_based_interrupt_policy.hpp": "vendor/boost/include/boost/geometry/policies/predicate_based_interrupt_policy.hpp",
- "boost/geometry/policies/relate/direction.hpp": "vendor/boost/include/boost/geometry/policies/relate/direction.hpp",
- "boost/geometry/policies/relate/intersection_points.hpp": "vendor/boost/include/boost/geometry/policies/relate/intersection_points.hpp",
- "boost/geometry/policies/relate/tupled.hpp": "vendor/boost/include/boost/geometry/policies/relate/tupled.hpp",
- "boost/geometry/policies/robustness/get_rescale_policy.hpp": "vendor/boost/include/boost/geometry/policies/robustness/get_rescale_policy.hpp",
- "boost/geometry/policies/robustness/no_rescale_policy.hpp": "vendor/boost/include/boost/geometry/policies/robustness/no_rescale_policy.hpp",
- "boost/geometry/policies/robustness/rescale_policy.hpp": "vendor/boost/include/boost/geometry/policies/robustness/rescale_policy.hpp",
- "boost/geometry/policies/robustness/robust_point_type.hpp": "vendor/boost/include/boost/geometry/policies/robustness/robust_point_type.hpp",
- "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",
- "boost/geometry/strategies/agnostic/point_in_box_by_side.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/point_in_box_by_side.hpp",
- "boost/geometry/strategies/agnostic/point_in_point.hpp": "vendor/boost/include/boost/geometry/strategies/agnostic/point_in_point.hpp",
- "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.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",
- "boost/geometry/strategies/cartesian/buffer_end_round.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_end_round.hpp",
- "boost/geometry/strategies/cartesian/buffer_join_miter.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_join_miter.hpp",
- "boost/geometry/strategies/cartesian/buffer_join_round.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_join_round.hpp",
- "boost/geometry/strategies/cartesian/buffer_join_round_by_divide.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_join_round_by_divide.hpp",
- "boost/geometry/strategies/cartesian/buffer_point_circle.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_point_circle.hpp",
- "boost/geometry/strategies/cartesian/buffer_point_square.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_point_square.hpp",
- "boost/geometry/strategies/cartesian/buffer_side_straight.hpp": "vendor/boost/include/boost/geometry/strategies/cartesian/buffer_side_straight.hpp",
- "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",
- "boost/geometry/strategies/comparable_distance_result.hpp": "vendor/boost/include/boost/geometry/strategies/comparable_distance_result.hpp",
- "boost/geometry/strategies/compare.hpp": "vendor/boost/include/boost/geometry/strategies/compare.hpp",
- "boost/geometry/strategies/concepts/area_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/area_concept.hpp",
- "boost/geometry/strategies/concepts/centroid_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/centroid_concept.hpp",
- "boost/geometry/strategies/concepts/convex_hull_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/convex_hull_concept.hpp",
- "boost/geometry/strategies/concepts/distance_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/distance_concept.hpp",
- "boost/geometry/strategies/concepts/simplify_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/simplify_concept.hpp",
- "boost/geometry/strategies/concepts/within_concept.hpp": "vendor/boost/include/boost/geometry/strategies/concepts/within_concept.hpp",
- "boost/geometry/strategies/convex_hull.hpp": "vendor/boost/include/boost/geometry/strategies/convex_hull.hpp",
- "boost/geometry/strategies/covered_by.hpp": "vendor/boost/include/boost/geometry/strategies/covered_by.hpp",
- "boost/geometry/strategies/default_area_result.hpp": "vendor/boost/include/boost/geometry/strategies/default_area_result.hpp",
- "boost/geometry/strategies/default_comparable_distance_result.hpp": "vendor/boost/include/boost/geometry/strategies/default_comparable_distance_result.hpp",
- "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",
- "boost/geometry/strategies/geographic/side_vincenty.hpp": "vendor/boost/include/boost/geometry/strategies/geographic/side_vincenty.hpp",
- "boost/geometry/strategies/intersection.hpp": "vendor/boost/include/boost/geometry/strategies/intersection.hpp",
- "boost/geometry/strategies/intersection_result.hpp": "vendor/boost/include/boost/geometry/strategies/intersection_result.hpp",
- "boost/geometry/strategies/intersection_strategies.hpp": "vendor/boost/include/boost/geometry/strategies/intersection_strategies.hpp",
- "boost/geometry/strategies/relate.hpp": "vendor/boost/include/boost/geometry/strategies/relate.hpp",
- "boost/geometry/strategies/side.hpp": "vendor/boost/include/boost/geometry/strategies/side.hpp",
- "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.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",
- "boost/geometry/strategies/tags.hpp": "vendor/boost/include/boost/geometry/strategies/tags.hpp",
- "boost/geometry/strategies/transform.hpp": "vendor/boost/include/boost/geometry/strategies/transform.hpp",
- "boost/geometry/strategies/transform/inverse_transformer.hpp": "vendor/boost/include/boost/geometry/strategies/transform/inverse_transformer.hpp",
- "boost/geometry/strategies/transform/map_transformer.hpp": "vendor/boost/include/boost/geometry/strategies/transform/map_transformer.hpp",
- "boost/geometry/strategies/transform/matrix_transformers.hpp": "vendor/boost/include/boost/geometry/strategies/transform/matrix_transformers.hpp",
- "boost/geometry/strategies/within.hpp": "vendor/boost/include/boost/geometry/strategies/within.hpp",
- "boost/geometry/util/add_const_if_c.hpp": "vendor/boost/include/boost/geometry/util/add_const_if_c.hpp",
- "boost/geometry/util/bare_type.hpp": "vendor/boost/include/boost/geometry/util/bare_type.hpp",
- "boost/geometry/util/calculation_type.hpp": "vendor/boost/include/boost/geometry/util/calculation_type.hpp",
- "boost/geometry/util/combine_if.hpp": "vendor/boost/include/boost/geometry/util/combine_if.hpp",
- "boost/geometry/util/compress_variant.hpp": "vendor/boost/include/boost/geometry/util/compress_variant.hpp",
- "boost/geometry/util/condition.hpp": "vendor/boost/include/boost/geometry/util/condition.hpp",
- "boost/geometry/util/coordinate_cast.hpp": "vendor/boost/include/boost/geometry/util/coordinate_cast.hpp",
- "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",
- "boost/geometry/util/order_as_direction.hpp": "vendor/boost/include/boost/geometry/util/order_as_direction.hpp",
- "boost/geometry/util/parameter_type_of.hpp": "vendor/boost/include/boost/geometry/util/parameter_type_of.hpp",
- "boost/geometry/util/promote_floating_point.hpp": "vendor/boost/include/boost/geometry/util/promote_floating_point.hpp",
- "boost/geometry/util/promote_integral.hpp": "vendor/boost/include/boost/geometry/util/promote_integral.hpp",
- "boost/geometry/util/range.hpp": "vendor/boost/include/boost/geometry/util/range.hpp",
- "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",
- "boost/geometry/views/detail/boundary_view.hpp": "vendor/boost/include/boost/geometry/views/detail/boundary_view.hpp",
- "boost/geometry/views/detail/boundary_view/implementation.hpp": "vendor/boost/include/boost/geometry/views/detail/boundary_view/implementation.hpp",
- "boost/geometry/views/detail/boundary_view/interface.hpp": "vendor/boost/include/boost/geometry/views/detail/boundary_view/interface.hpp",
- "boost/geometry/views/detail/indexed_point_view.hpp": "vendor/boost/include/boost/geometry/views/detail/indexed_point_view.hpp",
- "boost/geometry/views/detail/normalized_view.hpp": "vendor/boost/include/boost/geometry/views/detail/normalized_view.hpp",
- "boost/geometry/views/detail/points_view.hpp": "vendor/boost/include/boost/geometry/views/detail/points_view.hpp",
- "boost/geometry/views/detail/range_type.hpp": "vendor/boost/include/boost/geometry/views/detail/range_type.hpp",
- "boost/geometry/views/detail/two_dimensional_view.hpp": "vendor/boost/include/boost/geometry/views/detail/two_dimensional_view.hpp",
- "boost/geometry/views/identity_view.hpp": "vendor/boost/include/boost/geometry/views/identity_view.hpp",
- "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/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",
- "boost/integer/static_log2.hpp": "vendor/boost/include/boost/integer/static_log2.hpp",
- "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/detail/algorithm.hpp": "vendor/boost/include/boost/intrusive/detail/algorithm.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/has_member_function_callable_with.hpp": "vendor/boost/include/boost/intrusive/detail/has_member_function_callable_with.hpp",
- "boost/intrusive/detail/iterator.hpp": "vendor/boost/include/boost/intrusive/detail/iterator.hpp",
- "boost/intrusive/detail/mpl.hpp": "vendor/boost/include/boost/intrusive/detail/mpl.hpp",
- "boost/intrusive/detail/reverse_iterator.hpp": "vendor/boost/include/boost/intrusive/detail/reverse_iterator.hpp",
- "boost/intrusive/detail/std_fwd.hpp": "vendor/boost/include/boost/intrusive/detail/std_fwd.hpp",
- "boost/intrusive/detail/workaround.hpp": "vendor/boost/include/boost/intrusive/detail/workaround.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/iostreams/categories.hpp": "vendor/boost/include/boost/iostreams/categories.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/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",
- "boost/iostreams/detail/adapter/output_iterator_adapter.hpp": "vendor/boost/include/boost/iostreams/detail/adapter/output_iterator_adapter.hpp",
- "boost/iostreams/detail/adapter/range_adapter.hpp": "vendor/boost/include/boost/iostreams/detail/adapter/range_adapter.hpp",
- "boost/iostreams/detail/bool_trait_def.hpp": "vendor/boost/include/boost/iostreams/detail/bool_trait_def.hpp",
- "boost/iostreams/detail/broken_overload_resolution/forward.hpp": "vendor/boost/include/boost/iostreams/detail/broken_overload_resolution/forward.hpp",
- "boost/iostreams/detail/broken_overload_resolution/stream.hpp": "vendor/boost/include/boost/iostreams/detail/broken_overload_resolution/stream.hpp",
- "boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp": "vendor/boost/include/boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp",
- "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/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/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",
- "boost/iostreams/detail/config/limits.hpp": "vendor/boost/include/boost/iostreams/detail/config/limits.hpp",
- "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/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",
- "boost/iostreams/detail/enable_if_stream.hpp": "vendor/boost/include/boost/iostreams/detail/enable_if_stream.hpp",
- "boost/iostreams/detail/error.hpp": "vendor/boost/include/boost/iostreams/detail/error.hpp",
- "boost/iostreams/detail/execute.hpp": "vendor/boost/include/boost/iostreams/detail/execute.hpp",
- "boost/iostreams/detail/forward.hpp": "vendor/boost/include/boost/iostreams/detail/forward.hpp",
- "boost/iostreams/detail/functional.hpp": "vendor/boost/include/boost/iostreams/detail/functional.hpp",
- "boost/iostreams/detail/ios.hpp": "vendor/boost/include/boost/iostreams/detail/ios.hpp",
- "boost/iostreams/detail/iostream.hpp": "vendor/boost/include/boost/iostreams/detail/iostream.hpp",
- "boost/iostreams/detail/is_dereferenceable.hpp": "vendor/boost/include/boost/iostreams/detail/is_dereferenceable.hpp",
- "boost/iostreams/detail/is_iterator_range.hpp": "vendor/boost/include/boost/iostreams/detail/is_iterator_range.hpp",
- "boost/iostreams/detail/optional.hpp": "vendor/boost/include/boost/iostreams/detail/optional.hpp",
- "boost/iostreams/detail/push.hpp": "vendor/boost/include/boost/iostreams/detail/push.hpp",
- "boost/iostreams/detail/push_params.hpp": "vendor/boost/include/boost/iostreams/detail/push_params.hpp",
- "boost/iostreams/detail/resolve.hpp": "vendor/boost/include/boost/iostreams/detail/resolve.hpp",
- "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/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/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/null.hpp": "vendor/boost/include/boost/iostreams/device/null.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",
- "boost/iostreams/input_sequence.hpp": "vendor/boost/include/boost/iostreams/input_sequence.hpp",
- "boost/iostreams/operations.hpp": "vendor/boost/include/boost/iostreams/operations.hpp",
- "boost/iostreams/operations_fwd.hpp": "vendor/boost/include/boost/iostreams/operations_fwd.hpp",
- "boost/iostreams/optimal_buffer_size.hpp": "vendor/boost/include/boost/iostreams/optimal_buffer_size.hpp",
- "boost/iostreams/output_sequence.hpp": "vendor/boost/include/boost/iostreams/output_sequence.hpp",
- "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/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",
- "boost/iostreams/stream_buffer.hpp": "vendor/boost/include/boost/iostreams/stream_buffer.hpp",
- "boost/iostreams/traits.hpp": "vendor/boost/include/boost/iostreams/traits.hpp",
- "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/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",
- "boost/iterator/iterator_concepts.hpp": "vendor/boost/include/boost/iterator/iterator_concepts.hpp",
- "boost/iterator/iterator_facade.hpp": "vendor/boost/include/boost/iterator/iterator_facade.hpp",
- "boost/iterator/iterator_traits.hpp": "vendor/boost/include/boost/iterator/iterator_traits.hpp",
- "boost/iterator/minimum_category.hpp": "vendor/boost/include/boost/iterator/minimum_category.hpp",
- "boost/iterator/reverse_iterator.hpp": "vendor/boost/include/boost/iterator/reverse_iterator.hpp",
- "boost/iterator/transform_iterator.hpp": "vendor/boost/include/boost/iterator/transform_iterator.hpp",
- "boost/lexical_cast.hpp": "vendor/boost/include/boost/lexical_cast.hpp",
- "boost/lexical_cast/bad_lexical_cast.hpp": "vendor/boost/include/boost/lexical_cast/bad_lexical_cast.hpp",
- "boost/lexical_cast/detail/converter_lexical.hpp": "vendor/boost/include/boost/lexical_cast/detail/converter_lexical.hpp",
- "boost/lexical_cast/detail/converter_lexical_streams.hpp": "vendor/boost/include/boost/lexical_cast/detail/converter_lexical_streams.hpp",
- "boost/lexical_cast/detail/converter_numeric.hpp": "vendor/boost/include/boost/lexical_cast/detail/converter_numeric.hpp",
- "boost/lexical_cast/detail/inf_nan.hpp": "vendor/boost/include/boost/lexical_cast/detail/inf_nan.hpp",
- "boost/lexical_cast/detail/is_character.hpp": "vendor/boost/include/boost/lexical_cast/detail/is_character.hpp",
- "boost/lexical_cast/detail/lcast_char_constants.hpp": "vendor/boost/include/boost/lexical_cast/detail/lcast_char_constants.hpp",
- "boost/lexical_cast/detail/lcast_unsigned_converters.hpp": "vendor/boost/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp",
- "boost/lexical_cast/detail/widest_char.hpp": "vendor/boost/include/boost/lexical_cast/detail/widest_char.hpp",
- "boost/lexical_cast/try_lexical_convert.hpp": "vendor/boost/include/boost/lexical_cast/try_lexical_convert.hpp",
- "boost/limits.hpp": "vendor/boost/include/boost/limits.hpp",
- "boost/locale/definitions.hpp": "vendor/boost/include/boost/locale/definitions.hpp",
- "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/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",
- "boost/math/constants/constants.hpp": "vendor/boost/include/boost/math/constants/constants.hpp",
- "boost/math/policies/error_handling.hpp": "vendor/boost/include/boost/math/policies/error_handling.hpp",
- "boost/math/policies/policy.hpp": "vendor/boost/include/boost/math/policies/policy.hpp",
- "boost/math/special_functions/atanh.hpp": "vendor/boost/include/boost/math/special_functions/atanh.hpp",
- "boost/math/special_functions/detail/fp_traits.hpp": "vendor/boost/include/boost/math/special_functions/detail/fp_traits.hpp",
- "boost/math/special_functions/detail/round_fwd.hpp": "vendor/boost/include/boost/math/special_functions/detail/round_fwd.hpp",
- "boost/math/special_functions/fpclassify.hpp": "vendor/boost/include/boost/math/special_functions/fpclassify.hpp",
- "boost/math/special_functions/hypot.hpp": "vendor/boost/include/boost/math/special_functions/hypot.hpp",
- "boost/math/special_functions/log1p.hpp": "vendor/boost/include/boost/math/special_functions/log1p.hpp",
- "boost/math/special_functions/math_fwd.hpp": "vendor/boost/include/boost/math/special_functions/math_fwd.hpp",
- "boost/math/special_functions/next.hpp": "vendor/boost/include/boost/math/special_functions/next.hpp",
- "boost/math/special_functions/sign.hpp": "vendor/boost/include/boost/math/special_functions/sign.hpp",
- "boost/math/special_functions/trunc.hpp": "vendor/boost/include/boost/math/special_functions/trunc.hpp",
- "boost/math/tools/big_constant.hpp": "vendor/boost/include/boost/math/tools/big_constant.hpp",
- "boost/math/tools/config.hpp": "vendor/boost/include/boost/math/tools/config.hpp",
- "boost/math/tools/convert_from_string.hpp": "vendor/boost/include/boost/math/tools/convert_from_string.hpp",
- "boost/math/tools/detail/polynomial_horner1_10.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_10.hpp",
- "boost/math/tools/detail/polynomial_horner1_11.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_11.hpp",
- "boost/math/tools/detail/polynomial_horner1_12.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_12.hpp",
- "boost/math/tools/detail/polynomial_horner1_13.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_13.hpp",
- "boost/math/tools/detail/polynomial_horner1_14.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_14.hpp",
- "boost/math/tools/detail/polynomial_horner1_15.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_15.hpp",
- "boost/math/tools/detail/polynomial_horner1_16.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_16.hpp",
- "boost/math/tools/detail/polynomial_horner1_17.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_17.hpp",
- "boost/math/tools/detail/polynomial_horner1_18.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_18.hpp",
- "boost/math/tools/detail/polynomial_horner1_19.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_19.hpp",
- "boost/math/tools/detail/polynomial_horner1_2.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_2.hpp",
- "boost/math/tools/detail/polynomial_horner1_20.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_20.hpp",
- "boost/math/tools/detail/polynomial_horner1_3.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_3.hpp",
- "boost/math/tools/detail/polynomial_horner1_4.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_4.hpp",
- "boost/math/tools/detail/polynomial_horner1_5.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_5.hpp",
- "boost/math/tools/detail/polynomial_horner1_6.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_6.hpp",
- "boost/math/tools/detail/polynomial_horner1_7.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_7.hpp",
- "boost/math/tools/detail/polynomial_horner1_8.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_8.hpp",
- "boost/math/tools/detail/polynomial_horner1_9.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner1_9.hpp",
- "boost/math/tools/detail/polynomial_horner2_10.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_10.hpp",
- "boost/math/tools/detail/polynomial_horner2_11.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_11.hpp",
- "boost/math/tools/detail/polynomial_horner2_12.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_12.hpp",
- "boost/math/tools/detail/polynomial_horner2_13.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_13.hpp",
- "boost/math/tools/detail/polynomial_horner2_14.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_14.hpp",
- "boost/math/tools/detail/polynomial_horner2_15.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_15.hpp",
- "boost/math/tools/detail/polynomial_horner2_16.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_16.hpp",
- "boost/math/tools/detail/polynomial_horner2_17.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_17.hpp",
- "boost/math/tools/detail/polynomial_horner2_18.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_18.hpp",
- "boost/math/tools/detail/polynomial_horner2_19.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_19.hpp",
- "boost/math/tools/detail/polynomial_horner2_2.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_2.hpp",
- "boost/math/tools/detail/polynomial_horner2_20.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_20.hpp",
- "boost/math/tools/detail/polynomial_horner2_3.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_3.hpp",
- "boost/math/tools/detail/polynomial_horner2_4.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_4.hpp",
- "boost/math/tools/detail/polynomial_horner2_5.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_5.hpp",
- "boost/math/tools/detail/polynomial_horner2_6.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_6.hpp",
- "boost/math/tools/detail/polynomial_horner2_7.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_7.hpp",
- "boost/math/tools/detail/polynomial_horner2_8.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_8.hpp",
- "boost/math/tools/detail/polynomial_horner2_9.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner2_9.hpp",
- "boost/math/tools/detail/polynomial_horner3_10.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_10.hpp",
- "boost/math/tools/detail/polynomial_horner3_11.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_11.hpp",
- "boost/math/tools/detail/polynomial_horner3_12.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_12.hpp",
- "boost/math/tools/detail/polynomial_horner3_13.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_13.hpp",
- "boost/math/tools/detail/polynomial_horner3_14.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_14.hpp",
- "boost/math/tools/detail/polynomial_horner3_15.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_15.hpp",
- "boost/math/tools/detail/polynomial_horner3_16.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_16.hpp",
- "boost/math/tools/detail/polynomial_horner3_17.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_17.hpp",
- "boost/math/tools/detail/polynomial_horner3_18.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_18.hpp",
- "boost/math/tools/detail/polynomial_horner3_19.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_19.hpp",
- "boost/math/tools/detail/polynomial_horner3_2.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_2.hpp",
- "boost/math/tools/detail/polynomial_horner3_20.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_20.hpp",
- "boost/math/tools/detail/polynomial_horner3_3.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_3.hpp",
- "boost/math/tools/detail/polynomial_horner3_4.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_4.hpp",
- "boost/math/tools/detail/polynomial_horner3_5.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_5.hpp",
- "boost/math/tools/detail/polynomial_horner3_6.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_6.hpp",
- "boost/math/tools/detail/polynomial_horner3_7.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_7.hpp",
- "boost/math/tools/detail/polynomial_horner3_8.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_8.hpp",
- "boost/math/tools/detail/polynomial_horner3_9.hpp": "vendor/boost/include/boost/math/tools/detail/polynomial_horner3_9.hpp",
- "boost/math/tools/detail/rational_horner1_10.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_10.hpp",
- "boost/math/tools/detail/rational_horner1_11.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_11.hpp",
- "boost/math/tools/detail/rational_horner1_12.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_12.hpp",
- "boost/math/tools/detail/rational_horner1_13.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_13.hpp",
- "boost/math/tools/detail/rational_horner1_14.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_14.hpp",
- "boost/math/tools/detail/rational_horner1_15.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_15.hpp",
- "boost/math/tools/detail/rational_horner1_16.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_16.hpp",
- "boost/math/tools/detail/rational_horner1_17.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_17.hpp",
- "boost/math/tools/detail/rational_horner1_18.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_18.hpp",
- "boost/math/tools/detail/rational_horner1_19.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_19.hpp",
- "boost/math/tools/detail/rational_horner1_2.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_2.hpp",
- "boost/math/tools/detail/rational_horner1_20.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_20.hpp",
- "boost/math/tools/detail/rational_horner1_3.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_3.hpp",
- "boost/math/tools/detail/rational_horner1_4.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_4.hpp",
- "boost/math/tools/detail/rational_horner1_5.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_5.hpp",
- "boost/math/tools/detail/rational_horner1_6.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_6.hpp",
- "boost/math/tools/detail/rational_horner1_7.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_7.hpp",
- "boost/math/tools/detail/rational_horner1_8.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_8.hpp",
- "boost/math/tools/detail/rational_horner1_9.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner1_9.hpp",
- "boost/math/tools/detail/rational_horner2_10.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_10.hpp",
- "boost/math/tools/detail/rational_horner2_11.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_11.hpp",
- "boost/math/tools/detail/rational_horner2_12.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_12.hpp",
- "boost/math/tools/detail/rational_horner2_13.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_13.hpp",
- "boost/math/tools/detail/rational_horner2_14.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_14.hpp",
- "boost/math/tools/detail/rational_horner2_15.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_15.hpp",
- "boost/math/tools/detail/rational_horner2_16.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_16.hpp",
- "boost/math/tools/detail/rational_horner2_17.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_17.hpp",
- "boost/math/tools/detail/rational_horner2_18.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_18.hpp",
- "boost/math/tools/detail/rational_horner2_19.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_19.hpp",
- "boost/math/tools/detail/rational_horner2_2.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_2.hpp",
- "boost/math/tools/detail/rational_horner2_20.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_20.hpp",
- "boost/math/tools/detail/rational_horner2_3.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_3.hpp",
- "boost/math/tools/detail/rational_horner2_4.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_4.hpp",
- "boost/math/tools/detail/rational_horner2_5.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_5.hpp",
- "boost/math/tools/detail/rational_horner2_6.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_6.hpp",
- "boost/math/tools/detail/rational_horner2_7.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_7.hpp",
- "boost/math/tools/detail/rational_horner2_8.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_8.hpp",
- "boost/math/tools/detail/rational_horner2_9.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner2_9.hpp",
- "boost/math/tools/detail/rational_horner3_10.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_10.hpp",
- "boost/math/tools/detail/rational_horner3_11.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_11.hpp",
- "boost/math/tools/detail/rational_horner3_12.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_12.hpp",
- "boost/math/tools/detail/rational_horner3_13.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_13.hpp",
- "boost/math/tools/detail/rational_horner3_14.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_14.hpp",
- "boost/math/tools/detail/rational_horner3_15.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_15.hpp",
- "boost/math/tools/detail/rational_horner3_16.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_16.hpp",
- "boost/math/tools/detail/rational_horner3_17.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_17.hpp",
- "boost/math/tools/detail/rational_horner3_18.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_18.hpp",
- "boost/math/tools/detail/rational_horner3_19.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_19.hpp",
- "boost/math/tools/detail/rational_horner3_2.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_2.hpp",
- "boost/math/tools/detail/rational_horner3_20.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_20.hpp",
- "boost/math/tools/detail/rational_horner3_3.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_3.hpp",
- "boost/math/tools/detail/rational_horner3_4.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_4.hpp",
- "boost/math/tools/detail/rational_horner3_5.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_5.hpp",
- "boost/math/tools/detail/rational_horner3_6.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_6.hpp",
- "boost/math/tools/detail/rational_horner3_7.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_7.hpp",
- "boost/math/tools/detail/rational_horner3_8.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_8.hpp",
- "boost/math/tools/detail/rational_horner3_9.hpp": "vendor/boost/include/boost/math/tools/detail/rational_horner3_9.hpp",
- "boost/math/tools/precision.hpp": "vendor/boost/include/boost/math/tools/precision.hpp",
- "boost/math/tools/promotion.hpp": "vendor/boost/include/boost/math/tools/promotion.hpp",
- "boost/math/tools/rational.hpp": "vendor/boost/include/boost/math/tools/rational.hpp",
- "boost/math/tools/real_cast.hpp": "vendor/boost/include/boost/math/tools/real_cast.hpp",
- "boost/math/tools/series.hpp": "vendor/boost/include/boost/math/tools/series.hpp",
- "boost/math/tools/user.hpp": "vendor/boost/include/boost/math/tools/user.hpp",
- "boost/mem_fn.hpp": "vendor/boost/include/boost/mem_fn.hpp",
- "boost/move/adl_move_swap.hpp": "vendor/boost/include/boost/move/adl_move_swap.hpp",
- "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",
- "boost/move/algorithm.hpp": "vendor/boost/include/boost/move/algorithm.hpp",
- "boost/move/core.hpp": "vendor/boost/include/boost/move/core.hpp",
- "boost/move/detail/config_begin.hpp": "vendor/boost/include/boost/move/detail/config_begin.hpp",
- "boost/move/detail/config_end.hpp": "vendor/boost/include/boost/move/detail/config_end.hpp",
- "boost/move/detail/destruct_n.hpp": "vendor/boost/include/boost/move/detail/destruct_n.hpp",
- "boost/move/detail/fwd_macros.hpp": "vendor/boost/include/boost/move/detail/fwd_macros.hpp",
- "boost/move/detail/iterator_to_raw_pointer.hpp": "vendor/boost/include/boost/move/detail/iterator_to_raw_pointer.hpp",
- "boost/move/detail/iterator_traits.hpp": "vendor/boost/include/boost/move/detail/iterator_traits.hpp",
- "boost/move/detail/meta_utils.hpp": "vendor/boost/include/boost/move/detail/meta_utils.hpp",
- "boost/move/detail/meta_utils_core.hpp": "vendor/boost/include/boost/move/detail/meta_utils_core.hpp",
- "boost/move/detail/move_helpers.hpp": "vendor/boost/include/boost/move/detail/move_helpers.hpp",
- "boost/move/detail/placement_new.hpp": "vendor/boost/include/boost/move/detail/placement_new.hpp",
- "boost/move/detail/pointer_element.hpp": "vendor/boost/include/boost/move/detail/pointer_element.hpp",
- "boost/move/detail/reverse_iterator.hpp": "vendor/boost/include/boost/move/detail/reverse_iterator.hpp",
- "boost/move/detail/std_ns_begin.hpp": "vendor/boost/include/boost/move/detail/std_ns_begin.hpp",
- "boost/move/detail/std_ns_end.hpp": "vendor/boost/include/boost/move/detail/std_ns_end.hpp",
- "boost/move/detail/to_raw_pointer.hpp": "vendor/boost/include/boost/move/detail/to_raw_pointer.hpp",
- "boost/move/detail/type_traits.hpp": "vendor/boost/include/boost/move/detail/type_traits.hpp",
- "boost/move/detail/workaround.hpp": "vendor/boost/include/boost/move/detail/workaround.hpp",
- "boost/move/iterator.hpp": "vendor/boost/include/boost/move/iterator.hpp",
- "boost/move/move.hpp": "vendor/boost/include/boost/move/move.hpp",
- "boost/move/traits.hpp": "vendor/boost/include/boost/move/traits.hpp",
- "boost/move/utility.hpp": "vendor/boost/include/boost/move/utility.hpp",
- "boost/move/utility_core.hpp": "vendor/boost/include/boost/move/utility_core.hpp",
- "boost/mpl/O1_size.hpp": "vendor/boost/include/boost/mpl/O1_size.hpp",
- "boost/mpl/O1_size_fwd.hpp": "vendor/boost/include/boost/mpl/O1_size_fwd.hpp",
- "boost/mpl/advance.hpp": "vendor/boost/include/boost/mpl/advance.hpp",
- "boost/mpl/advance_fwd.hpp": "vendor/boost/include/boost/mpl/advance_fwd.hpp",
- "boost/mpl/always.hpp": "vendor/boost/include/boost/mpl/always.hpp",
- "boost/mpl/and.hpp": "vendor/boost/include/boost/mpl/and.hpp",
- "boost/mpl/apply.hpp": "vendor/boost/include/boost/mpl/apply.hpp",
- "boost/mpl/apply_fwd.hpp": "vendor/boost/include/boost/mpl/apply_fwd.hpp",
- "boost/mpl/apply_wrap.hpp": "vendor/boost/include/boost/mpl/apply_wrap.hpp",
- "boost/mpl/arg.hpp": "vendor/boost/include/boost/mpl/arg.hpp",
- "boost/mpl/arg_fwd.hpp": "vendor/boost/include/boost/mpl/arg_fwd.hpp",
- "boost/mpl/assert.hpp": "vendor/boost/include/boost/mpl/assert.hpp",
- "boost/mpl/at.hpp": "vendor/boost/include/boost/mpl/at.hpp",
- "boost/mpl/at_fwd.hpp": "vendor/boost/include/boost/mpl/at_fwd.hpp",
- "boost/mpl/aux_/O1_size_impl.hpp": "vendor/boost/include/boost/mpl/aux_/O1_size_impl.hpp",
- "boost/mpl/aux_/adl_barrier.hpp": "vendor/boost/include/boost/mpl/aux_/adl_barrier.hpp",
- "boost/mpl/aux_/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/advance_backward.hpp",
- "boost/mpl/aux_/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/advance_forward.hpp",
- "boost/mpl/aux_/arg_typedef.hpp": "vendor/boost/include/boost/mpl/aux_/arg_typedef.hpp",
- "boost/mpl/aux_/arithmetic_op.hpp": "vendor/boost/include/boost/mpl/aux_/arithmetic_op.hpp",
- "boost/mpl/aux_/arity.hpp": "vendor/boost/include/boost/mpl/aux_/arity.hpp",
- "boost/mpl/aux_/arity_spec.hpp": "vendor/boost/include/boost/mpl/aux_/arity_spec.hpp",
- "boost/mpl/aux_/at_impl.hpp": "vendor/boost/include/boost/mpl/aux_/at_impl.hpp",
- "boost/mpl/aux_/back_impl.hpp": "vendor/boost/include/boost/mpl/aux_/back_impl.hpp",
- "boost/mpl/aux_/begin_end_impl.hpp": "vendor/boost/include/boost/mpl/aux_/begin_end_impl.hpp",
- "boost/mpl/aux_/clear_impl.hpp": "vendor/boost/include/boost/mpl/aux_/clear_impl.hpp",
- "boost/mpl/aux_/common_name_wknd.hpp": "vendor/boost/include/boost/mpl/aux_/common_name_wknd.hpp",
- "boost/mpl/aux_/comparison_op.hpp": "vendor/boost/include/boost/mpl/aux_/comparison_op.hpp",
- "boost/mpl/aux_/config/adl.hpp": "vendor/boost/include/boost/mpl/aux_/config/adl.hpp",
- "boost/mpl/aux_/config/arrays.hpp": "vendor/boost/include/boost/mpl/aux_/config/arrays.hpp",
- "boost/mpl/aux_/config/bcc.hpp": "vendor/boost/include/boost/mpl/aux_/config/bcc.hpp",
- "boost/mpl/aux_/config/bind.hpp": "vendor/boost/include/boost/mpl/aux_/config/bind.hpp",
- "boost/mpl/aux_/config/compiler.hpp": "vendor/boost/include/boost/mpl/aux_/config/compiler.hpp",
- "boost/mpl/aux_/config/ctps.hpp": "vendor/boost/include/boost/mpl/aux_/config/ctps.hpp",
- "boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp",
- "boost/mpl/aux_/config/dtp.hpp": "vendor/boost/include/boost/mpl/aux_/config/dtp.hpp",
- "boost/mpl/aux_/config/eti.hpp": "vendor/boost/include/boost/mpl/aux_/config/eti.hpp",
- "boost/mpl/aux_/config/forwarding.hpp": "vendor/boost/include/boost/mpl/aux_/config/forwarding.hpp",
- "boost/mpl/aux_/config/gcc.hpp": "vendor/boost/include/boost/mpl/aux_/config/gcc.hpp",
- "boost/mpl/aux_/config/gpu.hpp": "vendor/boost/include/boost/mpl/aux_/config/gpu.hpp",
- "boost/mpl/aux_/config/has_apply.hpp": "vendor/boost/include/boost/mpl/aux_/config/has_apply.hpp",
- "boost/mpl/aux_/config/has_xxx.hpp": "vendor/boost/include/boost/mpl/aux_/config/has_xxx.hpp",
- "boost/mpl/aux_/config/integral.hpp": "vendor/boost/include/boost/mpl/aux_/config/integral.hpp",
- "boost/mpl/aux_/config/intel.hpp": "vendor/boost/include/boost/mpl/aux_/config/intel.hpp",
- "boost/mpl/aux_/config/lambda.hpp": "vendor/boost/include/boost/mpl/aux_/config/lambda.hpp",
- "boost/mpl/aux_/config/msvc.hpp": "vendor/boost/include/boost/mpl/aux_/config/msvc.hpp",
- "boost/mpl/aux_/config/msvc_typename.hpp": "vendor/boost/include/boost/mpl/aux_/config/msvc_typename.hpp",
- "boost/mpl/aux_/config/nttp.hpp": "vendor/boost/include/boost/mpl/aux_/config/nttp.hpp",
- "boost/mpl/aux_/config/operators.hpp": "vendor/boost/include/boost/mpl/aux_/config/operators.hpp",
- "boost/mpl/aux_/config/overload_resolution.hpp": "vendor/boost/include/boost/mpl/aux_/config/overload_resolution.hpp",
- "boost/mpl/aux_/config/pp_counter.hpp": "vendor/boost/include/boost/mpl/aux_/config/pp_counter.hpp",
- "boost/mpl/aux_/config/preprocessor.hpp": "vendor/boost/include/boost/mpl/aux_/config/preprocessor.hpp",
- "boost/mpl/aux_/config/static_constant.hpp": "vendor/boost/include/boost/mpl/aux_/config/static_constant.hpp",
- "boost/mpl/aux_/config/ttp.hpp": "vendor/boost/include/boost/mpl/aux_/config/ttp.hpp",
- "boost/mpl/aux_/config/typeof.hpp": "vendor/boost/include/boost/mpl/aux_/config/typeof.hpp",
- "boost/mpl/aux_/config/use_preprocessed.hpp": "vendor/boost/include/boost/mpl/aux_/config/use_preprocessed.hpp",
- "boost/mpl/aux_/config/workaround.hpp": "vendor/boost/include/boost/mpl/aux_/config/workaround.hpp",
- "boost/mpl/aux_/contains_impl.hpp": "vendor/boost/include/boost/mpl/aux_/contains_impl.hpp",
- "boost/mpl/aux_/count_args.hpp": "vendor/boost/include/boost/mpl/aux_/count_args.hpp",
- "boost/mpl/aux_/empty_impl.hpp": "vendor/boost/include/boost/mpl/aux_/empty_impl.hpp",
- "boost/mpl/aux_/erase_impl.hpp": "vendor/boost/include/boost/mpl/aux_/erase_impl.hpp",
- "boost/mpl/aux_/erase_key_impl.hpp": "vendor/boost/include/boost/mpl/aux_/erase_key_impl.hpp",
- "boost/mpl/aux_/find_if_pred.hpp": "vendor/boost/include/boost/mpl/aux_/find_if_pred.hpp",
- "boost/mpl/aux_/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/fold_impl.hpp",
- "boost/mpl/aux_/fold_impl_body.hpp": "vendor/boost/include/boost/mpl/aux_/fold_impl_body.hpp",
- "boost/mpl/aux_/front_impl.hpp": "vendor/boost/include/boost/mpl/aux_/front_impl.hpp",
- "boost/mpl/aux_/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/full_lambda.hpp",
- "boost/mpl/aux_/has_apply.hpp": "vendor/boost/include/boost/mpl/aux_/has_apply.hpp",
- "boost/mpl/aux_/has_begin.hpp": "vendor/boost/include/boost/mpl/aux_/has_begin.hpp",
- "boost/mpl/aux_/has_key_impl.hpp": "vendor/boost/include/boost/mpl/aux_/has_key_impl.hpp",
- "boost/mpl/aux_/has_rebind.hpp": "vendor/boost/include/boost/mpl/aux_/has_rebind.hpp",
- "boost/mpl/aux_/has_size.hpp": "vendor/boost/include/boost/mpl/aux_/has_size.hpp",
- "boost/mpl/aux_/has_tag.hpp": "vendor/boost/include/boost/mpl/aux_/has_tag.hpp",
- "boost/mpl/aux_/has_type.hpp": "vendor/boost/include/boost/mpl/aux_/has_type.hpp",
- "boost/mpl/aux_/include_preprocessed.hpp": "vendor/boost/include/boost/mpl/aux_/include_preprocessed.hpp",
- "boost/mpl/aux_/insert_impl.hpp": "vendor/boost/include/boost/mpl/aux_/insert_impl.hpp",
- "boost/mpl/aux_/insert_range_impl.hpp": "vendor/boost/include/boost/mpl/aux_/insert_range_impl.hpp",
- "boost/mpl/aux_/inserter_algorithm.hpp": "vendor/boost/include/boost/mpl/aux_/inserter_algorithm.hpp",
- "boost/mpl/aux_/integral_wrapper.hpp": "vendor/boost/include/boost/mpl/aux_/integral_wrapper.hpp",
- "boost/mpl/aux_/is_msvc_eti_arg.hpp": "vendor/boost/include/boost/mpl/aux_/is_msvc_eti_arg.hpp",
- "boost/mpl/aux_/iter_apply.hpp": "vendor/boost/include/boost/mpl/aux_/iter_apply.hpp",
- "boost/mpl/aux_/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/iter_fold_impl.hpp",
- "boost/mpl/aux_/iter_push_front.hpp": "vendor/boost/include/boost/mpl/aux_/iter_push_front.hpp",
- "boost/mpl/aux_/joint_iter.hpp": "vendor/boost/include/boost/mpl/aux_/joint_iter.hpp",
- "boost/mpl/aux_/lambda_arity_param.hpp": "vendor/boost/include/boost/mpl/aux_/lambda_arity_param.hpp",
- "boost/mpl/aux_/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/lambda_no_ctps.hpp",
- "boost/mpl/aux_/lambda_spec.hpp": "vendor/boost/include/boost/mpl/aux_/lambda_spec.hpp",
- "boost/mpl/aux_/lambda_support.hpp": "vendor/boost/include/boost/mpl/aux_/lambda_support.hpp",
- "boost/mpl/aux_/largest_int.hpp": "vendor/boost/include/boost/mpl/aux_/largest_int.hpp",
- "boost/mpl/aux_/logical_op.hpp": "vendor/boost/include/boost/mpl/aux_/logical_op.hpp",
- "boost/mpl/aux_/msvc_dtw.hpp": "vendor/boost/include/boost/mpl/aux_/msvc_dtw.hpp",
- "boost/mpl/aux_/msvc_eti_base.hpp": "vendor/boost/include/boost/mpl/aux_/msvc_eti_base.hpp",
- "boost/mpl/aux_/msvc_is_class.hpp": "vendor/boost/include/boost/mpl/aux_/msvc_is_class.hpp",
- "boost/mpl/aux_/msvc_never_true.hpp": "vendor/boost/include/boost/mpl/aux_/msvc_never_true.hpp",
- "boost/mpl/aux_/msvc_type.hpp": "vendor/boost/include/boost/mpl/aux_/msvc_type.hpp",
- "boost/mpl/aux_/na.hpp": "vendor/boost/include/boost/mpl/aux_/na.hpp",
- "boost/mpl/aux_/na_assert.hpp": "vendor/boost/include/boost/mpl/aux_/na_assert.hpp",
- "boost/mpl/aux_/na_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/na_fwd.hpp",
- "boost/mpl/aux_/na_spec.hpp": "vendor/boost/include/boost/mpl/aux_/na_spec.hpp",
- "boost/mpl/aux_/nested_type_wknd.hpp": "vendor/boost/include/boost/mpl/aux_/nested_type_wknd.hpp",
- "boost/mpl/aux_/nttp_decl.hpp": "vendor/boost/include/boost/mpl/aux_/nttp_decl.hpp",
- "boost/mpl/aux_/numeric_cast_utils.hpp": "vendor/boost/include/boost/mpl/aux_/numeric_cast_utils.hpp",
- "boost/mpl/aux_/numeric_op.hpp": "vendor/boost/include/boost/mpl/aux_/numeric_op.hpp",
- "boost/mpl/aux_/order_impl.hpp": "vendor/boost/include/boost/mpl/aux_/order_impl.hpp",
- "boost/mpl/aux_/overload_names.hpp": "vendor/boost/include/boost/mpl/aux_/overload_names.hpp",
- "boost/mpl/aux_/pop_back_impl.hpp": "vendor/boost/include/boost/mpl/aux_/pop_back_impl.hpp",
- "boost/mpl/aux_/pop_front_impl.hpp": "vendor/boost/include/boost/mpl/aux_/pop_front_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/bcc/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/and.hpp",
- "boost/mpl/aux_/preprocessed/bcc/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/apply.hpp",
- "boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/bcc/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/arg.hpp",
- "boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/bitand.hpp",
- "boost/mpl/aux_/preprocessed/bcc/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/bitor.hpp",
- "boost/mpl/aux_/preprocessed/bcc/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/bcc/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/deque.hpp",
- "boost/mpl/aux_/preprocessed/bcc/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/divides.hpp",
- "boost/mpl/aux_/preprocessed/bcc/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/bcc/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/greater.hpp",
- "boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/inherit.hpp",
- "boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/bcc/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/less.hpp",
- "boost/mpl/aux_/preprocessed/bcc/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/list.hpp",
- "boost/mpl/aux_/preprocessed/bcc/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/list_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/map.hpp",
- "boost/mpl/aux_/preprocessed/bcc/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/minus.hpp",
- "boost/mpl/aux_/preprocessed/bcc/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/modulus.hpp",
- "boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/or.hpp",
- "boost/mpl/aux_/preprocessed/bcc/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/bcc/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/plus.hpp",
- "boost/mpl/aux_/preprocessed/bcc/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/quote.hpp",
- "boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/set.hpp",
- "boost/mpl/aux_/preprocessed/bcc/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/set_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/bcc/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/bcc/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/bcc/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/times.hpp",
- "boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/bcc/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/vector.hpp",
- "boost/mpl/aux_/preprocessed/bcc/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/and.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/apply.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/arg.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/deque.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/divides.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/greater.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/less.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/list.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/map.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/minus.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/or.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/plus.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/quote.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/set.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/times.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/vector.hpp",
- "boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp",
- "boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/dmc/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/and.hpp",
- "boost/mpl/aux_/preprocessed/dmc/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/apply.hpp",
- "boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/dmc/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/arg.hpp",
- "boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/dmc/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/bind.hpp",
- "boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/dmc/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/bitand.hpp",
- "boost/mpl/aux_/preprocessed/dmc/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/bitor.hpp",
- "boost/mpl/aux_/preprocessed/dmc/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/dmc/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/deque.hpp",
- "boost/mpl/aux_/preprocessed/dmc/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/divides.hpp",
- "boost/mpl/aux_/preprocessed/dmc/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/dmc/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/greater.hpp",
- "boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/dmc/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/inherit.hpp",
- "boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/dmc/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/less.hpp",
- "boost/mpl/aux_/preprocessed/dmc/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/dmc/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/list.hpp",
- "boost/mpl/aux_/preprocessed/dmc/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/list_c.hpp",
- "boost/mpl/aux_/preprocessed/dmc/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/map.hpp",
- "boost/mpl/aux_/preprocessed/dmc/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/minus.hpp",
- "boost/mpl/aux_/preprocessed/dmc/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/modulus.hpp",
- "boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/dmc/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/or.hpp",
- "boost/mpl/aux_/preprocessed/dmc/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/dmc/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/plus.hpp",
- "boost/mpl/aux_/preprocessed/dmc/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/quote.hpp",
- "boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/dmc/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/set.hpp",
- "boost/mpl/aux_/preprocessed/dmc/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/set_c.hpp",
- "boost/mpl/aux_/preprocessed/dmc/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/dmc/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/dmc/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/dmc/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/times.hpp",
- "boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/dmc/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/vector.hpp",
- "boost/mpl/aux_/preprocessed/dmc/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/gcc/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/and.hpp",
- "boost/mpl/aux_/preprocessed/gcc/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/apply.hpp",
- "boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/gcc/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/arg.hpp",
- "boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/gcc/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/bind.hpp",
- "boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/gcc/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/bitand.hpp",
- "boost/mpl/aux_/preprocessed/gcc/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/bitor.hpp",
- "boost/mpl/aux_/preprocessed/gcc/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/gcc/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/deque.hpp",
- "boost/mpl/aux_/preprocessed/gcc/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/divides.hpp",
- "boost/mpl/aux_/preprocessed/gcc/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/gcc/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/greater.hpp",
- "boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/gcc/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/inherit.hpp",
- "boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/gcc/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/less.hpp",
- "boost/mpl/aux_/preprocessed/gcc/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/gcc/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/list.hpp",
- "boost/mpl/aux_/preprocessed/gcc/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/list_c.hpp",
- "boost/mpl/aux_/preprocessed/gcc/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/map.hpp",
- "boost/mpl/aux_/preprocessed/gcc/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/minus.hpp",
- "boost/mpl/aux_/preprocessed/gcc/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/modulus.hpp",
- "boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/gcc/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/or.hpp",
- "boost/mpl/aux_/preprocessed/gcc/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/gcc/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/plus.hpp",
- "boost/mpl/aux_/preprocessed/gcc/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/quote.hpp",
- "boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/gcc/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/set.hpp",
- "boost/mpl/aux_/preprocessed/gcc/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/set_c.hpp",
- "boost/mpl/aux_/preprocessed/gcc/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/gcc/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/gcc/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/gcc/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/times.hpp",
- "boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/gcc/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/vector.hpp",
- "boost/mpl/aux_/preprocessed/gcc/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/and.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/apply.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/arg.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/bind.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/deque.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/divides.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/greater.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/less.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/list.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/map.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/minus.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/or.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/plus.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/quote.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/set.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/times.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/vector.hpp",
- "boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/and.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/apply.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/arg.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/bind.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/deque.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/divides.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/greater.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/less.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/list.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/map.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/minus.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/or.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/plus.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/quote.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/set.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/times.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/vector.hpp",
- "boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/and.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/apply.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/arg.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/bind.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/deque.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/divides.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/greater.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/less.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/list.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/map.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/minus.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/or.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/plus.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/quote.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/set.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/times.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/vector.hpp",
- "boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/and.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/less.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/list.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/map.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/or.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/set.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/times.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp",
- "boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/and.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/less.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/list.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/map.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/or.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/set.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/times.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp",
- "boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp",
- "boost/mpl/aux_/preprocessed/plain/advance_backward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp",
- "boost/mpl/aux_/preprocessed/plain/advance_forward.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp",
- "boost/mpl/aux_/preprocessed/plain/and.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/and.hpp",
- "boost/mpl/aux_/preprocessed/plain/apply.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/apply.hpp",
- "boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp",
- "boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp",
- "boost/mpl/aux_/preprocessed/plain/arg.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/arg.hpp",
- "boost/mpl/aux_/preprocessed/plain/basic_bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp",
- "boost/mpl/aux_/preprocessed/plain/bind.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/bind.hpp",
- "boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp",
- "boost/mpl/aux_/preprocessed/plain/bitand.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/bitand.hpp",
- "boost/mpl/aux_/preprocessed/plain/bitor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/bitor.hpp",
- "boost/mpl/aux_/preprocessed/plain/bitxor.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/bitxor.hpp",
- "boost/mpl/aux_/preprocessed/plain/deque.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/deque.hpp",
- "boost/mpl/aux_/preprocessed/plain/divides.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/divides.hpp",
- "boost/mpl/aux_/preprocessed/plain/equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/equal_to.hpp",
- "boost/mpl/aux_/preprocessed/plain/fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/plain/full_lambda.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp",
- "boost/mpl/aux_/preprocessed/plain/greater.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/greater.hpp",
- "boost/mpl/aux_/preprocessed/plain/greater_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp",
- "boost/mpl/aux_/preprocessed/plain/inherit.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/inherit.hpp",
- "boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp",
- "boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp",
- "boost/mpl/aux_/preprocessed/plain/less.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/less.hpp",
- "boost/mpl/aux_/preprocessed/plain/less_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/less_equal.hpp",
- "boost/mpl/aux_/preprocessed/plain/list.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/list.hpp",
- "boost/mpl/aux_/preprocessed/plain/list_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/list_c.hpp",
- "boost/mpl/aux_/preprocessed/plain/map.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/map.hpp",
- "boost/mpl/aux_/preprocessed/plain/minus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/minus.hpp",
- "boost/mpl/aux_/preprocessed/plain/modulus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/modulus.hpp",
- "boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp",
- "boost/mpl/aux_/preprocessed/plain/or.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/or.hpp",
- "boost/mpl/aux_/preprocessed/plain/placeholders.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/placeholders.hpp",
- "boost/mpl/aux_/preprocessed/plain/plus.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/plus.hpp",
- "boost/mpl/aux_/preprocessed/plain/quote.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/quote.hpp",
- "boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp",
- "boost/mpl/aux_/preprocessed/plain/set.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/set.hpp",
- "boost/mpl/aux_/preprocessed/plain/set_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/set_c.hpp",
- "boost/mpl/aux_/preprocessed/plain/shift_left.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/shift_left.hpp",
- "boost/mpl/aux_/preprocessed/plain/shift_right.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/shift_right.hpp",
- "boost/mpl/aux_/preprocessed/plain/template_arity.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/template_arity.hpp",
- "boost/mpl/aux_/preprocessed/plain/times.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/times.hpp",
- "boost/mpl/aux_/preprocessed/plain/unpack_args.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp",
- "boost/mpl/aux_/preprocessed/plain/vector.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/vector.hpp",
- "boost/mpl/aux_/preprocessed/plain/vector_c.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessed/plain/vector_c.hpp",
- "boost/mpl/aux_/preprocessor/add.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/add.hpp",
- "boost/mpl/aux_/preprocessor/def_params_tail.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp",
- "boost/mpl/aux_/preprocessor/default_params.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/default_params.hpp",
- "boost/mpl/aux_/preprocessor/enum.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/enum.hpp",
- "boost/mpl/aux_/preprocessor/ext_params.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/ext_params.hpp",
- "boost/mpl/aux_/preprocessor/filter_params.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/filter_params.hpp",
- "boost/mpl/aux_/preprocessor/is_seq.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/is_seq.hpp",
- "boost/mpl/aux_/preprocessor/params.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/params.hpp",
- "boost/mpl/aux_/preprocessor/partial_spec_params.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp",
- "boost/mpl/aux_/preprocessor/range.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/range.hpp",
- "boost/mpl/aux_/preprocessor/repeat.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/repeat.hpp",
- "boost/mpl/aux_/preprocessor/sub.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/sub.hpp",
- "boost/mpl/aux_/preprocessor/token_equal.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/token_equal.hpp",
- "boost/mpl/aux_/preprocessor/tuple.hpp": "vendor/boost/include/boost/mpl/aux_/preprocessor/tuple.hpp",
- "boost/mpl/aux_/ptr_to_ref.hpp": "vendor/boost/include/boost/mpl/aux_/ptr_to_ref.hpp",
- "boost/mpl/aux_/push_back_impl.hpp": "vendor/boost/include/boost/mpl/aux_/push_back_impl.hpp",
- "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_/sequence_wrapper.hpp": "vendor/boost/include/boost/mpl/aux_/sequence_wrapper.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",
- "boost/mpl/aux_/template_arity_fwd.hpp": "vendor/boost/include/boost/mpl/aux_/template_arity_fwd.hpp",
- "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_/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",
- "boost/mpl/back_fwd.hpp": "vendor/boost/include/boost/mpl/back_fwd.hpp",
- "boost/mpl/back_inserter.hpp": "vendor/boost/include/boost/mpl/back_inserter.hpp",
- "boost/mpl/base.hpp": "vendor/boost/include/boost/mpl/base.hpp",
- "boost/mpl/begin.hpp": "vendor/boost/include/boost/mpl/begin.hpp",
- "boost/mpl/begin_end.hpp": "vendor/boost/include/boost/mpl/begin_end.hpp",
- "boost/mpl/begin_end_fwd.hpp": "vendor/boost/include/boost/mpl/begin_end_fwd.hpp",
- "boost/mpl/bind.hpp": "vendor/boost/include/boost/mpl/bind.hpp",
- "boost/mpl/bind_fwd.hpp": "vendor/boost/include/boost/mpl/bind_fwd.hpp",
- "boost/mpl/bitand.hpp": "vendor/boost/include/boost/mpl/bitand.hpp",
- "boost/mpl/bitxor.hpp": "vendor/boost/include/boost/mpl/bitxor.hpp",
- "boost/mpl/bool.hpp": "vendor/boost/include/boost/mpl/bool.hpp",
- "boost/mpl/bool_fwd.hpp": "vendor/boost/include/boost/mpl/bool_fwd.hpp",
- "boost/mpl/clear.hpp": "vendor/boost/include/boost/mpl/clear.hpp",
- "boost/mpl/clear_fwd.hpp": "vendor/boost/include/boost/mpl/clear_fwd.hpp",
- "boost/mpl/comparison.hpp": "vendor/boost/include/boost/mpl/comparison.hpp",
- "boost/mpl/contains.hpp": "vendor/boost/include/boost/mpl/contains.hpp",
- "boost/mpl/contains_fwd.hpp": "vendor/boost/include/boost/mpl/contains_fwd.hpp",
- "boost/mpl/copy.hpp": "vendor/boost/include/boost/mpl/copy.hpp",
- "boost/mpl/deref.hpp": "vendor/boost/include/boost/mpl/deref.hpp",
- "boost/mpl/distance.hpp": "vendor/boost/include/boost/mpl/distance.hpp",
- "boost/mpl/distance_fwd.hpp": "vendor/boost/include/boost/mpl/distance_fwd.hpp",
- "boost/mpl/empty.hpp": "vendor/boost/include/boost/mpl/empty.hpp",
- "boost/mpl/empty_base.hpp": "vendor/boost/include/boost/mpl/empty_base.hpp",
- "boost/mpl/empty_fwd.hpp": "vendor/boost/include/boost/mpl/empty_fwd.hpp",
- "boost/mpl/end.hpp": "vendor/boost/include/boost/mpl/end.hpp",
- "boost/mpl/equal.hpp": "vendor/boost/include/boost/mpl/equal.hpp",
- "boost/mpl/equal_to.hpp": "vendor/boost/include/boost/mpl/equal_to.hpp",
- "boost/mpl/erase.hpp": "vendor/boost/include/boost/mpl/erase.hpp",
- "boost/mpl/erase_fwd.hpp": "vendor/boost/include/boost/mpl/erase_fwd.hpp",
- "boost/mpl/erase_key.hpp": "vendor/boost/include/boost/mpl/erase_key.hpp",
- "boost/mpl/erase_key_fwd.hpp": "vendor/boost/include/boost/mpl/erase_key_fwd.hpp",
- "boost/mpl/eval_if.hpp": "vendor/boost/include/boost/mpl/eval_if.hpp",
- "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/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",
- "boost/mpl/greater.hpp": "vendor/boost/include/boost/mpl/greater.hpp",
- "boost/mpl/greater_equal.hpp": "vendor/boost/include/boost/mpl/greater_equal.hpp",
- "boost/mpl/has_key.hpp": "vendor/boost/include/boost/mpl/has_key.hpp",
- "boost/mpl/has_key_fwd.hpp": "vendor/boost/include/boost/mpl/has_key_fwd.hpp",
- "boost/mpl/has_xxx.hpp": "vendor/boost/include/boost/mpl/has_xxx.hpp",
- "boost/mpl/identity.hpp": "vendor/boost/include/boost/mpl/identity.hpp",
- "boost/mpl/if.hpp": "vendor/boost/include/boost/mpl/if.hpp",
- "boost/mpl/inherit.hpp": "vendor/boost/include/boost/mpl/inherit.hpp",
- "boost/mpl/insert.hpp": "vendor/boost/include/boost/mpl/insert.hpp",
- "boost/mpl/insert_fwd.hpp": "vendor/boost/include/boost/mpl/insert_fwd.hpp",
- "boost/mpl/insert_range.hpp": "vendor/boost/include/boost/mpl/insert_range.hpp",
- "boost/mpl/insert_range_fwd.hpp": "vendor/boost/include/boost/mpl/insert_range_fwd.hpp",
- "boost/mpl/inserter.hpp": "vendor/boost/include/boost/mpl/inserter.hpp",
- "boost/mpl/int.hpp": "vendor/boost/include/boost/mpl/int.hpp",
- "boost/mpl/int_fwd.hpp": "vendor/boost/include/boost/mpl/int_fwd.hpp",
- "boost/mpl/integral_c.hpp": "vendor/boost/include/boost/mpl/integral_c.hpp",
- "boost/mpl/integral_c_fwd.hpp": "vendor/boost/include/boost/mpl/integral_c_fwd.hpp",
- "boost/mpl/integral_c_tag.hpp": "vendor/boost/include/boost/mpl/integral_c_tag.hpp",
- "boost/mpl/is_placeholder.hpp": "vendor/boost/include/boost/mpl/is_placeholder.hpp",
- "boost/mpl/is_sequence.hpp": "vendor/boost/include/boost/mpl/is_sequence.hpp",
- "boost/mpl/iter_fold.hpp": "vendor/boost/include/boost/mpl/iter_fold.hpp",
- "boost/mpl/iter_fold_if.hpp": "vendor/boost/include/boost/mpl/iter_fold_if.hpp",
- "boost/mpl/iterator_category.hpp": "vendor/boost/include/boost/mpl/iterator_category.hpp",
- "boost/mpl/iterator_range.hpp": "vendor/boost/include/boost/mpl/iterator_range.hpp",
- "boost/mpl/iterator_tags.hpp": "vendor/boost/include/boost/mpl/iterator_tags.hpp",
- "boost/mpl/joint_view.hpp": "vendor/boost/include/boost/mpl/joint_view.hpp",
- "boost/mpl/key_type_fwd.hpp": "vendor/boost/include/boost/mpl/key_type_fwd.hpp",
- "boost/mpl/lambda.hpp": "vendor/boost/include/boost/mpl/lambda.hpp",
- "boost/mpl/lambda_fwd.hpp": "vendor/boost/include/boost/mpl/lambda_fwd.hpp",
- "boost/mpl/less.hpp": "vendor/boost/include/boost/mpl/less.hpp",
- "boost/mpl/less_equal.hpp": "vendor/boost/include/boost/mpl/less_equal.hpp",
- "boost/mpl/limits/arity.hpp": "vendor/boost/include/boost/mpl/limits/arity.hpp",
- "boost/mpl/limits/list.hpp": "vendor/boost/include/boost/mpl/limits/list.hpp",
- "boost/mpl/limits/map.hpp": "vendor/boost/include/boost/mpl/limits/map.hpp",
- "boost/mpl/limits/set.hpp": "vendor/boost/include/boost/mpl/limits/set.hpp",
- "boost/mpl/limits/unrolling.hpp": "vendor/boost/include/boost/mpl/limits/unrolling.hpp",
- "boost/mpl/limits/vector.hpp": "vendor/boost/include/boost/mpl/limits/vector.hpp",
- "boost/mpl/list.hpp": "vendor/boost/include/boost/mpl/list.hpp",
- "boost/mpl/list/aux_/O1_size.hpp": "vendor/boost/include/boost/mpl/list/aux_/O1_size.hpp",
- "boost/mpl/list/aux_/begin_end.hpp": "vendor/boost/include/boost/mpl/list/aux_/begin_end.hpp",
- "boost/mpl/list/aux_/clear.hpp": "vendor/boost/include/boost/mpl/list/aux_/clear.hpp",
- "boost/mpl/list/aux_/empty.hpp": "vendor/boost/include/boost/mpl/list/aux_/empty.hpp",
- "boost/mpl/list/aux_/front.hpp": "vendor/boost/include/boost/mpl/list/aux_/front.hpp",
- "boost/mpl/list/aux_/include_preprocessed.hpp": "vendor/boost/include/boost/mpl/list/aux_/include_preprocessed.hpp",
- "boost/mpl/list/aux_/item.hpp": "vendor/boost/include/boost/mpl/list/aux_/item.hpp",
- "boost/mpl/list/aux_/iterator.hpp": "vendor/boost/include/boost/mpl/list/aux_/iterator.hpp",
- "boost/mpl/list/aux_/numbered.hpp": "vendor/boost/include/boost/mpl/list/aux_/numbered.hpp",
- "boost/mpl/list/aux_/numbered_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/numbered_c.hpp",
- "boost/mpl/list/aux_/pop_front.hpp": "vendor/boost/include/boost/mpl/list/aux_/pop_front.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list10.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list10.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list20.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list20.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list30.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list30.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list40.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list40.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list50.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list50.hpp",
- "boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp": "vendor/boost/include/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp",
- "boost/mpl/list/aux_/push_back.hpp": "vendor/boost/include/boost/mpl/list/aux_/push_back.hpp",
- "boost/mpl/list/aux_/push_front.hpp": "vendor/boost/include/boost/mpl/list/aux_/push_front.hpp",
- "boost/mpl/list/aux_/size.hpp": "vendor/boost/include/boost/mpl/list/aux_/size.hpp",
- "boost/mpl/list/aux_/tag.hpp": "vendor/boost/include/boost/mpl/list/aux_/tag.hpp",
- "boost/mpl/list/list0.hpp": "vendor/boost/include/boost/mpl/list/list0.hpp",
- "boost/mpl/list/list0_c.hpp": "vendor/boost/include/boost/mpl/list/list0_c.hpp",
- "boost/mpl/list/list10.hpp": "vendor/boost/include/boost/mpl/list/list10.hpp",
- "boost/mpl/list/list10_c.hpp": "vendor/boost/include/boost/mpl/list/list10_c.hpp",
- "boost/mpl/list/list20.hpp": "vendor/boost/include/boost/mpl/list/list20.hpp",
- "boost/mpl/list/list20_c.hpp": "vendor/boost/include/boost/mpl/list/list20_c.hpp",
- "boost/mpl/list/list30.hpp": "vendor/boost/include/boost/mpl/list/list30.hpp",
- "boost/mpl/list/list30_c.hpp": "vendor/boost/include/boost/mpl/list/list30_c.hpp",
- "boost/mpl/list/list40.hpp": "vendor/boost/include/boost/mpl/list/list40.hpp",
- "boost/mpl/list/list40_c.hpp": "vendor/boost/include/boost/mpl/list/list40_c.hpp",
- "boost/mpl/list/list50.hpp": "vendor/boost/include/boost/mpl/list/list50.hpp",
- "boost/mpl/list/list50_c.hpp": "vendor/boost/include/boost/mpl/list/list50_c.hpp",
- "boost/mpl/logical.hpp": "vendor/boost/include/boost/mpl/logical.hpp",
- "boost/mpl/long.hpp": "vendor/boost/include/boost/mpl/long.hpp",
- "boost/mpl/long_fwd.hpp": "vendor/boost/include/boost/mpl/long_fwd.hpp",
- "boost/mpl/map.hpp": "vendor/boost/include/boost/mpl/map.hpp",
- "boost/mpl/map/aux_/at_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/at_impl.hpp",
- "boost/mpl/map/aux_/begin_end_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/begin_end_impl.hpp",
- "boost/mpl/map/aux_/clear_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/clear_impl.hpp",
- "boost/mpl/map/aux_/contains_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/contains_impl.hpp",
- "boost/mpl/map/aux_/empty_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/empty_impl.hpp",
- "boost/mpl/map/aux_/erase_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/erase_impl.hpp",
- "boost/mpl/map/aux_/erase_key_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/erase_key_impl.hpp",
- "boost/mpl/map/aux_/has_key_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/has_key_impl.hpp",
- "boost/mpl/map/aux_/include_preprocessed.hpp": "vendor/boost/include/boost/mpl/map/aux_/include_preprocessed.hpp",
- "boost/mpl/map/aux_/insert_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/insert_impl.hpp",
- "boost/mpl/map/aux_/insert_range_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/insert_range_impl.hpp",
- "boost/mpl/map/aux_/item.hpp": "vendor/boost/include/boost/mpl/map/aux_/item.hpp",
- "boost/mpl/map/aux_/iterator.hpp": "vendor/boost/include/boost/mpl/map/aux_/iterator.hpp",
- "boost/mpl/map/aux_/key_type_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/key_type_impl.hpp",
- "boost/mpl/map/aux_/map0.hpp": "vendor/boost/include/boost/mpl/map/aux_/map0.hpp",
- "boost/mpl/map/aux_/numbered.hpp": "vendor/boost/include/boost/mpl/map/aux_/numbered.hpp",
- "boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp",
- "boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp",
- "boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp",
- "boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp",
- "boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp",
- "boost/mpl/map/aux_/preprocessed/plain/map10.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/plain/map10.hpp",
- "boost/mpl/map/aux_/preprocessed/plain/map20.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/plain/map20.hpp",
- "boost/mpl/map/aux_/preprocessed/plain/map30.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/plain/map30.hpp",
- "boost/mpl/map/aux_/preprocessed/plain/map40.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/plain/map40.hpp",
- "boost/mpl/map/aux_/preprocessed/plain/map50.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/plain/map50.hpp",
- "boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp",
- "boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp",
- "boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp",
- "boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp",
- "boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp": "vendor/boost/include/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp",
- "boost/mpl/map/aux_/size_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/size_impl.hpp",
- "boost/mpl/map/aux_/tag.hpp": "vendor/boost/include/boost/mpl/map/aux_/tag.hpp",
- "boost/mpl/map/aux_/value_type_impl.hpp": "vendor/boost/include/boost/mpl/map/aux_/value_type_impl.hpp",
- "boost/mpl/map/map0.hpp": "vendor/boost/include/boost/mpl/map/map0.hpp",
- "boost/mpl/map/map10.hpp": "vendor/boost/include/boost/mpl/map/map10.hpp",
- "boost/mpl/map/map20.hpp": "vendor/boost/include/boost/mpl/map/map20.hpp",
- "boost/mpl/map/map30.hpp": "vendor/boost/include/boost/mpl/map/map30.hpp",
- "boost/mpl/map/map40.hpp": "vendor/boost/include/boost/mpl/map/map40.hpp",
- "boost/mpl/map/map50.hpp": "vendor/boost/include/boost/mpl/map/map50.hpp",
- "boost/mpl/max.hpp": "vendor/boost/include/boost/mpl/max.hpp",
- "boost/mpl/max_element.hpp": "vendor/boost/include/boost/mpl/max_element.hpp",
- "boost/mpl/min.hpp": "vendor/boost/include/boost/mpl/min.hpp",
- "boost/mpl/min_max.hpp": "vendor/boost/include/boost/mpl/min_max.hpp",
- "boost/mpl/minus.hpp": "vendor/boost/include/boost/mpl/minus.hpp",
- "boost/mpl/multiplies.hpp": "vendor/boost/include/boost/mpl/multiplies.hpp",
- "boost/mpl/negate.hpp": "vendor/boost/include/boost/mpl/negate.hpp",
- "boost/mpl/next.hpp": "vendor/boost/include/boost/mpl/next.hpp",
- "boost/mpl/next_prior.hpp": "vendor/boost/include/boost/mpl/next_prior.hpp",
- "boost/mpl/not.hpp": "vendor/boost/include/boost/mpl/not.hpp",
- "boost/mpl/not_equal_to.hpp": "vendor/boost/include/boost/mpl/not_equal_to.hpp",
- "boost/mpl/numeric_cast.hpp": "vendor/boost/include/boost/mpl/numeric_cast.hpp",
- "boost/mpl/or.hpp": "vendor/boost/include/boost/mpl/or.hpp",
- "boost/mpl/order_fwd.hpp": "vendor/boost/include/boost/mpl/order_fwd.hpp",
- "boost/mpl/pair.hpp": "vendor/boost/include/boost/mpl/pair.hpp",
- "boost/mpl/pair_view.hpp": "vendor/boost/include/boost/mpl/pair_view.hpp",
- "boost/mpl/placeholders.hpp": "vendor/boost/include/boost/mpl/placeholders.hpp",
- "boost/mpl/plus.hpp": "vendor/boost/include/boost/mpl/plus.hpp",
- "boost/mpl/pop_back.hpp": "vendor/boost/include/boost/mpl/pop_back.hpp",
- "boost/mpl/pop_back_fwd.hpp": "vendor/boost/include/boost/mpl/pop_back_fwd.hpp",
- "boost/mpl/pop_front.hpp": "vendor/boost/include/boost/mpl/pop_front.hpp",
- "boost/mpl/pop_front_fwd.hpp": "vendor/boost/include/boost/mpl/pop_front_fwd.hpp",
- "boost/mpl/prior.hpp": "vendor/boost/include/boost/mpl/prior.hpp",
- "boost/mpl/protect.hpp": "vendor/boost/include/boost/mpl/protect.hpp",
- "boost/mpl/push_back.hpp": "vendor/boost/include/boost/mpl/push_back.hpp",
- "boost/mpl/push_back_fwd.hpp": "vendor/boost/include/boost/mpl/push_back_fwd.hpp",
- "boost/mpl/push_front.hpp": "vendor/boost/include/boost/mpl/push_front.hpp",
- "boost/mpl/push_front_fwd.hpp": "vendor/boost/include/boost/mpl/push_front_fwd.hpp",
- "boost/mpl/quote.hpp": "vendor/boost/include/boost/mpl/quote.hpp",
- "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/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",
- "boost/mpl/set.hpp": "vendor/boost/include/boost/mpl/set.hpp",
- "boost/mpl/set/aux_/at_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/at_impl.hpp",
- "boost/mpl/set/aux_/begin_end_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/begin_end_impl.hpp",
- "boost/mpl/set/aux_/clear_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/clear_impl.hpp",
- "boost/mpl/set/aux_/empty_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/empty_impl.hpp",
- "boost/mpl/set/aux_/erase_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/erase_impl.hpp",
- "boost/mpl/set/aux_/erase_key_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/erase_key_impl.hpp",
- "boost/mpl/set/aux_/has_key_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/has_key_impl.hpp",
- "boost/mpl/set/aux_/include_preprocessed.hpp": "vendor/boost/include/boost/mpl/set/aux_/include_preprocessed.hpp",
- "boost/mpl/set/aux_/insert_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/insert_impl.hpp",
- "boost/mpl/set/aux_/insert_range_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/insert_range_impl.hpp",
- "boost/mpl/set/aux_/item.hpp": "vendor/boost/include/boost/mpl/set/aux_/item.hpp",
- "boost/mpl/set/aux_/iterator.hpp": "vendor/boost/include/boost/mpl/set/aux_/iterator.hpp",
- "boost/mpl/set/aux_/key_type_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/key_type_impl.hpp",
- "boost/mpl/set/aux_/numbered.hpp": "vendor/boost/include/boost/mpl/set/aux_/numbered.hpp",
- "boost/mpl/set/aux_/numbered_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/numbered_c.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set10.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set10.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set20.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set20.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set30.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set30.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set40.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set40.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set50.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set50.hpp",
- "boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp": "vendor/boost/include/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp",
- "boost/mpl/set/aux_/set0.hpp": "vendor/boost/include/boost/mpl/set/aux_/set0.hpp",
- "boost/mpl/set/aux_/size_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/size_impl.hpp",
- "boost/mpl/set/aux_/tag.hpp": "vendor/boost/include/boost/mpl/set/aux_/tag.hpp",
- "boost/mpl/set/aux_/value_type_impl.hpp": "vendor/boost/include/boost/mpl/set/aux_/value_type_impl.hpp",
- "boost/mpl/set/set0.hpp": "vendor/boost/include/boost/mpl/set/set0.hpp",
- "boost/mpl/set/set0_c.hpp": "vendor/boost/include/boost/mpl/set/set0_c.hpp",
- "boost/mpl/set/set10.hpp": "vendor/boost/include/boost/mpl/set/set10.hpp",
- "boost/mpl/set/set10_c.hpp": "vendor/boost/include/boost/mpl/set/set10_c.hpp",
- "boost/mpl/set/set20.hpp": "vendor/boost/include/boost/mpl/set/set20.hpp",
- "boost/mpl/set/set20_c.hpp": "vendor/boost/include/boost/mpl/set/set20_c.hpp",
- "boost/mpl/set/set30.hpp": "vendor/boost/include/boost/mpl/set/set30.hpp",
- "boost/mpl/set/set30_c.hpp": "vendor/boost/include/boost/mpl/set/set30_c.hpp",
- "boost/mpl/set/set40.hpp": "vendor/boost/include/boost/mpl/set/set40.hpp",
- "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/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",
- "boost/mpl/size_t_fwd.hpp": "vendor/boost/include/boost/mpl/size_t_fwd.hpp",
- "boost/mpl/sizeof.hpp": "vendor/boost/include/boost/mpl/sizeof.hpp",
- "boost/mpl/tag.hpp": "vendor/boost/include/boost/mpl/tag.hpp",
- "boost/mpl/times.hpp": "vendor/boost/include/boost/mpl/times.hpp",
- "boost/mpl/transform.hpp": "vendor/boost/include/boost/mpl/transform.hpp",
- "boost/mpl/transform_view.hpp": "vendor/boost/include/boost/mpl/transform_view.hpp",
- "boost/mpl/unpack_args.hpp": "vendor/boost/include/boost/mpl/unpack_args.hpp",
- "boost/mpl/value_type_fwd.hpp": "vendor/boost/include/boost/mpl/value_type_fwd.hpp",
- "boost/mpl/vector.hpp": "vendor/boost/include/boost/mpl/vector.hpp",
- "boost/mpl/vector/aux_/O1_size.hpp": "vendor/boost/include/boost/mpl/vector/aux_/O1_size.hpp",
- "boost/mpl/vector/aux_/at.hpp": "vendor/boost/include/boost/mpl/vector/aux_/at.hpp",
- "boost/mpl/vector/aux_/back.hpp": "vendor/boost/include/boost/mpl/vector/aux_/back.hpp",
- "boost/mpl/vector/aux_/begin_end.hpp": "vendor/boost/include/boost/mpl/vector/aux_/begin_end.hpp",
- "boost/mpl/vector/aux_/clear.hpp": "vendor/boost/include/boost/mpl/vector/aux_/clear.hpp",
- "boost/mpl/vector/aux_/empty.hpp": "vendor/boost/include/boost/mpl/vector/aux_/empty.hpp",
- "boost/mpl/vector/aux_/front.hpp": "vendor/boost/include/boost/mpl/vector/aux_/front.hpp",
- "boost/mpl/vector/aux_/include_preprocessed.hpp": "vendor/boost/include/boost/mpl/vector/aux_/include_preprocessed.hpp",
- "boost/mpl/vector/aux_/item.hpp": "vendor/boost/include/boost/mpl/vector/aux_/item.hpp",
- "boost/mpl/vector/aux_/iterator.hpp": "vendor/boost/include/boost/mpl/vector/aux_/iterator.hpp",
- "boost/mpl/vector/aux_/numbered.hpp": "vendor/boost/include/boost/mpl/vector/aux_/numbered.hpp",
- "boost/mpl/vector/aux_/numbered_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/numbered_c.hpp",
- "boost/mpl/vector/aux_/pop_back.hpp": "vendor/boost/include/boost/mpl/vector/aux_/pop_back.hpp",
- "boost/mpl/vector/aux_/pop_front.hpp": "vendor/boost/include/boost/mpl/vector/aux_/pop_front.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp",
- "boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp",
- "boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp",
- "boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp": "vendor/boost/include/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp",
- "boost/mpl/vector/aux_/push_back.hpp": "vendor/boost/include/boost/mpl/vector/aux_/push_back.hpp",
- "boost/mpl/vector/aux_/push_front.hpp": "vendor/boost/include/boost/mpl/vector/aux_/push_front.hpp",
- "boost/mpl/vector/aux_/size.hpp": "vendor/boost/include/boost/mpl/vector/aux_/size.hpp",
- "boost/mpl/vector/aux_/tag.hpp": "vendor/boost/include/boost/mpl/vector/aux_/tag.hpp",
- "boost/mpl/vector/aux_/vector0.hpp": "vendor/boost/include/boost/mpl/vector/aux_/vector0.hpp",
- "boost/mpl/vector/vector0.hpp": "vendor/boost/include/boost/mpl/vector/vector0.hpp",
- "boost/mpl/vector/vector0_c.hpp": "vendor/boost/include/boost/mpl/vector/vector0_c.hpp",
- "boost/mpl/vector/vector10.hpp": "vendor/boost/include/boost/mpl/vector/vector10.hpp",
- "boost/mpl/vector/vector10_c.hpp": "vendor/boost/include/boost/mpl/vector/vector10_c.hpp",
- "boost/mpl/vector/vector20.hpp": "vendor/boost/include/boost/mpl/vector/vector20.hpp",
- "boost/mpl/vector/vector20_c.hpp": "vendor/boost/include/boost/mpl/vector/vector20_c.hpp",
- "boost/mpl/vector/vector30.hpp": "vendor/boost/include/boost/mpl/vector/vector30.hpp",
- "boost/mpl/vector/vector30_c.hpp": "vendor/boost/include/boost/mpl/vector/vector30_c.hpp",
- "boost/mpl/vector/vector40.hpp": "vendor/boost/include/boost/mpl/vector/vector40.hpp",
- "boost/mpl/vector/vector40_c.hpp": "vendor/boost/include/boost/mpl/vector/vector40_c.hpp",
- "boost/mpl/vector/vector50.hpp": "vendor/boost/include/boost/mpl/vector/vector50.hpp",
- "boost/mpl/vector/vector50_c.hpp": "vendor/boost/include/boost/mpl/vector/vector50_c.hpp",
- "boost/mpl/vector_c.hpp": "vendor/boost/include/boost/mpl/vector_c.hpp",
- "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/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",
- "boost/multiprecision/cpp_int/checked.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/checked.hpp",
- "boost/multiprecision/cpp_int/comparison.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/comparison.hpp",
- "boost/multiprecision/cpp_int/cpp_int_config.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/cpp_int_config.hpp",
- "boost/multiprecision/cpp_int/divide.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/divide.hpp",
- "boost/multiprecision/cpp_int/import_export.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/import_export.hpp",
- "boost/multiprecision/cpp_int/limits.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/limits.hpp",
- "boost/multiprecision/cpp_int/literals.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/literals.hpp",
- "boost/multiprecision/cpp_int/misc.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/misc.hpp",
- "boost/multiprecision/cpp_int/multiply.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/multiply.hpp",
- "boost/multiprecision/cpp_int/serialize.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/serialize.hpp",
- "boost/multiprecision/cpp_int/value_pack.hpp": "vendor/boost/include/boost/multiprecision/cpp_int/value_pack.hpp",
- "boost/multiprecision/detail/bitscan.hpp": "vendor/boost/include/boost/multiprecision/detail/bitscan.hpp",
- "boost/multiprecision/detail/default_ops.hpp": "vendor/boost/include/boost/multiprecision/detail/default_ops.hpp",
- "boost/multiprecision/detail/et_ops.hpp": "vendor/boost/include/boost/multiprecision/detail/et_ops.hpp",
- "boost/multiprecision/detail/functions/constants.hpp": "vendor/boost/include/boost/multiprecision/detail/functions/constants.hpp",
- "boost/multiprecision/detail/functions/pow.hpp": "vendor/boost/include/boost/multiprecision/detail/functions/pow.hpp",
- "boost/multiprecision/detail/functions/trig.hpp": "vendor/boost/include/boost/multiprecision/detail/functions/trig.hpp",
- "boost/multiprecision/detail/generic_interconvert.hpp": "vendor/boost/include/boost/multiprecision/detail/generic_interconvert.hpp",
- "boost/multiprecision/detail/integer_ops.hpp": "vendor/boost/include/boost/multiprecision/detail/integer_ops.hpp",
- "boost/multiprecision/detail/min_max.hpp": "vendor/boost/include/boost/multiprecision/detail/min_max.hpp",
- "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",
- "boost/multiprecision/traits/explicit_conversion.hpp": "vendor/boost/include/boost/multiprecision/traits/explicit_conversion.hpp",
- "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",
- "boost/none.hpp": "vendor/boost/include/boost/none.hpp",
- "boost/none_t.hpp": "vendor/boost/include/boost/none_t.hpp",
- "boost/numeric/conversion/bounds.hpp": "vendor/boost/include/boost/numeric/conversion/bounds.hpp",
- "boost/numeric/conversion/cast.hpp": "vendor/boost/include/boost/numeric/conversion/cast.hpp",
- "boost/numeric/conversion/conversion_traits.hpp": "vendor/boost/include/boost/numeric/conversion/conversion_traits.hpp",
- "boost/numeric/conversion/converter.hpp": "vendor/boost/include/boost/numeric/conversion/converter.hpp",
- "boost/numeric/conversion/converter_policies.hpp": "vendor/boost/include/boost/numeric/conversion/converter_policies.hpp",
- "boost/numeric/conversion/detail/bounds.hpp": "vendor/boost/include/boost/numeric/conversion/detail/bounds.hpp",
- "boost/numeric/conversion/detail/conversion_traits.hpp": "vendor/boost/include/boost/numeric/conversion/detail/conversion_traits.hpp",
- "boost/numeric/conversion/detail/converter.hpp": "vendor/boost/include/boost/numeric/conversion/detail/converter.hpp",
- "boost/numeric/conversion/detail/int_float_mixture.hpp": "vendor/boost/include/boost/numeric/conversion/detail/int_float_mixture.hpp",
- "boost/numeric/conversion/detail/is_subranged.hpp": "vendor/boost/include/boost/numeric/conversion/detail/is_subranged.hpp",
- "boost/numeric/conversion/detail/meta.hpp": "vendor/boost/include/boost/numeric/conversion/detail/meta.hpp",
- "boost/numeric/conversion/detail/numeric_cast_traits.hpp": "vendor/boost/include/boost/numeric/conversion/detail/numeric_cast_traits.hpp",
- "boost/numeric/conversion/detail/old_numeric_cast.hpp": "vendor/boost/include/boost/numeric/conversion/detail/old_numeric_cast.hpp",
- "boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp": "vendor/boost/include/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp",
- "boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp": "vendor/boost/include/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp",
- "boost/numeric/conversion/detail/sign_mixture.hpp": "vendor/boost/include/boost/numeric/conversion/detail/sign_mixture.hpp",
- "boost/numeric/conversion/detail/udt_builtin_mixture.hpp": "vendor/boost/include/boost/numeric/conversion/detail/udt_builtin_mixture.hpp",
- "boost/numeric/conversion/int_float_mixture_enum.hpp": "vendor/boost/include/boost/numeric/conversion/int_float_mixture_enum.hpp",
- "boost/numeric/conversion/numeric_cast_traits.hpp": "vendor/boost/include/boost/numeric/conversion/numeric_cast_traits.hpp",
- "boost/numeric/conversion/sign_mixture_enum.hpp": "vendor/boost/include/boost/numeric/conversion/sign_mixture_enum.hpp",
- "boost/numeric/conversion/udt_builtin_mixture_enum.hpp": "vendor/boost/include/boost/numeric/conversion/udt_builtin_mixture_enum.hpp",
- "boost/operators.hpp": "vendor/boost/include/boost/operators.hpp",
- "boost/optional.hpp": "vendor/boost/include/boost/optional.hpp",
- "boost/optional/bad_optional_access.hpp": "vendor/boost/include/boost/optional/bad_optional_access.hpp",
- "boost/optional/detail/old_optional_implementation.hpp": "vendor/boost/include/boost/optional/detail/old_optional_implementation.hpp",
- "boost/optional/detail/optional_aligned_storage.hpp": "vendor/boost/include/boost/optional/detail/optional_aligned_storage.hpp",
- "boost/optional/detail/optional_config.hpp": "vendor/boost/include/boost/optional/detail/optional_config.hpp",
- "boost/optional/detail/optional_factory_support.hpp": "vendor/boost/include/boost/optional/detail/optional_factory_support.hpp",
- "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/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",
- "boost/phoenix/core/argument.hpp": "vendor/boost/include/boost/phoenix/core/argument.hpp",
- "boost/phoenix/core/as_actor.hpp": "vendor/boost/include/boost/phoenix/core/as_actor.hpp",
- "boost/phoenix/core/call.hpp": "vendor/boost/include/boost/phoenix/core/call.hpp",
- "boost/phoenix/core/debug.hpp": "vendor/boost/include/boost/phoenix/core/debug.hpp",
- "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/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",
- "boost/phoenix/core/detail/cpp03/function_eval.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/function_eval.hpp",
- "boost/phoenix/core/detail/cpp03/function_eval_expr.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/function_eval_expr.hpp",
- "boost/phoenix/core/detail/cpp03/phx2_result.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/phx2_result.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp",
- "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/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",
- "boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_equal_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_equal_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_10.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_10.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_20.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_20.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_30.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_30.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_40.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_40.hpp",
- "boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_50.hpp": "vendor/boost/include/boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_50.hpp",
- "boost/phoenix/core/detail/expression.hpp": "vendor/boost/include/boost/phoenix/core/detail/expression.hpp",
- "boost/phoenix/core/detail/function_eval.hpp": "vendor/boost/include/boost/phoenix/core/detail/function_eval.hpp",
- "boost/phoenix/core/detail/index_sequence.hpp": "vendor/boost/include/boost/phoenix/core/detail/index_sequence.hpp",
- "boost/phoenix/core/detail/phx2_result.hpp": "vendor/boost/include/boost/phoenix/core/detail/phx2_result.hpp",
- "boost/phoenix/core/domain.hpp": "vendor/boost/include/boost/phoenix/core/domain.hpp",
- "boost/phoenix/core/environment.hpp": "vendor/boost/include/boost/phoenix/core/environment.hpp",
- "boost/phoenix/core/expression.hpp": "vendor/boost/include/boost/phoenix/core/expression.hpp",
- "boost/phoenix/core/function_equal.hpp": "vendor/boost/include/boost/phoenix/core/function_equal.hpp",
- "boost/phoenix/core/is_actor.hpp": "vendor/boost/include/boost/phoenix/core/is_actor.hpp",
- "boost/phoenix/core/is_nullary.hpp": "vendor/boost/include/boost/phoenix/core/is_nullary.hpp",
- "boost/phoenix/core/is_value.hpp": "vendor/boost/include/boost/phoenix/core/is_value.hpp",
- "boost/phoenix/core/limits.hpp": "vendor/boost/include/boost/phoenix/core/limits.hpp",
- "boost/phoenix/core/meta_grammar.hpp": "vendor/boost/include/boost/phoenix/core/meta_grammar.hpp",
- "boost/phoenix/core/nothing.hpp": "vendor/boost/include/boost/phoenix/core/nothing.hpp",
- "boost/phoenix/core/reference.hpp": "vendor/boost/include/boost/phoenix/core/reference.hpp",
- "boost/phoenix/core/terminal.hpp": "vendor/boost/include/boost/phoenix/core/terminal.hpp",
- "boost/phoenix/core/terminal_fwd.hpp": "vendor/boost/include/boost/phoenix/core/terminal_fwd.hpp",
- "boost/phoenix/core/v2_eval.hpp": "vendor/boost/include/boost/phoenix/core/v2_eval.hpp",
- "boost/phoenix/core/value.hpp": "vendor/boost/include/boost/phoenix/core/value.hpp",
- "boost/phoenix/core/visit_each.hpp": "vendor/boost/include/boost/phoenix/core/visit_each.hpp",
- "boost/phoenix/function.hpp": "vendor/boost/include/boost/phoenix/function.hpp",
- "boost/phoenix/function/adapt_callable.hpp": "vendor/boost/include/boost/phoenix/function/adapt_callable.hpp",
- "boost/phoenix/function/adapt_function.hpp": "vendor/boost/include/boost/phoenix/function/adapt_function.hpp",
- "boost/phoenix/function/detail/cpp03/function_operator.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/function_operator.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator_10.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_10.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator_20.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_20.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator_30.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_30.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator_40.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_40.hpp",
- "boost/phoenix/function/detail/cpp03/preprocessed/function_operator_50.hpp": "vendor/boost/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_50.hpp",
- "boost/phoenix/function/function.hpp": "vendor/boost/include/boost/phoenix/function/function.hpp",
- "boost/phoenix/operator.hpp": "vendor/boost/include/boost/phoenix/operator.hpp",
- "boost/phoenix/operator/arithmetic.hpp": "vendor/boost/include/boost/phoenix/operator/arithmetic.hpp",
- "boost/phoenix/operator/bitwise.hpp": "vendor/boost/include/boost/phoenix/operator/bitwise.hpp",
- "boost/phoenix/operator/comparison.hpp": "vendor/boost/include/boost/phoenix/operator/comparison.hpp",
- "boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp",
- "boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp",
- "boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp",
- "boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp",
- "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",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp",
- "boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp": "vendor/boost/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp",
- "boost/phoenix/operator/detail/define_operator.hpp": "vendor/boost/include/boost/phoenix/operator/detail/define_operator.hpp",
- "boost/phoenix/operator/detail/undef_operator.hpp": "vendor/boost/include/boost/phoenix/operator/detail/undef_operator.hpp",
- "boost/phoenix/operator/if_else.hpp": "vendor/boost/include/boost/phoenix/operator/if_else.hpp",
- "boost/phoenix/operator/io.hpp": "vendor/boost/include/boost/phoenix/operator/io.hpp",
- "boost/phoenix/operator/logical.hpp": "vendor/boost/include/boost/phoenix/operator/logical.hpp",
- "boost/phoenix/operator/member.hpp": "vendor/boost/include/boost/phoenix/operator/member.hpp",
- "boost/phoenix/operator/self.hpp": "vendor/boost/include/boost/phoenix/operator/self.hpp",
- "boost/phoenix/scope/detail/local_variable.hpp": "vendor/boost/include/boost/phoenix/scope/detail/local_variable.hpp",
- "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_define.hpp": "vendor/boost/include/boost/phoenix/support/detail/iterate_define.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",
- "boost/phoenix/support/preprocessed/vector_20.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector_20.hpp",
- "boost/phoenix/support/preprocessed/vector_30.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector_30.hpp",
- "boost/phoenix/support/preprocessed/vector_40.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector_40.hpp",
- "boost/phoenix/support/preprocessed/vector_50.hpp": "vendor/boost/include/boost/phoenix/support/preprocessed/vector_50.hpp",
- "boost/phoenix/support/preprocessor/round.hpp": "vendor/boost/include/boost/phoenix/support/preprocessor/round.hpp",
- "boost/phoenix/support/vector.hpp": "vendor/boost/include/boost/phoenix/support/vector.hpp",
- "boost/phoenix/version.hpp": "vendor/boost/include/boost/phoenix/version.hpp",
- "boost/predef.h": "vendor/boost/include/boost/predef.h",
- "boost/predef/architecture.h": "vendor/boost/include/boost/predef/architecture.h",
- "boost/predef/architecture/alpha.h": "vendor/boost/include/boost/predef/architecture/alpha.h",
- "boost/predef/architecture/arm.h": "vendor/boost/include/boost/predef/architecture/arm.h",
- "boost/predef/architecture/blackfin.h": "vendor/boost/include/boost/predef/architecture/blackfin.h",
- "boost/predef/architecture/convex.h": "vendor/boost/include/boost/predef/architecture/convex.h",
- "boost/predef/architecture/ia64.h": "vendor/boost/include/boost/predef/architecture/ia64.h",
- "boost/predef/architecture/m68k.h": "vendor/boost/include/boost/predef/architecture/m68k.h",
- "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",
- "boost/predef/architecture/superh.h": "vendor/boost/include/boost/predef/architecture/superh.h",
- "boost/predef/architecture/sys370.h": "vendor/boost/include/boost/predef/architecture/sys370.h",
- "boost/predef/architecture/sys390.h": "vendor/boost/include/boost/predef/architecture/sys390.h",
- "boost/predef/architecture/x86.h": "vendor/boost/include/boost/predef/architecture/x86.h",
- "boost/predef/architecture/x86/32.h": "vendor/boost/include/boost/predef/architecture/x86/32.h",
- "boost/predef/architecture/x86/64.h": "vendor/boost/include/boost/predef/architecture/x86/64.h",
- "boost/predef/architecture/z.h": "vendor/boost/include/boost/predef/architecture/z.h",
- "boost/predef/compiler.h": "vendor/boost/include/boost/predef/compiler.h",
- "boost/predef/compiler/borland.h": "vendor/boost/include/boost/predef/compiler/borland.h",
- "boost/predef/compiler/clang.h": "vendor/boost/include/boost/predef/compiler/clang.h",
- "boost/predef/compiler/comeau.h": "vendor/boost/include/boost/predef/compiler/comeau.h",
- "boost/predef/compiler/compaq.h": "vendor/boost/include/boost/predef/compiler/compaq.h",
- "boost/predef/compiler/diab.h": "vendor/boost/include/boost/predef/compiler/diab.h",
- "boost/predef/compiler/digitalmars.h": "vendor/boost/include/boost/predef/compiler/digitalmars.h",
- "boost/predef/compiler/dignus.h": "vendor/boost/include/boost/predef/compiler/dignus.h",
- "boost/predef/compiler/edg.h": "vendor/boost/include/boost/predef/compiler/edg.h",
- "boost/predef/compiler/ekopath.h": "vendor/boost/include/boost/predef/compiler/ekopath.h",
- "boost/predef/compiler/gcc.h": "vendor/boost/include/boost/predef/compiler/gcc.h",
- "boost/predef/compiler/gcc_xml.h": "vendor/boost/include/boost/predef/compiler/gcc_xml.h",
- "boost/predef/compiler/greenhills.h": "vendor/boost/include/boost/predef/compiler/greenhills.h",
- "boost/predef/compiler/hp_acc.h": "vendor/boost/include/boost/predef/compiler/hp_acc.h",
- "boost/predef/compiler/iar.h": "vendor/boost/include/boost/predef/compiler/iar.h",
- "boost/predef/compiler/ibm.h": "vendor/boost/include/boost/predef/compiler/ibm.h",
- "boost/predef/compiler/intel.h": "vendor/boost/include/boost/predef/compiler/intel.h",
- "boost/predef/compiler/kai.h": "vendor/boost/include/boost/predef/compiler/kai.h",
- "boost/predef/compiler/llvm.h": "vendor/boost/include/boost/predef/compiler/llvm.h",
- "boost/predef/compiler/metaware.h": "vendor/boost/include/boost/predef/compiler/metaware.h",
- "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",
- "boost/predef/compiler/sunpro.h": "vendor/boost/include/boost/predef/compiler/sunpro.h",
- "boost/predef/compiler/tendra.h": "vendor/boost/include/boost/predef/compiler/tendra.h",
- "boost/predef/compiler/visualc.h": "vendor/boost/include/boost/predef/compiler/visualc.h",
- "boost/predef/compiler/watcom.h": "vendor/boost/include/boost/predef/compiler/watcom.h",
- "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/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",
- "boost/predef/hardware.h": "vendor/boost/include/boost/predef/hardware.h",
- "boost/predef/hardware/simd.h": "vendor/boost/include/boost/predef/hardware/simd.h",
- "boost/predef/hardware/simd/arm.h": "vendor/boost/include/boost/predef/hardware/simd/arm.h",
- "boost/predef/hardware/simd/arm/versions.h": "vendor/boost/include/boost/predef/hardware/simd/arm/versions.h",
- "boost/predef/hardware/simd/ppc.h": "vendor/boost/include/boost/predef/hardware/simd/ppc.h",
- "boost/predef/hardware/simd/ppc/versions.h": "vendor/boost/include/boost/predef/hardware/simd/ppc/versions.h",
- "boost/predef/hardware/simd/x86.h": "vendor/boost/include/boost/predef/hardware/simd/x86.h",
- "boost/predef/hardware/simd/x86/versions.h": "vendor/boost/include/boost/predef/hardware/simd/x86/versions.h",
- "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",
- "boost/predef/library/c/zos.h": "vendor/boost/include/boost/predef/library/c/zos.h",
- "boost/predef/library/std.h": "vendor/boost/include/boost/predef/library/std.h",
- "boost/predef/library/std/_prefix.h": "vendor/boost/include/boost/predef/library/std/_prefix.h",
- "boost/predef/library/std/cxx.h": "vendor/boost/include/boost/predef/library/std/cxx.h",
- "boost/predef/library/std/dinkumware.h": "vendor/boost/include/boost/predef/library/std/dinkumware.h",
- "boost/predef/library/std/libcomo.h": "vendor/boost/include/boost/predef/library/std/libcomo.h",
- "boost/predef/library/std/modena.h": "vendor/boost/include/boost/predef/library/std/modena.h",
- "boost/predef/library/std/msl.h": "vendor/boost/include/boost/predef/library/std/msl.h",
- "boost/predef/library/std/roguewave.h": "vendor/boost/include/boost/predef/library/std/roguewave.h",
- "boost/predef/library/std/sgi.h": "vendor/boost/include/boost/predef/library/std/sgi.h",
- "boost/predef/library/std/stdcpp3.h": "vendor/boost/include/boost/predef/library/std/stdcpp3.h",
- "boost/predef/library/std/stlport.h": "vendor/boost/include/boost/predef/library/std/stlport.h",
- "boost/predef/library/std/vacpp.h": "vendor/boost/include/boost/predef/library/std/vacpp.h",
- "boost/predef/make.h": "vendor/boost/include/boost/predef/make.h",
- "boost/predef/os.h": "vendor/boost/include/boost/predef/os.h",
- "boost/predef/os/aix.h": "vendor/boost/include/boost/predef/os/aix.h",
- "boost/predef/os/amigaos.h": "vendor/boost/include/boost/predef/os/amigaos.h",
- "boost/predef/os/android.h": "vendor/boost/include/boost/predef/os/android.h",
- "boost/predef/os/beos.h": "vendor/boost/include/boost/predef/os/beos.h",
- "boost/predef/os/bsd.h": "vendor/boost/include/boost/predef/os/bsd.h",
- "boost/predef/os/bsd/bsdi.h": "vendor/boost/include/boost/predef/os/bsd/bsdi.h",
- "boost/predef/os/bsd/dragonfly.h": "vendor/boost/include/boost/predef/os/bsd/dragonfly.h",
- "boost/predef/os/bsd/free.h": "vendor/boost/include/boost/predef/os/bsd/free.h",
- "boost/predef/os/bsd/net.h": "vendor/boost/include/boost/predef/os/bsd/net.h",
- "boost/predef/os/bsd/open.h": "vendor/boost/include/boost/predef/os/bsd/open.h",
- "boost/predef/os/cygwin.h": "vendor/boost/include/boost/predef/os/cygwin.h",
- "boost/predef/os/haiku.h": "vendor/boost/include/boost/predef/os/haiku.h",
- "boost/predef/os/hpux.h": "vendor/boost/include/boost/predef/os/hpux.h",
- "boost/predef/os/ios.h": "vendor/boost/include/boost/predef/os/ios.h",
- "boost/predef/os/irix.h": "vendor/boost/include/boost/predef/os/irix.h",
- "boost/predef/os/linux.h": "vendor/boost/include/boost/predef/os/linux.h",
- "boost/predef/os/macos.h": "vendor/boost/include/boost/predef/os/macos.h",
- "boost/predef/os/os400.h": "vendor/boost/include/boost/predef/os/os400.h",
- "boost/predef/os/qnxnto.h": "vendor/boost/include/boost/predef/os/qnxnto.h",
- "boost/predef/os/solaris.h": "vendor/boost/include/boost/predef/os/solaris.h",
- "boost/predef/os/unix.h": "vendor/boost/include/boost/predef/os/unix.h",
- "boost/predef/os/vms.h": "vendor/boost/include/boost/predef/os/vms.h",
- "boost/predef/os/windows.h": "vendor/boost/include/boost/predef/os/windows.h",
- "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",
- "boost/preprocessor/arithmetic/dec.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/dec.hpp",
- "boost/preprocessor/arithmetic/detail/div_base.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/detail/div_base.hpp",
- "boost/preprocessor/arithmetic/inc.hpp": "vendor/boost/include/boost/preprocessor/arithmetic/inc.hpp",
- "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/elem.hpp": "vendor/boost/include/boost/preprocessor/array/elem.hpp",
- "boost/preprocessor/array/size.hpp": "vendor/boost/include/boost/preprocessor/array/size.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",
- "boost/preprocessor/comparison/greater.hpp": "vendor/boost/include/boost/preprocessor/comparison/greater.hpp",
- "boost/preprocessor/comparison/less.hpp": "vendor/boost/include/boost/preprocessor/comparison/less.hpp",
- "boost/preprocessor/comparison/less_equal.hpp": "vendor/boost/include/boost/preprocessor/comparison/less_equal.hpp",
- "boost/preprocessor/comparison/not_equal.hpp": "vendor/boost/include/boost/preprocessor/comparison/not_equal.hpp",
- "boost/preprocessor/config/config.hpp": "vendor/boost/include/boost/preprocessor/config/config.hpp",
- "boost/preprocessor/control/deduce_d.hpp": "vendor/boost/include/boost/preprocessor/control/deduce_d.hpp",
- "boost/preprocessor/control/detail/dmc/while.hpp": "vendor/boost/include/boost/preprocessor/control/detail/dmc/while.hpp",
- "boost/preprocessor/control/detail/edg/while.hpp": "vendor/boost/include/boost/preprocessor/control/detail/edg/while.hpp",
- "boost/preprocessor/control/detail/msvc/while.hpp": "vendor/boost/include/boost/preprocessor/control/detail/msvc/while.hpp",
- "boost/preprocessor/control/detail/while.hpp": "vendor/boost/include/boost/preprocessor/control/detail/while.hpp",
- "boost/preprocessor/control/expr_if.hpp": "vendor/boost/include/boost/preprocessor/control/expr_if.hpp",
- "boost/preprocessor/control/expr_iif.hpp": "vendor/boost/include/boost/preprocessor/control/expr_iif.hpp",
- "boost/preprocessor/control/if.hpp": "vendor/boost/include/boost/preprocessor/control/if.hpp",
- "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/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_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",
- "boost/preprocessor/enum.hpp": "vendor/boost/include/boost/preprocessor/enum.hpp",
- "boost/preprocessor/enum_params.hpp": "vendor/boost/include/boost/preprocessor/enum_params.hpp",
- "boost/preprocessor/enum_params_with_a_default.hpp": "vendor/boost/include/boost/preprocessor/enum_params_with_a_default.hpp",
- "boost/preprocessor/enum_shifted_params.hpp": "vendor/boost/include/boost/preprocessor/enum_shifted_params.hpp",
- "boost/preprocessor/expand.hpp": "vendor/boost/include/boost/preprocessor/expand.hpp",
- "boost/preprocessor/expr_if.hpp": "vendor/boost/include/boost/preprocessor/expr_if.hpp",
- "boost/preprocessor/facilities/detail/is_empty.hpp": "vendor/boost/include/boost/preprocessor/facilities/detail/is_empty.hpp",
- "boost/preprocessor/facilities/empty.hpp": "vendor/boost/include/boost/preprocessor/facilities/empty.hpp",
- "boost/preprocessor/facilities/expand.hpp": "vendor/boost/include/boost/preprocessor/facilities/expand.hpp",
- "boost/preprocessor/facilities/identity.hpp": "vendor/boost/include/boost/preprocessor/facilities/identity.hpp",
- "boost/preprocessor/facilities/intercept.hpp": "vendor/boost/include/boost/preprocessor/facilities/intercept.hpp",
- "boost/preprocessor/facilities/is_1.hpp": "vendor/boost/include/boost/preprocessor/facilities/is_1.hpp",
- "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/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",
- "boost/preprocessor/iterate.hpp": "vendor/boost/include/boost/preprocessor/iterate.hpp",
- "boost/preprocessor/iteration/detail/bounds/lower1.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/lower1.hpp",
- "boost/preprocessor/iteration/detail/bounds/lower2.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/lower2.hpp",
- "boost/preprocessor/iteration/detail/bounds/lower3.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/lower3.hpp",
- "boost/preprocessor/iteration/detail/bounds/lower4.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/lower4.hpp",
- "boost/preprocessor/iteration/detail/bounds/lower5.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/lower5.hpp",
- "boost/preprocessor/iteration/detail/bounds/upper1.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/upper1.hpp",
- "boost/preprocessor/iteration/detail/bounds/upper2.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/upper2.hpp",
- "boost/preprocessor/iteration/detail/bounds/upper3.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/upper3.hpp",
- "boost/preprocessor/iteration/detail/bounds/upper4.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/upper4.hpp",
- "boost/preprocessor/iteration/detail/bounds/upper5.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/bounds/upper5.hpp",
- "boost/preprocessor/iteration/detail/finish.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/finish.hpp",
- "boost/preprocessor/iteration/detail/iter/forward1.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/forward1.hpp",
- "boost/preprocessor/iteration/detail/iter/forward2.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/forward2.hpp",
- "boost/preprocessor/iteration/detail/iter/forward3.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/forward3.hpp",
- "boost/preprocessor/iteration/detail/iter/forward4.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/forward4.hpp",
- "boost/preprocessor/iteration/detail/iter/forward5.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/forward5.hpp",
- "boost/preprocessor/iteration/detail/iter/reverse1.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/reverse1.hpp",
- "boost/preprocessor/iteration/detail/iter/reverse2.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/reverse2.hpp",
- "boost/preprocessor/iteration/detail/iter/reverse3.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/reverse3.hpp",
- "boost/preprocessor/iteration/detail/iter/reverse4.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/reverse4.hpp",
- "boost/preprocessor/iteration/detail/iter/reverse5.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/iter/reverse5.hpp",
- "boost/preprocessor/iteration/detail/local.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/local.hpp",
- "boost/preprocessor/iteration/detail/rlocal.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/rlocal.hpp",
- "boost/preprocessor/iteration/detail/self.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/self.hpp",
- "boost/preprocessor/iteration/detail/start.hpp": "vendor/boost/include/boost/preprocessor/iteration/detail/start.hpp",
- "boost/preprocessor/iteration/iterate.hpp": "vendor/boost/include/boost/preprocessor/iteration/iterate.hpp",
- "boost/preprocessor/iteration/local.hpp": "vendor/boost/include/boost/preprocessor/iteration/local.hpp",
- "boost/preprocessor/iteration/self.hpp": "vendor/boost/include/boost/preprocessor/iteration/self.hpp",
- "boost/preprocessor/list/adt.hpp": "vendor/boost/include/boost/preprocessor/list/adt.hpp",
- "boost/preprocessor/list/detail/dmc/fold_left.hpp": "vendor/boost/include/boost/preprocessor/list/detail/dmc/fold_left.hpp",
- "boost/preprocessor/list/detail/edg/fold_left.hpp": "vendor/boost/include/boost/preprocessor/list/detail/edg/fold_left.hpp",
- "boost/preprocessor/list/detail/edg/fold_right.hpp": "vendor/boost/include/boost/preprocessor/list/detail/edg/fold_right.hpp",
- "boost/preprocessor/list/detail/fold_left.hpp": "vendor/boost/include/boost/preprocessor/list/detail/fold_left.hpp",
- "boost/preprocessor/list/detail/fold_right.hpp": "vendor/boost/include/boost/preprocessor/list/detail/fold_right.hpp",
- "boost/preprocessor/list/fold_left.hpp": "vendor/boost/include/boost/preprocessor/list/fold_left.hpp",
- "boost/preprocessor/list/fold_right.hpp": "vendor/boost/include/boost/preprocessor/list/fold_right.hpp",
- "boost/preprocessor/list/for_each_i.hpp": "vendor/boost/include/boost/preprocessor/list/for_each_i.hpp",
- "boost/preprocessor/list/reverse.hpp": "vendor/boost/include/boost/preprocessor/list/reverse.hpp",
- "boost/preprocessor/logical/and.hpp": "vendor/boost/include/boost/preprocessor/logical/and.hpp",
- "boost/preprocessor/logical/bitand.hpp": "vendor/boost/include/boost/preprocessor/logical/bitand.hpp",
- "boost/preprocessor/logical/bitor.hpp": "vendor/boost/include/boost/preprocessor/logical/bitor.hpp",
- "boost/preprocessor/logical/bool.hpp": "vendor/boost/include/boost/preprocessor/logical/bool.hpp",
- "boost/preprocessor/logical/compl.hpp": "vendor/boost/include/boost/preprocessor/logical/compl.hpp",
- "boost/preprocessor/logical/not.hpp": "vendor/boost/include/boost/preprocessor/logical/not.hpp",
- "boost/preprocessor/logical/or.hpp": "vendor/boost/include/boost/preprocessor/logical/or.hpp",
- "boost/preprocessor/punctuation/comma.hpp": "vendor/boost/include/boost/preprocessor/punctuation/comma.hpp",
- "boost/preprocessor/punctuation/comma_if.hpp": "vendor/boost/include/boost/preprocessor/punctuation/comma_if.hpp",
- "boost/preprocessor/punctuation/detail/is_begin_parens.hpp": "vendor/boost/include/boost/preprocessor/punctuation/detail/is_begin_parens.hpp",
- "boost/preprocessor/punctuation/is_begin_parens.hpp": "vendor/boost/include/boost/preprocessor/punctuation/is_begin_parens.hpp",
- "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/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",
- "boost/preprocessor/repetition/detail/msvc/for.hpp": "vendor/boost/include/boost/preprocessor/repetition/detail/msvc/for.hpp",
- "boost/preprocessor/repetition/enum.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum.hpp",
- "boost/preprocessor/repetition/enum_binary_params.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_binary_params.hpp",
- "boost/preprocessor/repetition/enum_params.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_params.hpp",
- "boost/preprocessor/repetition/enum_params_with_a_default.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_params_with_a_default.hpp",
- "boost/preprocessor/repetition/enum_shifted.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_shifted.hpp",
- "boost/preprocessor/repetition/enum_shifted_params.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_shifted_params.hpp",
- "boost/preprocessor/repetition/enum_trailing.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_trailing.hpp",
- "boost/preprocessor/repetition/enum_trailing_binary_params.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_trailing_binary_params.hpp",
- "boost/preprocessor/repetition/enum_trailing_params.hpp": "vendor/boost/include/boost/preprocessor/repetition/enum_trailing_params.hpp",
- "boost/preprocessor/repetition/for.hpp": "vendor/boost/include/boost/preprocessor/repetition/for.hpp",
- "boost/preprocessor/repetition/repeat.hpp": "vendor/boost/include/boost/preprocessor/repetition/repeat.hpp",
- "boost/preprocessor/repetition/repeat_from_to.hpp": "vendor/boost/include/boost/preprocessor/repetition/repeat_from_to.hpp",
- "boost/preprocessor/selection/max.hpp": "vendor/boost/include/boost/preprocessor/selection/max.hpp",
- "boost/preprocessor/seq/cat.hpp": "vendor/boost/include/boost/preprocessor/seq/cat.hpp",
- "boost/preprocessor/seq/detail/is_empty.hpp": "vendor/boost/include/boost/preprocessor/seq/detail/is_empty.hpp",
- "boost/preprocessor/seq/detail/split.hpp": "vendor/boost/include/boost/preprocessor/seq/detail/split.hpp",
- "boost/preprocessor/seq/elem.hpp": "vendor/boost/include/boost/preprocessor/seq/elem.hpp",
- "boost/preprocessor/seq/enum.hpp": "vendor/boost/include/boost/preprocessor/seq/enum.hpp",
- "boost/preprocessor/seq/first_n.hpp": "vendor/boost/include/boost/preprocessor/seq/first_n.hpp",
- "boost/preprocessor/seq/fold_left.hpp": "vendor/boost/include/boost/preprocessor/seq/fold_left.hpp",
- "boost/preprocessor/seq/for_each.hpp": "vendor/boost/include/boost/preprocessor/seq/for_each.hpp",
- "boost/preprocessor/seq/for_each_i.hpp": "vendor/boost/include/boost/preprocessor/seq/for_each_i.hpp",
- "boost/preprocessor/seq/for_each_product.hpp": "vendor/boost/include/boost/preprocessor/seq/for_each_product.hpp",
- "boost/preprocessor/seq/pop_back.hpp": "vendor/boost/include/boost/preprocessor/seq/pop_back.hpp",
- "boost/preprocessor/seq/push_back.hpp": "vendor/boost/include/boost/preprocessor/seq/push_back.hpp",
- "boost/preprocessor/seq/push_front.hpp": "vendor/boost/include/boost/preprocessor/seq/push_front.hpp",
- "boost/preprocessor/seq/rest_n.hpp": "vendor/boost/include/boost/preprocessor/seq/rest_n.hpp",
- "boost/preprocessor/seq/reverse.hpp": "vendor/boost/include/boost/preprocessor/seq/reverse.hpp",
- "boost/preprocessor/seq/seq.hpp": "vendor/boost/include/boost/preprocessor/seq/seq.hpp",
- "boost/preprocessor/seq/size.hpp": "vendor/boost/include/boost/preprocessor/seq/size.hpp",
- "boost/preprocessor/seq/subseq.hpp": "vendor/boost/include/boost/preprocessor/seq/subseq.hpp",
- "boost/preprocessor/seq/to_tuple.hpp": "vendor/boost/include/boost/preprocessor/seq/to_tuple.hpp",
- "boost/preprocessor/seq/transform.hpp": "vendor/boost/include/boost/preprocessor/seq/transform.hpp",
- "boost/preprocessor/slot/detail/counter.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/counter.hpp",
- "boost/preprocessor/slot/detail/def.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/def.hpp",
- "boost/preprocessor/slot/detail/shared.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/shared.hpp",
- "boost/preprocessor/slot/detail/slot1.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/slot1.hpp",
- "boost/preprocessor/slot/detail/slot2.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/slot2.hpp",
- "boost/preprocessor/slot/detail/slot3.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/slot3.hpp",
- "boost/preprocessor/slot/detail/slot4.hpp": "vendor/boost/include/boost/preprocessor/slot/detail/slot4.hpp",
- "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/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/rem.hpp": "vendor/boost/include/boost/preprocessor/tuple/rem.hpp",
- "boost/preprocessor/tuple/size.hpp": "vendor/boost/include/boost/preprocessor/tuple/size.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/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",
- "boost/proto/context/default.hpp": "vendor/boost/include/boost/proto/context/default.hpp",
- "boost/proto/context/detail/callable_eval.hpp": "vendor/boost/include/boost/proto/context/detail/callable_eval.hpp",
- "boost/proto/context/detail/default_eval.hpp": "vendor/boost/include/boost/proto/context/detail/default_eval.hpp",
- "boost/proto/context/detail/null_eval.hpp": "vendor/boost/include/boost/proto/context/detail/null_eval.hpp",
- "boost/proto/context/detail/preprocessed/callable_eval.hpp": "vendor/boost/include/boost/proto/context/detail/preprocessed/callable_eval.hpp",
- "boost/proto/context/detail/preprocessed/default_eval.hpp": "vendor/boost/include/boost/proto/context/detail/preprocessed/default_eval.hpp",
- "boost/proto/context/detail/preprocessed/null_eval.hpp": "vendor/boost/include/boost/proto/context/detail/preprocessed/null_eval.hpp",
- "boost/proto/context/null.hpp": "vendor/boost/include/boost/proto/context/null.hpp",
- "boost/proto/core.hpp": "vendor/boost/include/boost/proto/core.hpp",
- "boost/proto/debug.hpp": "vendor/boost/include/boost/proto/debug.hpp",
- "boost/proto/deep_copy.hpp": "vendor/boost/include/boost/proto/deep_copy.hpp",
- "boost/proto/detail/and_n.hpp": "vendor/boost/include/boost/proto/detail/and_n.hpp",
- "boost/proto/detail/any.hpp": "vendor/boost/include/boost/proto/detail/any.hpp",
- "boost/proto/detail/args.hpp": "vendor/boost/include/boost/proto/detail/args.hpp",
- "boost/proto/detail/as_expr.hpp": "vendor/boost/include/boost/proto/detail/as_expr.hpp",
- "boost/proto/detail/as_lvalue.hpp": "vendor/boost/include/boost/proto/detail/as_lvalue.hpp",
- "boost/proto/detail/basic_expr.hpp": "vendor/boost/include/boost/proto/detail/basic_expr.hpp",
- "boost/proto/detail/class_member_traits.hpp": "vendor/boost/include/boost/proto/detail/class_member_traits.hpp",
- "boost/proto/detail/decltype.hpp": "vendor/boost/include/boost/proto/detail/decltype.hpp",
- "boost/proto/detail/deduce_domain.hpp": "vendor/boost/include/boost/proto/detail/deduce_domain.hpp",
- "boost/proto/detail/deduce_domain_n.hpp": "vendor/boost/include/boost/proto/detail/deduce_domain_n.hpp",
- "boost/proto/detail/deep_copy.hpp": "vendor/boost/include/boost/proto/detail/deep_copy.hpp",
- "boost/proto/detail/deprecated.hpp": "vendor/boost/include/boost/proto/detail/deprecated.hpp",
- "boost/proto/detail/expr.hpp": "vendor/boost/include/boost/proto/detail/expr.hpp",
- "boost/proto/detail/expr_funop.hpp": "vendor/boost/include/boost/proto/detail/expr_funop.hpp",
- "boost/proto/detail/extends_funop.hpp": "vendor/boost/include/boost/proto/detail/extends_funop.hpp",
- "boost/proto/detail/extends_funop_const.hpp": "vendor/boost/include/boost/proto/detail/extends_funop_const.hpp",
- "boost/proto/detail/funop.hpp": "vendor/boost/include/boost/proto/detail/funop.hpp",
- "boost/proto/detail/generate_by_value.hpp": "vendor/boost/include/boost/proto/detail/generate_by_value.hpp",
- "boost/proto/detail/ignore_unused.hpp": "vendor/boost/include/boost/proto/detail/ignore_unused.hpp",
- "boost/proto/detail/is_noncopyable.hpp": "vendor/boost/include/boost/proto/detail/is_noncopyable.hpp",
- "boost/proto/detail/lambda_matches.hpp": "vendor/boost/include/boost/proto/detail/lambda_matches.hpp",
- "boost/proto/detail/local.hpp": "vendor/boost/include/boost/proto/detail/local.hpp",
- "boost/proto/detail/make_expr.hpp": "vendor/boost/include/boost/proto/detail/make_expr.hpp",
- "boost/proto/detail/make_expr_.hpp": "vendor/boost/include/boost/proto/detail/make_expr_.hpp",
- "boost/proto/detail/make_expr_funop.hpp": "vendor/boost/include/boost/proto/detail/make_expr_funop.hpp",
- "boost/proto/detail/matches_.hpp": "vendor/boost/include/boost/proto/detail/matches_.hpp",
- "boost/proto/detail/memfun_funop.hpp": "vendor/boost/include/boost/proto/detail/memfun_funop.hpp",
- "boost/proto/detail/or_n.hpp": "vendor/boost/include/boost/proto/detail/or_n.hpp",
- "boost/proto/detail/poly_function.hpp": "vendor/boost/include/boost/proto/detail/poly_function.hpp",
- "boost/proto/detail/poly_function_funop.hpp": "vendor/boost/include/boost/proto/detail/poly_function_funop.hpp",
- "boost/proto/detail/poly_function_traits.hpp": "vendor/boost/include/boost/proto/detail/poly_function_traits.hpp",
- "boost/proto/detail/preprocessed/and_n.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/and_n.hpp",
- "boost/proto/detail/preprocessed/args.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/args.hpp",
- "boost/proto/detail/preprocessed/basic_expr.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/basic_expr.hpp",
- "boost/proto/detail/preprocessed/class_member_traits.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/class_member_traits.hpp",
- "boost/proto/detail/preprocessed/deduce_domain_n.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/deduce_domain_n.hpp",
- "boost/proto/detail/preprocessed/deep_copy.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/deep_copy.hpp",
- "boost/proto/detail/preprocessed/expr.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/expr.hpp",
- "boost/proto/detail/preprocessed/expr_variadic.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/expr_variadic.hpp",
- "boost/proto/detail/preprocessed/extends_funop.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/extends_funop.hpp",
- "boost/proto/detail/preprocessed/extends_funop_const.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/extends_funop_const.hpp",
- "boost/proto/detail/preprocessed/funop.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/funop.hpp",
- "boost/proto/detail/preprocessed/generate_by_value.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/generate_by_value.hpp",
- "boost/proto/detail/preprocessed/lambda_matches.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/lambda_matches.hpp",
- "boost/proto/detail/preprocessed/make_expr.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/make_expr.hpp",
- "boost/proto/detail/preprocessed/make_expr_.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/make_expr_.hpp",
- "boost/proto/detail/preprocessed/make_expr_funop.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/make_expr_funop.hpp",
- "boost/proto/detail/preprocessed/matches_.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/matches_.hpp",
- "boost/proto/detail/preprocessed/memfun_funop.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/memfun_funop.hpp",
- "boost/proto/detail/preprocessed/or_n.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/or_n.hpp",
- "boost/proto/detail/preprocessed/poly_function_funop.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/poly_function_funop.hpp",
- "boost/proto/detail/preprocessed/poly_function_traits.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/poly_function_traits.hpp",
- "boost/proto/detail/preprocessed/template_arity_helper.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/template_arity_helper.hpp",
- "boost/proto/detail/preprocessed/traits.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/traits.hpp",
- "boost/proto/detail/preprocessed/unpack_expr_.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/unpack_expr_.hpp",
- "boost/proto/detail/preprocessed/vararg_matches_impl.hpp": "vendor/boost/include/boost/proto/detail/preprocessed/vararg_matches_impl.hpp",
- "boost/proto/detail/remove_typename.hpp": "vendor/boost/include/boost/proto/detail/remove_typename.hpp",
- "boost/proto/detail/static_const.hpp": "vendor/boost/include/boost/proto/detail/static_const.hpp",
- "boost/proto/detail/template_arity.hpp": "vendor/boost/include/boost/proto/detail/template_arity.hpp",
- "boost/proto/detail/template_arity_helper.hpp": "vendor/boost/include/boost/proto/detail/template_arity_helper.hpp",
- "boost/proto/detail/traits.hpp": "vendor/boost/include/boost/proto/detail/traits.hpp",
- "boost/proto/detail/unpack_expr_.hpp": "vendor/boost/include/boost/proto/detail/unpack_expr_.hpp",
- "boost/proto/detail/vararg_matches_impl.hpp": "vendor/boost/include/boost/proto/detail/vararg_matches_impl.hpp",
- "boost/proto/domain.hpp": "vendor/boost/include/boost/proto/domain.hpp",
- "boost/proto/eval.hpp": "vendor/boost/include/boost/proto/eval.hpp",
- "boost/proto/expr.hpp": "vendor/boost/include/boost/proto/expr.hpp",
- "boost/proto/extends.hpp": "vendor/boost/include/boost/proto/extends.hpp",
- "boost/proto/functional.hpp": "vendor/boost/include/boost/proto/functional.hpp",
- "boost/proto/functional/fusion.hpp": "vendor/boost/include/boost/proto/functional/fusion.hpp",
- "boost/proto/functional/fusion/at.hpp": "vendor/boost/include/boost/proto/functional/fusion/at.hpp",
- "boost/proto/functional/fusion/pop_back.hpp": "vendor/boost/include/boost/proto/functional/fusion/pop_back.hpp",
- "boost/proto/functional/fusion/pop_front.hpp": "vendor/boost/include/boost/proto/functional/fusion/pop_front.hpp",
- "boost/proto/functional/fusion/push_back.hpp": "vendor/boost/include/boost/proto/functional/fusion/push_back.hpp",
- "boost/proto/functional/fusion/push_front.hpp": "vendor/boost/include/boost/proto/functional/fusion/push_front.hpp",
- "boost/proto/functional/fusion/reverse.hpp": "vendor/boost/include/boost/proto/functional/fusion/reverse.hpp",
- "boost/proto/functional/range.hpp": "vendor/boost/include/boost/proto/functional/range.hpp",
- "boost/proto/functional/range/begin.hpp": "vendor/boost/include/boost/proto/functional/range/begin.hpp",
- "boost/proto/functional/range/empty.hpp": "vendor/boost/include/boost/proto/functional/range/empty.hpp",
- "boost/proto/functional/range/end.hpp": "vendor/boost/include/boost/proto/functional/range/end.hpp",
- "boost/proto/functional/range/rbegin.hpp": "vendor/boost/include/boost/proto/functional/range/rbegin.hpp",
- "boost/proto/functional/range/rend.hpp": "vendor/boost/include/boost/proto/functional/range/rend.hpp",
- "boost/proto/functional/range/size.hpp": "vendor/boost/include/boost/proto/functional/range/size.hpp",
- "boost/proto/functional/std.hpp": "vendor/boost/include/boost/proto/functional/std.hpp",
- "boost/proto/functional/std/iterator.hpp": "vendor/boost/include/boost/proto/functional/std/iterator.hpp",
- "boost/proto/functional/std/utility.hpp": "vendor/boost/include/boost/proto/functional/std/utility.hpp",
- "boost/proto/fusion.hpp": "vendor/boost/include/boost/proto/fusion.hpp",
- "boost/proto/generate.hpp": "vendor/boost/include/boost/proto/generate.hpp",
- "boost/proto/literal.hpp": "vendor/boost/include/boost/proto/literal.hpp",
- "boost/proto/make_expr.hpp": "vendor/boost/include/boost/proto/make_expr.hpp",
- "boost/proto/matches.hpp": "vendor/boost/include/boost/proto/matches.hpp",
- "boost/proto/operators.hpp": "vendor/boost/include/boost/proto/operators.hpp",
- "boost/proto/proto.hpp": "vendor/boost/include/boost/proto/proto.hpp",
- "boost/proto/proto_fwd.hpp": "vendor/boost/include/boost/proto/proto_fwd.hpp",
- "boost/proto/repeat.hpp": "vendor/boost/include/boost/proto/repeat.hpp",
- "boost/proto/tags.hpp": "vendor/boost/include/boost/proto/tags.hpp",
- "boost/proto/traits.hpp": "vendor/boost/include/boost/proto/traits.hpp",
- "boost/proto/transform.hpp": "vendor/boost/include/boost/proto/transform.hpp",
- "boost/proto/transform/arg.hpp": "vendor/boost/include/boost/proto/transform/arg.hpp",
- "boost/proto/transform/call.hpp": "vendor/boost/include/boost/proto/transform/call.hpp",
- "boost/proto/transform/default.hpp": "vendor/boost/include/boost/proto/transform/default.hpp",
- "boost/proto/transform/detail/call.hpp": "vendor/boost/include/boost/proto/transform/detail/call.hpp",
- "boost/proto/transform/detail/construct_funop.hpp": "vendor/boost/include/boost/proto/transform/detail/construct_funop.hpp",
- "boost/proto/transform/detail/construct_pod_funop.hpp": "vendor/boost/include/boost/proto/transform/detail/construct_pod_funop.hpp",
- "boost/proto/transform/detail/default_function_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/default_function_impl.hpp",
- "boost/proto/transform/detail/expand_pack.hpp": "vendor/boost/include/boost/proto/transform/detail/expand_pack.hpp",
- "boost/proto/transform/detail/fold_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/fold_impl.hpp",
- "boost/proto/transform/detail/lazy.hpp": "vendor/boost/include/boost/proto/transform/detail/lazy.hpp",
- "boost/proto/transform/detail/make.hpp": "vendor/boost/include/boost/proto/transform/detail/make.hpp",
- "boost/proto/transform/detail/make_gcc_workaround.hpp": "vendor/boost/include/boost/proto/transform/detail/make_gcc_workaround.hpp",
- "boost/proto/transform/detail/pack.hpp": "vendor/boost/include/boost/proto/transform/detail/pack.hpp",
- "boost/proto/transform/detail/pack_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/pack_impl.hpp",
- "boost/proto/transform/detail/pass_through_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/pass_through_impl.hpp",
- "boost/proto/transform/detail/preprocessed/call.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/call.hpp",
- "boost/proto/transform/detail/preprocessed/construct_funop.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/construct_funop.hpp",
- "boost/proto/transform/detail/preprocessed/construct_pod_funop.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/construct_pod_funop.hpp",
- "boost/proto/transform/detail/preprocessed/default_function_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/default_function_impl.hpp",
- "boost/proto/transform/detail/preprocessed/expand_pack.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/expand_pack.hpp",
- "boost/proto/transform/detail/preprocessed/fold_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/fold_impl.hpp",
- "boost/proto/transform/detail/preprocessed/lazy.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/lazy.hpp",
- "boost/proto/transform/detail/preprocessed/make.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/make.hpp",
- "boost/proto/transform/detail/preprocessed/make_gcc_workaround.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/make_gcc_workaround.hpp",
- "boost/proto/transform/detail/preprocessed/pack_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/pack_impl.hpp",
- "boost/proto/transform/detail/preprocessed/pass_through_impl.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/pass_through_impl.hpp",
- "boost/proto/transform/detail/preprocessed/when.hpp": "vendor/boost/include/boost/proto/transform/detail/preprocessed/when.hpp",
- "boost/proto/transform/detail/when.hpp": "vendor/boost/include/boost/proto/transform/detail/when.hpp",
- "boost/proto/transform/env.hpp": "vendor/boost/include/boost/proto/transform/env.hpp",
- "boost/proto/transform/fold.hpp": "vendor/boost/include/boost/proto/transform/fold.hpp",
- "boost/proto/transform/fold_tree.hpp": "vendor/boost/include/boost/proto/transform/fold_tree.hpp",
- "boost/proto/transform/impl.hpp": "vendor/boost/include/boost/proto/transform/impl.hpp",
- "boost/proto/transform/integral_c.hpp": "vendor/boost/include/boost/proto/transform/integral_c.hpp",
- "boost/proto/transform/lazy.hpp": "vendor/boost/include/boost/proto/transform/lazy.hpp",
- "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/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",
- "boost/qvm/deduce_vec.hpp": "vendor/boost/include/boost/qvm/deduce_vec.hpp",
- "boost/qvm/detail/cofactor_impl.hpp": "vendor/boost/include/boost/qvm/detail/cofactor_impl.hpp",
- "boost/qvm/detail/determinant_impl.hpp": "vendor/boost/include/boost/qvm/detail/determinant_impl.hpp",
- "boost/qvm/detail/mat_assign.hpp": "vendor/boost/include/boost/qvm/detail/mat_assign.hpp",
- "boost/qvm/detail/remove_const.hpp": "vendor/boost/include/boost/qvm/detail/remove_const.hpp",
- "boost/qvm/detail/transp_impl.hpp": "vendor/boost/include/boost/qvm/detail/transp_impl.hpp",
- "boost/qvm/enable_if.hpp": "vendor/boost/include/boost/qvm/enable_if.hpp",
- "boost/qvm/error.hpp": "vendor/boost/include/boost/qvm/error.hpp",
- "boost/qvm/gen/mat_assign2.hpp": "vendor/boost/include/boost/qvm/gen/mat_assign2.hpp",
- "boost/qvm/gen/mat_assign3.hpp": "vendor/boost/include/boost/qvm/gen/mat_assign3.hpp",
- "boost/qvm/gen/mat_assign4.hpp": "vendor/boost/include/boost/qvm/gen/mat_assign4.hpp",
- "boost/qvm/gen/mat_operations2.hpp": "vendor/boost/include/boost/qvm/gen/mat_operations2.hpp",
- "boost/qvm/gen/mat_operations3.hpp": "vendor/boost/include/boost/qvm/gen/mat_operations3.hpp",
- "boost/qvm/gen/mat_operations4.hpp": "vendor/boost/include/boost/qvm/gen/mat_operations4.hpp",
- "boost/qvm/inline.hpp": "vendor/boost/include/boost/qvm/inline.hpp",
- "boost/qvm/mat.hpp": "vendor/boost/include/boost/qvm/mat.hpp",
- "boost/qvm/mat_access.hpp": "vendor/boost/include/boost/qvm/mat_access.hpp",
- "boost/qvm/mat_operations.hpp": "vendor/boost/include/boost/qvm/mat_operations.hpp",
- "boost/qvm/mat_operations2.hpp": "vendor/boost/include/boost/qvm/mat_operations2.hpp",
- "boost/qvm/mat_operations3.hpp": "vendor/boost/include/boost/qvm/mat_operations3.hpp",
- "boost/qvm/mat_operations4.hpp": "vendor/boost/include/boost/qvm/mat_operations4.hpp",
- "boost/qvm/mat_traits.hpp": "vendor/boost/include/boost/qvm/mat_traits.hpp",
- "boost/qvm/mat_traits_array.hpp": "vendor/boost/include/boost/qvm/mat_traits_array.hpp",
- "boost/qvm/math.hpp": "vendor/boost/include/boost/qvm/math.hpp",
- "boost/qvm/quat_traits.hpp": "vendor/boost/include/boost/qvm/quat_traits.hpp",
- "boost/qvm/scalar_traits.hpp": "vendor/boost/include/boost/qvm/scalar_traits.hpp",
- "boost/qvm/static_assert.hpp": "vendor/boost/include/boost/qvm/static_assert.hpp",
- "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/reversed.hpp": "vendor/boost/include/boost/range/adaptor/reversed.hpp",
- "boost/range/algorithm/equal.hpp": "vendor/boost/include/boost/range/algorithm/equal.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",
- "boost/range/category.hpp": "vendor/boost/include/boost/range/category.hpp",
- "boost/range/concepts.hpp": "vendor/boost/include/boost/range/concepts.hpp",
- "boost/range/config.hpp": "vendor/boost/include/boost/range/config.hpp",
- "boost/range/const_iterator.hpp": "vendor/boost/include/boost/range/const_iterator.hpp",
- "boost/range/const_reverse_iterator.hpp": "vendor/boost/include/boost/range/const_reverse_iterator.hpp",
- "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/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",
- "boost/range/detail/has_member_size.hpp": "vendor/boost/include/boost/range/detail/has_member_size.hpp",
- "boost/range/detail/implementation_help.hpp": "vendor/boost/include/boost/range/detail/implementation_help.hpp",
- "boost/range/detail/misc_concept.hpp": "vendor/boost/include/boost/range/detail/misc_concept.hpp",
- "boost/range/detail/msvc_has_iterator_workaround.hpp": "vendor/boost/include/boost/range/detail/msvc_has_iterator_workaround.hpp",
- "boost/range/detail/range_return.hpp": "vendor/boost/include/boost/range/detail/range_return.hpp",
- "boost/range/detail/remove_extent.hpp": "vendor/boost/include/boost/range/detail/remove_extent.hpp",
- "boost/range/detail/safe_bool.hpp": "vendor/boost/include/boost/range/detail/safe_bool.hpp",
- "boost/range/detail/sfinae.hpp": "vendor/boost/include/boost/range/detail/sfinae.hpp",
- "boost/range/detail/size_type.hpp": "vendor/boost/include/boost/range/detail/size_type.hpp",
- "boost/range/detail/str_types.hpp": "vendor/boost/include/boost/range/detail/str_types.hpp",
- "boost/range/detail/value_type.hpp": "vendor/boost/include/boost/range/detail/value_type.hpp",
- "boost/range/difference_type.hpp": "vendor/boost/include/boost/range/difference_type.hpp",
- "boost/range/distance.hpp": "vendor/boost/include/boost/range/distance.hpp",
- "boost/range/empty.hpp": "vendor/boost/include/boost/range/empty.hpp",
- "boost/range/end.hpp": "vendor/boost/include/boost/range/end.hpp",
- "boost/range/functions.hpp": "vendor/boost/include/boost/range/functions.hpp",
- "boost/range/has_range_iterator.hpp": "vendor/boost/include/boost/range/has_range_iterator.hpp",
- "boost/range/iterator.hpp": "vendor/boost/include/boost/range/iterator.hpp",
- "boost/range/iterator_range.hpp": "vendor/boost/include/boost/range/iterator_range.hpp",
- "boost/range/iterator_range_core.hpp": "vendor/boost/include/boost/range/iterator_range_core.hpp",
- "boost/range/iterator_range_io.hpp": "vendor/boost/include/boost/range/iterator_range_io.hpp",
- "boost/range/metafunctions.hpp": "vendor/boost/include/boost/range/metafunctions.hpp",
- "boost/range/mutable_iterator.hpp": "vendor/boost/include/boost/range/mutable_iterator.hpp",
- "boost/range/pointer.hpp": "vendor/boost/include/boost/range/pointer.hpp",
- "boost/range/range_fwd.hpp": "vendor/boost/include/boost/range/range_fwd.hpp",
- "boost/range/rbegin.hpp": "vendor/boost/include/boost/range/rbegin.hpp",
- "boost/range/reference.hpp": "vendor/boost/include/boost/range/reference.hpp",
- "boost/range/rend.hpp": "vendor/boost/include/boost/range/rend.hpp",
- "boost/range/result_iterator.hpp": "vendor/boost/include/boost/range/result_iterator.hpp",
- "boost/range/reverse_iterator.hpp": "vendor/boost/include/boost/range/reverse_iterator.hpp",
- "boost/range/reverse_result_iterator.hpp": "vendor/boost/include/boost/range/reverse_result_iterator.hpp",
- "boost/range/size.hpp": "vendor/boost/include/boost/range/size.hpp",
- "boost/range/size_type.hpp": "vendor/boost/include/boost/range/size_type.hpp",
- "boost/range/sub_range.hpp": "vendor/boost/include/boost/range/sub_range.hpp",
- "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/pending/unicode_iterator.hpp": "vendor/boost/include/boost/regex/pending/unicode_iterator.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/split_member.hpp": "vendor/boost/include/boost/serialization/split_member.hpp",
- "boost/serialization/version.hpp": "vendor/boost/include/boost/serialization/version.hpp",
- "boost/shared_ptr.hpp": "vendor/boost/include/boost/shared_ptr.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",
- "boost/smart_ptr/detail/atomic_count_gcc_x86.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp",
- "boost/smart_ptr/detail/atomic_count_nt.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_nt.hpp",
- "boost/smart_ptr/detail/atomic_count_pt.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_pt.hpp",
- "boost/smart_ptr/detail/atomic_count_spin.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_spin.hpp",
- "boost/smart_ptr/detail/atomic_count_std_atomic.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_std_atomic.hpp",
- "boost/smart_ptr/detail/atomic_count_sync.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_sync.hpp",
- "boost/smart_ptr/detail/atomic_count_win32.hpp": "vendor/boost/include/boost/smart_ptr/detail/atomic_count_win32.hpp",
- "boost/smart_ptr/detail/lightweight_mutex.hpp": "vendor/boost/include/boost/smart_ptr/detail/lightweight_mutex.hpp",
- "boost/smart_ptr/detail/local_counted_base.hpp": "vendor/boost/include/boost/smart_ptr/detail/local_counted_base.hpp",
- "boost/smart_ptr/detail/local_sp_deleter.hpp": "vendor/boost/include/boost/smart_ptr/detail/local_sp_deleter.hpp",
- "boost/smart_ptr/detail/lwm_nop.hpp": "vendor/boost/include/boost/smart_ptr/detail/lwm_nop.hpp",
- "boost/smart_ptr/detail/lwm_pthreads.hpp": "vendor/boost/include/boost/smart_ptr/detail/lwm_pthreads.hpp",
- "boost/smart_ptr/detail/lwm_win32_cs.hpp": "vendor/boost/include/boost/smart_ptr/detail/lwm_win32_cs.hpp",
- "boost/smart_ptr/detail/operator_bool.hpp": "vendor/boost/include/boost/smart_ptr/detail/operator_bool.hpp",
- "boost/smart_ptr/detail/quick_allocator.hpp": "vendor/boost/include/boost/smart_ptr/detail/quick_allocator.hpp",
- "boost/smart_ptr/detail/shared_count.hpp": "vendor/boost/include/boost/smart_ptr/detail/shared_count.hpp",
- "boost/smart_ptr/detail/sp_convertible.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_convertible.hpp",
- "boost/smart_ptr/detail/sp_counted_base.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base.hpp",
- "boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp",
- "boost/smart_ptr/detail/sp_counted_base_aix.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp",
- "boost/smart_ptr/detail/sp_counted_base_clang.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp",
- "boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp",
- "boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp",
- "boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp",
- "boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp",
- "boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp",
- "boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp",
- "boost/smart_ptr/detail/sp_counted_base_nt.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp",
- "boost/smart_ptr/detail/sp_counted_base_pt.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp",
- "boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp",
- "boost/smart_ptr/detail/sp_counted_base_spin.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp",
- "boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp",
- "boost/smart_ptr/detail/sp_counted_base_sync.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp",
- "boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp",
- "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_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",
- "boost/smart_ptr/detail/sp_nullptr_t.hpp": "vendor/boost/include/boost/smart_ptr/detail/sp_nullptr_t.hpp",
- "boost/smart_ptr/detail/spinlock.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock.hpp",
- "boost/smart_ptr/detail/spinlock_gcc_arm.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp",
- "boost/smart_ptr/detail/spinlock_nt.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_nt.hpp",
- "boost/smart_ptr/detail/spinlock_pool.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_pool.hpp",
- "boost/smart_ptr/detail/spinlock_pt.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_pt.hpp",
- "boost/smart_ptr/detail/spinlock_std_atomic.hpp": "vendor/boost/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp",
- "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/scoped_ptr.hpp": "vendor/boost/include/boost/smart_ptr/scoped_ptr.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",
- "boost/spirit/home/qi/action/action.hpp": "vendor/boost/include/boost/spirit/home/qi/action/action.hpp",
- "boost/spirit/home/qi/auto.hpp": "vendor/boost/include/boost/spirit/home/qi/auto.hpp",
- "boost/spirit/home/qi/auto/auto.hpp": "vendor/boost/include/boost/spirit/home/qi/auto/auto.hpp",
- "boost/spirit/home/qi/auto/create_parser.hpp": "vendor/boost/include/boost/spirit/home/qi/auto/create_parser.hpp",
- "boost/spirit/home/qi/auto/meta_create.hpp": "vendor/boost/include/boost/spirit/home/qi/auto/meta_create.hpp",
- "boost/spirit/home/qi/auxiliary.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary.hpp",
- "boost/spirit/home/qi/auxiliary/attr.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/attr.hpp",
- "boost/spirit/home/qi/auxiliary/attr_cast.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/attr_cast.hpp",
- "boost/spirit/home/qi/auxiliary/eoi.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/eoi.hpp",
- "boost/spirit/home/qi/auxiliary/eol.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/eol.hpp",
- "boost/spirit/home/qi/auxiliary/eps.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/eps.hpp",
- "boost/spirit/home/qi/auxiliary/lazy.hpp": "vendor/boost/include/boost/spirit/home/qi/auxiliary/lazy.hpp",
- "boost/spirit/home/qi/binary.hpp": "vendor/boost/include/boost/spirit/home/qi/binary.hpp",
- "boost/spirit/home/qi/binary/binary.hpp": "vendor/boost/include/boost/spirit/home/qi/binary/binary.hpp",
- "boost/spirit/home/qi/char.hpp": "vendor/boost/include/boost/spirit/home/qi/char.hpp",
- "boost/spirit/home/qi/char/char.hpp": "vendor/boost/include/boost/spirit/home/qi/char/char.hpp",
- "boost/spirit/home/qi/char/char_class.hpp": "vendor/boost/include/boost/spirit/home/qi/char/char_class.hpp",
- "boost/spirit/home/qi/char/char_parser.hpp": "vendor/boost/include/boost/spirit/home/qi/char/char_parser.hpp",
- "boost/spirit/home/qi/copy.hpp": "vendor/boost/include/boost/spirit/home/qi/copy.hpp",
- "boost/spirit/home/qi/detail/alternative_function.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/alternative_function.hpp",
- "boost/spirit/home/qi/detail/assign_to.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/assign_to.hpp",
- "boost/spirit/home/qi/detail/attributes.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/attributes.hpp",
- "boost/spirit/home/qi/detail/construct.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/construct.hpp",
- "boost/spirit/home/qi/detail/enable_lit.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/enable_lit.hpp",
- "boost/spirit/home/qi/detail/expect_function.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/expect_function.hpp",
- "boost/spirit/home/qi/detail/expectation_failure.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/expectation_failure.hpp",
- "boost/spirit/home/qi/detail/fail_function.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/fail_function.hpp",
- "boost/spirit/home/qi/detail/parse.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/parse.hpp",
- "boost/spirit/home/qi/detail/parse_auto.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/parse_auto.hpp",
- "boost/spirit/home/qi/detail/pass_container.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/pass_container.hpp",
- "boost/spirit/home/qi/detail/pass_function.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/pass_function.hpp",
- "boost/spirit/home/qi/detail/permute_function.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/permute_function.hpp",
- "boost/spirit/home/qi/detail/string_parse.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/string_parse.hpp",
- "boost/spirit/home/qi/detail/unused_skipper.hpp": "vendor/boost/include/boost/spirit/home/qi/detail/unused_skipper.hpp",
- "boost/spirit/home/qi/directive.hpp": "vendor/boost/include/boost/spirit/home/qi/directive.hpp",
- "boost/spirit/home/qi/directive/as.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/as.hpp",
- "boost/spirit/home/qi/directive/encoding.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/encoding.hpp",
- "boost/spirit/home/qi/directive/expect.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/expect.hpp",
- "boost/spirit/home/qi/directive/hold.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/hold.hpp",
- "boost/spirit/home/qi/directive/lexeme.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/lexeme.hpp",
- "boost/spirit/home/qi/directive/matches.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/matches.hpp",
- "boost/spirit/home/qi/directive/no_case.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/no_case.hpp",
- "boost/spirit/home/qi/directive/no_skip.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/no_skip.hpp",
- "boost/spirit/home/qi/directive/omit.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/omit.hpp",
- "boost/spirit/home/qi/directive/raw.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/raw.hpp",
- "boost/spirit/home/qi/directive/repeat.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/repeat.hpp",
- "boost/spirit/home/qi/directive/skip.hpp": "vendor/boost/include/boost/spirit/home/qi/directive/skip.hpp",
- "boost/spirit/home/qi/domain.hpp": "vendor/boost/include/boost/spirit/home/qi/domain.hpp",
- "boost/spirit/home/qi/meta_compiler.hpp": "vendor/boost/include/boost/spirit/home/qi/meta_compiler.hpp",
- "boost/spirit/home/qi/nonterminal.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal.hpp",
- "boost/spirit/home/qi/nonterminal/debug_handler.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/debug_handler.hpp",
- "boost/spirit/home/qi/nonterminal/debug_handler_state.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/debug_handler_state.hpp",
- "boost/spirit/home/qi/nonterminal/detail/fcall.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/detail/fcall.hpp",
- "boost/spirit/home/qi/nonterminal/detail/parameterized.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/detail/parameterized.hpp",
- "boost/spirit/home/qi/nonterminal/detail/parser_binder.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/detail/parser_binder.hpp",
- "boost/spirit/home/qi/nonterminal/error_handler.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/error_handler.hpp",
- "boost/spirit/home/qi/nonterminal/grammar.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/grammar.hpp",
- "boost/spirit/home/qi/nonterminal/nonterminal_fwd.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/nonterminal_fwd.hpp",
- "boost/spirit/home/qi/nonterminal/rule.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/rule.hpp",
- "boost/spirit/home/qi/nonterminal/simple_trace.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/simple_trace.hpp",
- "boost/spirit/home/qi/nonterminal/success_handler.hpp": "vendor/boost/include/boost/spirit/home/qi/nonterminal/success_handler.hpp",
- "boost/spirit/home/qi/numeric.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric.hpp",
- "boost/spirit/home/qi/numeric/bool.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/bool.hpp",
- "boost/spirit/home/qi/numeric/bool_policies.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/bool_policies.hpp",
- "boost/spirit/home/qi/numeric/detail/numeric_utils.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/detail/numeric_utils.hpp",
- "boost/spirit/home/qi/numeric/detail/real_impl.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/detail/real_impl.hpp",
- "boost/spirit/home/qi/numeric/int.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/int.hpp",
- "boost/spirit/home/qi/numeric/numeric_utils.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/numeric_utils.hpp",
- "boost/spirit/home/qi/numeric/real.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/real.hpp",
- "boost/spirit/home/qi/numeric/real_policies.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/real_policies.hpp",
- "boost/spirit/home/qi/numeric/uint.hpp": "vendor/boost/include/boost/spirit/home/qi/numeric/uint.hpp",
- "boost/spirit/home/qi/operator.hpp": "vendor/boost/include/boost/spirit/home/qi/operator.hpp",
- "boost/spirit/home/qi/operator/alternative.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/alternative.hpp",
- "boost/spirit/home/qi/operator/and_predicate.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/and_predicate.hpp",
- "boost/spirit/home/qi/operator/difference.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/difference.hpp",
- "boost/spirit/home/qi/operator/expect.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/expect.hpp",
- "boost/spirit/home/qi/operator/kleene.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/kleene.hpp",
- "boost/spirit/home/qi/operator/list.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/list.hpp",
- "boost/spirit/home/qi/operator/not_predicate.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/not_predicate.hpp",
- "boost/spirit/home/qi/operator/optional.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/optional.hpp",
- "boost/spirit/home/qi/operator/permutation.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/permutation.hpp",
- "boost/spirit/home/qi/operator/plus.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/plus.hpp",
- "boost/spirit/home/qi/operator/sequence.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/sequence.hpp",
- "boost/spirit/home/qi/operator/sequence_base.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/sequence_base.hpp",
- "boost/spirit/home/qi/operator/sequential_or.hpp": "vendor/boost/include/boost/spirit/home/qi/operator/sequential_or.hpp",
- "boost/spirit/home/qi/parse.hpp": "vendor/boost/include/boost/spirit/home/qi/parse.hpp",
- "boost/spirit/home/qi/parse_attr.hpp": "vendor/boost/include/boost/spirit/home/qi/parse_attr.hpp",
- "boost/spirit/home/qi/parser.hpp": "vendor/boost/include/boost/spirit/home/qi/parser.hpp",
- "boost/spirit/home/qi/reference.hpp": "vendor/boost/include/boost/spirit/home/qi/reference.hpp",
- "boost/spirit/home/qi/skip_flag.hpp": "vendor/boost/include/boost/spirit/home/qi/skip_flag.hpp",
- "boost/spirit/home/qi/skip_over.hpp": "vendor/boost/include/boost/spirit/home/qi/skip_over.hpp",
- "boost/spirit/home/qi/stream.hpp": "vendor/boost/include/boost/spirit/home/qi/stream.hpp",
- "boost/spirit/home/qi/stream/detail/iterator_source.hpp": "vendor/boost/include/boost/spirit/home/qi/stream/detail/iterator_source.hpp",
- "boost/spirit/home/qi/stream/detail/match_manip.hpp": "vendor/boost/include/boost/spirit/home/qi/stream/detail/match_manip.hpp",
- "boost/spirit/home/qi/stream/stream.hpp": "vendor/boost/include/boost/spirit/home/qi/stream/stream.hpp",
- "boost/spirit/home/qi/string.hpp": "vendor/boost/include/boost/spirit/home/qi/string.hpp",
- "boost/spirit/home/qi/string/detail/tst.hpp": "vendor/boost/include/boost/spirit/home/qi/string/detail/tst.hpp",
- "boost/spirit/home/qi/string/lit.hpp": "vendor/boost/include/boost/spirit/home/qi/string/lit.hpp",
- "boost/spirit/home/qi/string/symbols.hpp": "vendor/boost/include/boost/spirit/home/qi/string/symbols.hpp",
- "boost/spirit/home/qi/string/tst.hpp": "vendor/boost/include/boost/spirit/home/qi/string/tst.hpp",
- "boost/spirit/home/qi/what.hpp": "vendor/boost/include/boost/spirit/home/qi/what.hpp",
- "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",
- "boost/spirit/home/support/attributes_fwd.hpp": "vendor/boost/include/boost/spirit/home/support/attributes_fwd.hpp",
- "boost/spirit/home/support/auto/meta_create.hpp": "vendor/boost/include/boost/spirit/home/support/auto/meta_create.hpp",
- "boost/spirit/home/support/auxiliary/attr_cast.hpp": "vendor/boost/include/boost/spirit/home/support/auxiliary/attr_cast.hpp",
- "boost/spirit/home/support/char_class.hpp": "vendor/boost/include/boost/spirit/home/support/char_class.hpp",
- "boost/spirit/home/support/char_encoding/ascii.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/ascii.hpp",
- "boost/spirit/home/support/char_encoding/iso8859_1.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/iso8859_1.hpp",
- "boost/spirit/home/support/char_encoding/standard.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/standard.hpp",
- "boost/spirit/home/support/char_encoding/standard_wide.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/standard_wide.hpp",
- "boost/spirit/home/support/char_encoding/unicode.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode.hpp",
- "boost/spirit/home/support/char_encoding/unicode/category_table.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode/category_table.hpp",
- "boost/spirit/home/support/char_encoding/unicode/lowercase_table.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode/lowercase_table.hpp",
- "boost/spirit/home/support/char_encoding/unicode/query.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode/query.hpp",
- "boost/spirit/home/support/char_encoding/unicode/script_table.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode/script_table.hpp",
- "boost/spirit/home/support/char_encoding/unicode/uppercase_table.hpp": "vendor/boost/include/boost/spirit/home/support/char_encoding/unicode/uppercase_table.hpp",
- "boost/spirit/home/support/char_set/basic_chset.hpp": "vendor/boost/include/boost/spirit/home/support/char_set/basic_chset.hpp",
- "boost/spirit/home/support/char_set/range.hpp": "vendor/boost/include/boost/spirit/home/support/char_set/range.hpp",
- "boost/spirit/home/support/char_set/range_functions.hpp": "vendor/boost/include/boost/spirit/home/support/char_set/range_functions.hpp",
- "boost/spirit/home/support/char_set/range_run.hpp": "vendor/boost/include/boost/spirit/home/support/char_set/range_run.hpp",
- "boost/spirit/home/support/char_set/range_run_impl.hpp": "vendor/boost/include/boost/spirit/home/support/char_set/range_run_impl.hpp",
- "boost/spirit/home/support/common_terminals.hpp": "vendor/boost/include/boost/spirit/home/support/common_terminals.hpp",
- "boost/spirit/home/support/container.hpp": "vendor/boost/include/boost/spirit/home/support/container.hpp",
- "boost/spirit/home/support/context.hpp": "vendor/boost/include/boost/spirit/home/support/context.hpp",
- "boost/spirit/home/support/detail/as_variant.hpp": "vendor/boost/include/boost/spirit/home/support/detail/as_variant.hpp",
- "boost/spirit/home/support/detail/endian.hpp": "vendor/boost/include/boost/spirit/home/support/detail/endian.hpp",
- "boost/spirit/home/support/detail/endian/cover_operators.hpp": "vendor/boost/include/boost/spirit/home/support/detail/endian/cover_operators.hpp",
- "boost/spirit/home/support/detail/endian/endian.hpp": "vendor/boost/include/boost/spirit/home/support/detail/endian/endian.hpp",
- "boost/spirit/home/support/detail/get_encoding.hpp": "vendor/boost/include/boost/spirit/home/support/detail/get_encoding.hpp",
- "boost/spirit/home/support/detail/hold_any.hpp": "vendor/boost/include/boost/spirit/home/support/detail/hold_any.hpp",
- "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/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",
- "boost/spirit/home/support/detail/what_function.hpp": "vendor/boost/include/boost/spirit/home/support/detail/what_function.hpp",
- "boost/spirit/home/support/handles_container.hpp": "vendor/boost/include/boost/spirit/home/support/handles_container.hpp",
- "boost/spirit/home/support/has_semantic_action.hpp": "vendor/boost/include/boost/spirit/home/support/has_semantic_action.hpp",
- "boost/spirit/home/support/info.hpp": "vendor/boost/include/boost/spirit/home/support/info.hpp",
- "boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp",
- "boost/spirit/home/support/iterators/detail/combine_policies.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/combine_policies.hpp",
- "boost/spirit/home/support/iterators/detail/istream_policy.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/istream_policy.hpp",
- "boost/spirit/home/support/iterators/detail/multi_pass.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/multi_pass.hpp",
- "boost/spirit/home/support/iterators/detail/no_check_policy.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/no_check_policy.hpp",
- "boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp",
- "boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp",
- "boost/spirit/home/support/iterators/istream_iterator.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/istream_iterator.hpp",
- "boost/spirit/home/support/iterators/multi_pass.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/multi_pass.hpp",
- "boost/spirit/home/support/iterators/multi_pass_fwd.hpp": "vendor/boost/include/boost/spirit/home/support/iterators/multi_pass_fwd.hpp",
- "boost/spirit/home/support/lazy.hpp": "vendor/boost/include/boost/spirit/home/support/lazy.hpp",
- "boost/spirit/home/support/limits.hpp": "vendor/boost/include/boost/spirit/home/support/limits.hpp",
- "boost/spirit/home/support/make_component.hpp": "vendor/boost/include/boost/spirit/home/support/make_component.hpp",
- "boost/spirit/home/support/meta_compiler.hpp": "vendor/boost/include/boost/spirit/home/support/meta_compiler.hpp",
- "boost/spirit/home/support/modify.hpp": "vendor/boost/include/boost/spirit/home/support/modify.hpp",
- "boost/spirit/home/support/multi_pass_wrapper.hpp": "vendor/boost/include/boost/spirit/home/support/multi_pass_wrapper.hpp",
- "boost/spirit/home/support/nonterminal/expand_arg.hpp": "vendor/boost/include/boost/spirit/home/support/nonterminal/expand_arg.hpp",
- "boost/spirit/home/support/nonterminal/extract_param.hpp": "vendor/boost/include/boost/spirit/home/support/nonterminal/extract_param.hpp",
- "boost/spirit/home/support/nonterminal/locals.hpp": "vendor/boost/include/boost/spirit/home/support/nonterminal/locals.hpp",
- "boost/spirit/home/support/numeric_traits.hpp": "vendor/boost/include/boost/spirit/home/support/numeric_traits.hpp",
- "boost/spirit/home/support/sequence_base_id.hpp": "vendor/boost/include/boost/spirit/home/support/sequence_base_id.hpp",
- "boost/spirit/home/support/string_traits.hpp": "vendor/boost/include/boost/spirit/home/support/string_traits.hpp",
- "boost/spirit/home/support/terminal.hpp": "vendor/boost/include/boost/spirit/home/support/terminal.hpp",
- "boost/spirit/home/support/terminal_expression.hpp": "vendor/boost/include/boost/spirit/home/support/terminal_expression.hpp",
- "boost/spirit/home/support/unused.hpp": "vendor/boost/include/boost/spirit/home/support/unused.hpp",
- "boost/spirit/home/support/utf8.hpp": "vendor/boost/include/boost/spirit/home/support/utf8.hpp",
- "boost/spirit/home/support/utree/utree_traits_fwd.hpp": "vendor/boost/include/boost/spirit/home/support/utree/utree_traits_fwd.hpp",
- "boost/spirit/include/phoenix_core.hpp": "vendor/boost/include/boost/spirit/include/phoenix_core.hpp",
- "boost/spirit/include/phoenix_function.hpp": "vendor/boost/include/boost/spirit/include/phoenix_function.hpp",
- "boost/spirit/include/phoenix_limits.hpp": "vendor/boost/include/boost/spirit/include/phoenix_limits.hpp",
- "boost/spirit/include/phoenix_operator.hpp": "vendor/boost/include/boost/spirit/include/phoenix_operator.hpp",
- "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/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",
- "boost/tokenizer.hpp": "vendor/boost/include/boost/tokenizer.hpp",
- "boost/tuple/detail/tuple_basic.hpp": "vendor/boost/include/boost/tuple/detail/tuple_basic.hpp",
- "boost/tuple/tuple.hpp": "vendor/boost/include/boost/tuple/tuple.hpp",
- "boost/type.hpp": "vendor/boost/include/boost/type.hpp",
- "boost/type_index.hpp": "vendor/boost/include/boost/type_index.hpp",
- "boost/type_index/ctti_type_index.hpp": "vendor/boost/include/boost/type_index/ctti_type_index.hpp",
- "boost/type_index/detail/compile_time_type_info.hpp": "vendor/boost/include/boost/type_index/detail/compile_time_type_info.hpp",
- "boost/type_index/detail/ctti_register_class.hpp": "vendor/boost/include/boost/type_index/detail/ctti_register_class.hpp",
- "boost/type_index/detail/stl_register_class.hpp": "vendor/boost/include/boost/type_index/detail/stl_register_class.hpp",
- "boost/type_index/stl_type_index.hpp": "vendor/boost/include/boost/type_index/stl_type_index.hpp",
- "boost/type_index/type_index_facade.hpp": "vendor/boost/include/boost/type_index/type_index_facade.hpp",
- "boost/type_traits/add_const.hpp": "vendor/boost/include/boost/type_traits/add_const.hpp",
- "boost/type_traits/add_cv.hpp": "vendor/boost/include/boost/type_traits/add_cv.hpp",
- "boost/type_traits/add_lvalue_reference.hpp": "vendor/boost/include/boost/type_traits/add_lvalue_reference.hpp",
- "boost/type_traits/add_pointer.hpp": "vendor/boost/include/boost/type_traits/add_pointer.hpp",
- "boost/type_traits/add_reference.hpp": "vendor/boost/include/boost/type_traits/add_reference.hpp",
- "boost/type_traits/add_rvalue_reference.hpp": "vendor/boost/include/boost/type_traits/add_rvalue_reference.hpp",
- "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/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",
- "boost/type_traits/conversion_traits.hpp": "vendor/boost/include/boost/type_traits/conversion_traits.hpp",
- "boost/type_traits/copy_cv.hpp": "vendor/boost/include/boost/type_traits/copy_cv.hpp",
- "boost/type_traits/cv_traits.hpp": "vendor/boost/include/boost/type_traits/cv_traits.hpp",
- "boost/type_traits/decay.hpp": "vendor/boost/include/boost/type_traits/decay.hpp",
- "boost/type_traits/declval.hpp": "vendor/boost/include/boost/type_traits/declval.hpp",
- "boost/type_traits/detail/bool_trait_undef.hpp": "vendor/boost/include/boost/type_traits/detail/bool_trait_undef.hpp",
- "boost/type_traits/detail/common_arithmetic_type.hpp": "vendor/boost/include/boost/type_traits/detail/common_arithmetic_type.hpp",
- "boost/type_traits/detail/common_type_impl.hpp": "vendor/boost/include/boost/type_traits/detail/common_type_impl.hpp",
- "boost/type_traits/detail/composite_member_pointer_type.hpp": "vendor/boost/include/boost/type_traits/detail/composite_member_pointer_type.hpp",
- "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",
- "boost/type_traits/has_minus_assign.hpp": "vendor/boost/include/boost/type_traits/has_minus_assign.hpp",
- "boost/type_traits/has_nothrow_assign.hpp": "vendor/boost/include/boost/type_traits/has_nothrow_assign.hpp",
- "boost/type_traits/has_nothrow_constructor.hpp": "vendor/boost/include/boost/type_traits/has_nothrow_constructor.hpp",
- "boost/type_traits/has_nothrow_copy.hpp": "vendor/boost/include/boost/type_traits/has_nothrow_copy.hpp",
- "boost/type_traits/has_plus.hpp": "vendor/boost/include/boost/type_traits/has_plus.hpp",
- "boost/type_traits/has_plus_assign.hpp": "vendor/boost/include/boost/type_traits/has_plus_assign.hpp",
- "boost/type_traits/has_right_shift.hpp": "vendor/boost/include/boost/type_traits/has_right_shift.hpp",
- "boost/type_traits/has_trivial_assign.hpp": "vendor/boost/include/boost/type_traits/has_trivial_assign.hpp",
- "boost/type_traits/has_trivial_constructor.hpp": "vendor/boost/include/boost/type_traits/has_trivial_constructor.hpp",
- "boost/type_traits/has_trivial_copy.hpp": "vendor/boost/include/boost/type_traits/has_trivial_copy.hpp",
- "boost/type_traits/has_trivial_destructor.hpp": "vendor/boost/include/boost/type_traits/has_trivial_destructor.hpp",
- "boost/type_traits/has_trivial_move_assign.hpp": "vendor/boost/include/boost/type_traits/has_trivial_move_assign.hpp",
- "boost/type_traits/has_trivial_move_constructor.hpp": "vendor/boost/include/boost/type_traits/has_trivial_move_constructor.hpp",
- "boost/type_traits/integral_constant.hpp": "vendor/boost/include/boost/type_traits/integral_constant.hpp",
- "boost/type_traits/intrinsics.hpp": "vendor/boost/include/boost/type_traits/intrinsics.hpp",
- "boost/type_traits/is_abstract.hpp": "vendor/boost/include/boost/type_traits/is_abstract.hpp",
- "boost/type_traits/is_arithmetic.hpp": "vendor/boost/include/boost/type_traits/is_arithmetic.hpp",
- "boost/type_traits/is_array.hpp": "vendor/boost/include/boost/type_traits/is_array.hpp",
- "boost/type_traits/is_assignable.hpp": "vendor/boost/include/boost/type_traits/is_assignable.hpp",
- "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_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",
- "boost/type_traits/is_copy_constructible.hpp": "vendor/boost/include/boost/type_traits/is_copy_constructible.hpp",
- "boost/type_traits/is_default_constructible.hpp": "vendor/boost/include/boost/type_traits/is_default_constructible.hpp",
- "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_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",
- "boost/type_traits/is_fundamental.hpp": "vendor/boost/include/boost/type_traits/is_fundamental.hpp",
- "boost/type_traits/is_integral.hpp": "vendor/boost/include/boost/type_traits/is_integral.hpp",
- "boost/type_traits/is_lvalue_reference.hpp": "vendor/boost/include/boost/type_traits/is_lvalue_reference.hpp",
- "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_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",
- "boost/type_traits/is_reference.hpp": "vendor/boost/include/boost/type_traits/is_reference.hpp",
- "boost/type_traits/is_rvalue_reference.hpp": "vendor/boost/include/boost/type_traits/is_rvalue_reference.hpp",
- "boost/type_traits/is_same.hpp": "vendor/boost/include/boost/type_traits/is_same.hpp",
- "boost/type_traits/is_scalar.hpp": "vendor/boost/include/boost/type_traits/is_scalar.hpp",
- "boost/type_traits/is_signed.hpp": "vendor/boost/include/boost/type_traits/is_signed.hpp",
- "boost/type_traits/is_stateless.hpp": "vendor/boost/include/boost/type_traits/is_stateless.hpp",
- "boost/type_traits/is_union.hpp": "vendor/boost/include/boost/type_traits/is_union.hpp",
- "boost/type_traits/is_unsigned.hpp": "vendor/boost/include/boost/type_traits/is_unsigned.hpp",
- "boost/type_traits/is_void.hpp": "vendor/boost/include/boost/type_traits/is_void.hpp",
- "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/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/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",
- "boost/typeof/encode_decode_params.hpp": "vendor/boost/include/boost/typeof/encode_decode_params.hpp",
- "boost/typeof/int_encoding.hpp": "vendor/boost/include/boost/typeof/int_encoding.hpp",
- "boost/typeof/integral_template_param.hpp": "vendor/boost/include/boost/typeof/integral_template_param.hpp",
- "boost/typeof/message.hpp": "vendor/boost/include/boost/typeof/message.hpp",
- "boost/typeof/modifiers.hpp": "vendor/boost/include/boost/typeof/modifiers.hpp",
- "boost/typeof/msvc/typeof_impl.hpp": "vendor/boost/include/boost/typeof/msvc/typeof_impl.hpp",
- "boost/typeof/native.hpp": "vendor/boost/include/boost/typeof/native.hpp",
- "boost/typeof/pointers_data_members.hpp": "vendor/boost/include/boost/typeof/pointers_data_members.hpp",
- "boost/typeof/register_functions.hpp": "vendor/boost/include/boost/typeof/register_functions.hpp",
- "boost/typeof/register_functions_iterate.hpp": "vendor/boost/include/boost/typeof/register_functions_iterate.hpp",
- "boost/typeof/register_fundamental.hpp": "vendor/boost/include/boost/typeof/register_fundamental.hpp",
- "boost/typeof/register_mem_functions.hpp": "vendor/boost/include/boost/typeof/register_mem_functions.hpp",
- "boost/typeof/template_encoding.hpp": "vendor/boost/include/boost/typeof/template_encoding.hpp",
- "boost/typeof/template_template_param.hpp": "vendor/boost/include/boost/typeof/template_template_param.hpp",
- "boost/typeof/type_encoding.hpp": "vendor/boost/include/boost/typeof/type_encoding.hpp",
- "boost/typeof/type_template_param.hpp": "vendor/boost/include/boost/typeof/type_template_param.hpp",
- "boost/typeof/typeof.hpp": "vendor/boost/include/boost/typeof/typeof.hpp",
- "boost/typeof/typeof_impl.hpp": "vendor/boost/include/boost/typeof/typeof_impl.hpp",
- "boost/typeof/unsupported.hpp": "vendor/boost/include/boost/typeof/unsupported.hpp",
- "boost/typeof/vector.hpp": "vendor/boost/include/boost/typeof/vector.hpp",
- "boost/typeof/vector100.hpp": "vendor/boost/include/boost/typeof/vector100.hpp",
- "boost/typeof/vector150.hpp": "vendor/boost/include/boost/typeof/vector150.hpp",
- "boost/typeof/vector200.hpp": "vendor/boost/include/boost/typeof/vector200.hpp",
- "boost/typeof/vector50.hpp": "vendor/boost/include/boost/typeof/vector50.hpp",
- "boost/utility.hpp": "vendor/boost/include/boost/utility.hpp",
- "boost/utility/addressof.hpp": "vendor/boost/include/boost/utility/addressof.hpp",
- "boost/utility/base_from_member.hpp": "vendor/boost/include/boost/utility/base_from_member.hpp",
- "boost/utility/binary.hpp": "vendor/boost/include/boost/utility/binary.hpp",
- "boost/utility/compare_pointees.hpp": "vendor/boost/include/boost/utility/compare_pointees.hpp",
- "boost/utility/declval.hpp": "vendor/boost/include/boost/utility/declval.hpp",
- "boost/utility/detail/result_of_iterate.hpp": "vendor/boost/include/boost/utility/detail/result_of_iterate.hpp",
- "boost/utility/enable_if.hpp": "vendor/boost/include/boost/utility/enable_if.hpp",
- "boost/utility/identity_type.hpp": "vendor/boost/include/boost/utility/identity_type.hpp",
- "boost/utility/result_of.hpp": "vendor/boost/include/boost/utility/result_of.hpp",
- "boost/utility/swap.hpp": "vendor/boost/include/boost/utility/swap.hpp",
- "boost/utility/value_init.hpp": "vendor/boost/include/boost/utility/value_init.hpp",
- "boost/variant.hpp": "vendor/boost/include/boost/variant.hpp",
- "boost/variant/apply_visitor.hpp": "vendor/boost/include/boost/variant/apply_visitor.hpp",
- "boost/variant/bad_visit.hpp": "vendor/boost/include/boost/variant/bad_visit.hpp",
- "boost/variant/detail/apply_visitor_binary.hpp": "vendor/boost/include/boost/variant/detail/apply_visitor_binary.hpp",
- "boost/variant/detail/apply_visitor_delayed.hpp": "vendor/boost/include/boost/variant/detail/apply_visitor_delayed.hpp",
- "boost/variant/detail/apply_visitor_unary.hpp": "vendor/boost/include/boost/variant/detail/apply_visitor_unary.hpp",
- "boost/variant/detail/backup_holder.hpp": "vendor/boost/include/boost/variant/detail/backup_holder.hpp",
- "boost/variant/detail/cast_storage.hpp": "vendor/boost/include/boost/variant/detail/cast_storage.hpp",
- "boost/variant/detail/config.hpp": "vendor/boost/include/boost/variant/detail/config.hpp",
- "boost/variant/detail/element_index.hpp": "vendor/boost/include/boost/variant/detail/element_index.hpp",
- "boost/variant/detail/enable_recursive.hpp": "vendor/boost/include/boost/variant/detail/enable_recursive.hpp",
- "boost/variant/detail/enable_recursive_fwd.hpp": "vendor/boost/include/boost/variant/detail/enable_recursive_fwd.hpp",
- "boost/variant/detail/forced_return.hpp": "vendor/boost/include/boost/variant/detail/forced_return.hpp",
- "boost/variant/detail/generic_result_type.hpp": "vendor/boost/include/boost/variant/detail/generic_result_type.hpp",
- "boost/variant/detail/has_result_type.hpp": "vendor/boost/include/boost/variant/detail/has_result_type.hpp",
- "boost/variant/detail/hash_variant.hpp": "vendor/boost/include/boost/variant/detail/hash_variant.hpp",
- "boost/variant/detail/initializer.hpp": "vendor/boost/include/boost/variant/detail/initializer.hpp",
- "boost/variant/detail/make_variant_list.hpp": "vendor/boost/include/boost/variant/detail/make_variant_list.hpp",
- "boost/variant/detail/move.hpp": "vendor/boost/include/boost/variant/detail/move.hpp",
- "boost/variant/detail/over_sequence.hpp": "vendor/boost/include/boost/variant/detail/over_sequence.hpp",
- "boost/variant/detail/substitute.hpp": "vendor/boost/include/boost/variant/detail/substitute.hpp",
- "boost/variant/detail/substitute_fwd.hpp": "vendor/boost/include/boost/variant/detail/substitute_fwd.hpp",
- "boost/variant/detail/variant_io.hpp": "vendor/boost/include/boost/variant/detail/variant_io.hpp",
- "boost/variant/detail/visitation_impl.hpp": "vendor/boost/include/boost/variant/detail/visitation_impl.hpp",
- "boost/variant/get.hpp": "vendor/boost/include/boost/variant/get.hpp",
- "boost/variant/recursive_variant.hpp": "vendor/boost/include/boost/variant/recursive_variant.hpp",
- "boost/variant/recursive_wrapper.hpp": "vendor/boost/include/boost/variant/recursive_wrapper.hpp",
- "boost/variant/recursive_wrapper_fwd.hpp": "vendor/boost/include/boost/variant/recursive_wrapper_fwd.hpp",
- "boost/variant/static_visitor.hpp": "vendor/boost/include/boost/variant/static_visitor.hpp",
- "boost/variant/variant.hpp": "vendor/boost/include/boost/variant/variant.hpp",
- "boost/variant/variant_fwd.hpp": "vendor/boost/include/boost/variant/variant_fwd.hpp",
- "boost/variant/visitor_ptr.hpp": "vendor/boost/include/boost/variant/visitor_ptr.hpp",
- "boost/version.hpp": "vendor/boost/include/boost/version.hpp",
- "boost/visit_each.hpp": "vendor/boost/include/boost/visit_each.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/cheap-ruler-cpp-files.json b/vendor/cheap-ruler-cpp-files.json
deleted file mode 100644
index 58c2534053..0000000000
--- a/vendor/cheap-ruler-cpp-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/cheap_ruler.hpp": "vendor/cheap-ruler-cpp/include/mapbox/cheap_ruler.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/earcut.hpp-files.json b/vendor/earcut.hpp-files.json
deleted file mode 100644
index a5b9b97452..0000000000
--- a/vendor/earcut.hpp-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/earcut.hpp": "vendor/earcut.hpp/include/mapbox/earcut.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/eternal-files.json b/vendor/eternal-files.json
deleted file mode 100644
index c023443abf..0000000000
--- a/vendor/eternal-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/eternal.hpp": "vendor/eternal/include/mapbox/eternal.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/geojson-vt-cpp-files.json b/vendor/geojson-vt-cpp-files.json
deleted file mode 100644
index c7e90a8cb7..0000000000
--- a/vendor/geojson-vt-cpp-files.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/geojsonvt.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt.hpp",
- "mapbox/geojsonvt/clip.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/clip.hpp",
- "mapbox/geojsonvt/convert.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/convert.hpp",
- "mapbox/geojsonvt/simplify.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/simplify.hpp",
- "mapbox/geojsonvt/tile.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/tile.hpp",
- "mapbox/geojsonvt/types.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/types.hpp",
- "mapbox/geojsonvt/wrap.hpp": "vendor/geojson-vt-cpp/include/mapbox/geojsonvt/wrap.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/icu-files.json b/vendor/icu-files.json
deleted file mode 100644
index fc38524308..0000000000
--- a/vendor/icu-files.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "vendor/icu/src/cmemory.cpp",
- "vendor/icu/src/cstring.cpp",
- "vendor/icu/src/ubidi.cpp",
- "vendor/icu/src/ubidi_props.cpp",
- "vendor/icu/src/ubidiln.cpp",
- "vendor/icu/src/ubidiwrt.cpp",
- "vendor/icu/src/uchar.cpp",
- "vendor/icu/src/udataswp.cpp",
- "vendor/icu/src/uinvchar.cpp",
- "vendor/icu/src/umath.cpp",
- "vendor/icu/src/ushape.cpp",
- "vendor/icu/src/ustring.cpp",
- "vendor/icu/src/utf_impl.cpp",
- "vendor/icu/src/utrie2.cpp",
- "vendor/icu/src/utypes.cpp"
- ],
- "public_headers": {
- "unicode/bytestream.h": "vendor/icu/include/unicode/bytestream.h",
- "unicode/char16ptr.h": "vendor/icu/include/unicode/char16ptr.h",
- "unicode/localpointer.h": "vendor/icu/include/unicode/localpointer.h",
- "unicode/platform.h": "vendor/icu/include/unicode/platform.h",
- "unicode/ptypes.h": "vendor/icu/include/unicode/ptypes.h",
- "unicode/putil.h": "vendor/icu/include/unicode/putil.h",
- "unicode/rep.h": "vendor/icu/include/unicode/rep.h",
- "unicode/std_string.h": "vendor/icu/include/unicode/std_string.h",
- "unicode/stringoptions.h": "vendor/icu/include/unicode/stringoptions.h",
- "unicode/stringpiece.h": "vendor/icu/include/unicode/stringpiece.h",
- "unicode/ubidi.h": "vendor/icu/include/unicode/ubidi.h",
- "unicode/uchar.h": "vendor/icu/include/unicode/uchar.h",
- "unicode/uclean.h": "vendor/icu/include/unicode/uclean.h",
- "unicode/uconfig.h": "vendor/icu/include/unicode/uconfig.h",
- "unicode/udata.h": "vendor/icu/include/unicode/udata.h",
- "unicode/uiter.h": "vendor/icu/include/unicode/uiter.h",
- "unicode/umachine.h": "vendor/icu/include/unicode/umachine.h",
- "unicode/unistr.h": "vendor/icu/include/unicode/unistr.h",
- "unicode/uobject.h": "vendor/icu/include/unicode/uobject.h",
- "unicode/urename.h": "vendor/icu/include/unicode/urename.h",
- "unicode/uscript.h": "vendor/icu/include/unicode/uscript.h",
- "unicode/uset.h": "vendor/icu/include/unicode/uset.h",
- "unicode/ushape.h": "vendor/icu/include/unicode/ushape.h",
- "unicode/ustring.h": "vendor/icu/include/unicode/ustring.h",
- "unicode/utf.h": "vendor/icu/include/unicode/utf.h",
- "unicode/utf16.h": "vendor/icu/include/unicode/utf16.h",
- "unicode/utf8.h": "vendor/icu/include/unicode/utf8.h",
- "unicode/utf_old.h": "vendor/icu/include/unicode/utf_old.h",
- "unicode/utypes.h": "vendor/icu/include/unicode/utypes.h",
- "unicode/uvernum.h": "vendor/icu/include/unicode/uvernum.h",
- "unicode/uversion.h": "vendor/icu/include/unicode/uversion.h"
- },
- "private_headers": {
- "cmemory.h": "vendor/icu/src/cmemory.h",
- "cstring.h": "vendor/icu/src/cstring.h",
- "cwchar.h": "vendor/icu/src/cwchar.h",
- "mutex.h": "vendor/icu/src/mutex.h",
- "putilimp.h": "vendor/icu/src/putilimp.h",
- "uassert.h": "vendor/icu/src/uassert.h",
- "ubidi_props.h": "vendor/icu/src/ubidi_props.h",
- "ubidi_props_data.h": "vendor/icu/src/ubidi_props_data.h",
- "ubidiimp.h": "vendor/icu/src/ubidiimp.h",
- "uchar_props_data.h": "vendor/icu/src/uchar_props_data.h",
- "ucln.h": "vendor/icu/src/ucln.h",
- "ucln_cmn.h": "vendor/icu/src/ucln_cmn.h",
- "ucmndata.h": "vendor/icu/src/ucmndata.h",
- "udatamem.h": "vendor/icu/src/udatamem.h",
- "udataswp.h": "vendor/icu/src/udataswp.h",
- "uinvchar.h": "vendor/icu/src/uinvchar.h",
- "umapfile.h": "vendor/icu/src/umapfile.h",
- "umutex.h": "vendor/icu/src/umutex.h",
- "uprops.h": "vendor/icu/src/uprops.h",
- "uset_imp.h": "vendor/icu/src/uset_imp.h",
- "ustr_imp.h": "vendor/icu/src/ustr_imp.h",
- "utrie2.h": "vendor/icu/src/utrie2.h",
- "utrie2_impl.h": "vendor/icu/src/utrie2_impl.h"
- }
-}
diff --git a/vendor/mapbox-base-files.json b/vendor/mapbox-base-files.json
deleted file mode 100644
index b78dcba9a5..0000000000
--- a/vendor/mapbox-base-files.json
+++ /dev/null
@@ -1,108 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "nonstd/expected.hpp": "vendor/mapbox-base/extras/expected-lite/include/nonstd/expected.hpp",
- "ghc/filesystem.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/filesystem.hpp",
- "ghc/fs_fwd.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/fs_fwd.hpp",
- "ghc/fs_impl.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/fs_impl.hpp",
- "ghc/fs_std.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/fs_std.hpp",
- "ghc/fs_std_fwd.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/fs_std_fwd.hpp",
- "ghc/fs_std_impl.hpp": "vendor/mapbox-base/extras/filesystem/include/ghc/fs_std_impl.hpp",
- "kdbush.hpp": "vendor/mapbox-base/extras/kdbush.hpp/include/kdbush.hpp",
- "rapidjson/allocators.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/allocators.h",
- "rapidjson/cursorstreamwrapper.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/cursorstreamwrapper.h",
- "rapidjson/document.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/document.h",
- "rapidjson/encodedstream.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/encodedstream.h",
- "rapidjson/encodings.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/encodings.h",
- "rapidjson/error/en.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/error/en.h",
- "rapidjson/error/error.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/error/error.h",
- "rapidjson/filereadstream.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/filereadstream.h",
- "rapidjson/filewritestream.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/filewritestream.h",
- "rapidjson/fwd.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/fwd.h",
- "rapidjson/internal/biginteger.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/biginteger.h",
- "rapidjson/internal/diyfp.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/diyfp.h",
- "rapidjson/internal/dtoa.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/dtoa.h",
- "rapidjson/internal/ieee754.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/ieee754.h",
- "rapidjson/internal/itoa.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/itoa.h",
- "rapidjson/internal/meta.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/meta.h",
- "rapidjson/internal/pow10.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/pow10.h",
- "rapidjson/internal/regex.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/regex.h",
- "rapidjson/internal/stack.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/stack.h",
- "rapidjson/internal/strfunc.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/strfunc.h",
- "rapidjson/internal/strtod.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/strtod.h",
- "rapidjson/internal/swap.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/internal/swap.h",
- "rapidjson/istreamwrapper.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/istreamwrapper.h",
- "rapidjson/memorybuffer.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/memorybuffer.h",
- "rapidjson/memorystream.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/memorystream.h",
- "rapidjson/msinttypes/inttypes.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/msinttypes/inttypes.h",
- "rapidjson/msinttypes/stdint.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/msinttypes/stdint.h",
- "rapidjson/ostreamwrapper.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/ostreamwrapper.h",
- "rapidjson/pointer.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/pointer.h",
- "rapidjson/prettywriter.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/prettywriter.h",
- "rapidjson/rapidjson.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/rapidjson.h",
- "rapidjson/reader.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/reader.h",
- "rapidjson/schema.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/schema.h",
- "rapidjson/stream.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/stream.h",
- "rapidjson/stringbuffer.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/stringbuffer.h",
- "rapidjson/writer.h": "vendor/mapbox-base/extras/rapidjson/include/rapidjson/writer.h",
- "mapbox/geojson.hpp": "vendor/mapbox-base/mapbox/geojson.hpp/include/mapbox/geojson.hpp",
- "mapbox/geojson/rapidjson.hpp": "vendor/mapbox-base/mapbox/geojson.hpp/include/mapbox/geojson/rapidjson.hpp",
- "mapbox/geojson_impl.hpp": "vendor/mapbox-base/mapbox/geojson.hpp/include/mapbox/geojson_impl.hpp",
- "mapbox/feature.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/feature.hpp",
- "mapbox/geometry.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry.hpp",
- "mapbox/geometry/box.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/box.hpp",
- "mapbox/geometry/empty.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/empty.hpp",
- "mapbox/geometry/envelope.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/envelope.hpp",
- "mapbox/geometry/for_each_point.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/for_each_point.hpp",
- "mapbox/geometry/geometry.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/geometry.hpp",
- "mapbox/geometry/line_string.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/line_string.hpp",
- "mapbox/geometry/multi_line_string.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/multi_line_string.hpp",
- "mapbox/geometry/multi_point.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/multi_point.hpp",
- "mapbox/geometry/multi_polygon.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/multi_polygon.hpp",
- "mapbox/geometry/point.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/point.hpp",
- "mapbox/geometry/point_arithmetic.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/point_arithmetic.hpp",
- "mapbox/geometry/polygon.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry/polygon.hpp",
- "mapbox/geometry_io.hpp": "vendor/mapbox-base/mapbox/geometry.hpp/include/mapbox/geometry_io.hpp",
- "jni/advanced_ownership.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/advanced_ownership.hpp",
- "jni/array.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/array.hpp",
- "jni/arraylike.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/arraylike.hpp",
- "jni/boxing.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/boxing.hpp",
- "jni/class.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/class.hpp",
- "jni/constructor.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/constructor.hpp",
- "jni/errors.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/errors.hpp",
- "jni/field.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/field.hpp",
- "jni/functions.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/functions.hpp",
- "jni/jni.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/jni.hpp",
- "jni/make.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/make.hpp",
- "jni/method.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/method.hpp",
- "jni/native_method.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/native_method.hpp",
- "jni/npe.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/npe.hpp",
- "jni/object.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/object.hpp",
- "jni/ownership.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/ownership.hpp",
- "jni/static_field.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/static_field.hpp",
- "jni/static_method.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/static_method.hpp",
- "jni/string.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/string.hpp",
- "jni/tagging.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/tagging.hpp",
- "jni/traits.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/traits.hpp",
- "jni/type_signature.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/type_signature.hpp",
- "jni/typed_methods.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/typed_methods.hpp",
- "jni/types.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/types.hpp",
- "jni/unique.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/unique.hpp",
- "jni/weak_reference.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/weak_reference.hpp",
- "jni/wrapping.hpp": "vendor/mapbox-base/mapbox/jni.hpp/include/jni/wrapping.hpp",
- "optional.hpp": "vendor/mapbox-base/mapbox/optional/optional.hpp",
- "mapbox/pixelmatch.hpp": "vendor/mapbox-base/mapbox/pixelmatch-cpp/include/mapbox/pixelmatch.hpp",
- "supercluster.hpp": "vendor/mapbox-base/mapbox/supercluster.hpp/include/supercluster.hpp",
- "mapbox/type_wrapper.hpp": "vendor/mapbox-base/mapbox/typewrapper/include/mapbox/type_wrapper.hpp",
- "mapbox/value.hpp": "vendor/mapbox-base/mapbox/value/include/mapbox/value.hpp",
- "mapbox/optional.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/optional.hpp",
- "mapbox/recursive_wrapper.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/recursive_wrapper.hpp",
- "mapbox/variant.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/variant.hpp",
- "mapbox/variant_cast.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/variant_cast.hpp",
- "mapbox/variant_io.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/variant_io.hpp",
- "mapbox/variant_visitor.hpp": "vendor/mapbox-base/mapbox/variant/include/mapbox/variant_visitor.hpp",
- "mapbox/weak.hpp": "vendor/mapbox-base/mapbox/weak/include/mapbox/weak.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/polylabel-files.json b/vendor/polylabel-files.json
deleted file mode 100644
index 8acb6bf73f..0000000000
--- a/vendor/polylabel-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/polylabel.hpp": "vendor/polylabel/include/mapbox/polylabel.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/protozero-files.json b/vendor/protozero-files.json
deleted file mode 100644
index a67e98a3fc..0000000000
--- a/vendor/protozero-files.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "protozero/byteswap.hpp": "vendor/protozero/include/protozero/byteswap.hpp",
- "protozero/config.hpp": "vendor/protozero/include/protozero/config.hpp",
- "protozero/exception.hpp": "vendor/protozero/include/protozero/exception.hpp",
- "protozero/iterators.hpp": "vendor/protozero/include/protozero/iterators.hpp",
- "protozero/pbf_builder.hpp": "vendor/protozero/include/protozero/pbf_builder.hpp",
- "protozero/pbf_message.hpp": "vendor/protozero/include/protozero/pbf_message.hpp",
- "protozero/pbf_reader.hpp": "vendor/protozero/include/protozero/pbf_reader.hpp",
- "protozero/pbf_writer.hpp": "vendor/protozero/include/protozero/pbf_writer.hpp",
- "protozero/types.hpp": "vendor/protozero/include/protozero/types.hpp",
- "protozero/varint.hpp": "vendor/protozero/include/protozero/varint.hpp",
- "protozero/version.hpp": "vendor/protozero/include/protozero/version.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/shelf-pack-cpp-files.json b/vendor/shelf-pack-cpp-files.json
deleted file mode 100644
index 8a719780f7..0000000000
--- a/vendor/shelf-pack-cpp-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/shelf-pack.hpp": "vendor/shelf-pack-cpp/include/mapbox/shelf-pack.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/sqlite-files.json b/vendor/sqlite-files.json
deleted file mode 100644
index 433985ce32..0000000000
--- a/vendor/sqlite-files.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [
- "vendor/sqlite/src/sqlite3.c"
- ],
- "public_headers": {
- "sqlite3.h": "vendor/sqlite/include/sqlite3.h"
- },
- "private_headers": {}
-}
diff --git a/vendor/unique_resource-files.json b/vendor/unique_resource-files.json
deleted file mode 100644
index 5218656ef0..0000000000
--- a/vendor/unique_resource-files.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "unique_resource.hpp": "vendor/unique_resource/unique_resource.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/vector-tile-files.json b/vendor/vector-tile-files.json
deleted file mode 100644
index db6cb08953..0000000000
--- a/vendor/vector-tile-files.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/vector_tile.hpp": "vendor/vector-tile/include/mapbox/vector_tile.hpp",
- "mapbox/vector_tile/vector_tile_config.hpp": "vendor/vector-tile/include/mapbox/vector_tile/vector_tile_config.hpp",
- "mapbox/vector_tile/version.hpp": "vendor/vector-tile/include/mapbox/vector_tile/version.hpp"
- },
- "private_headers": {}
-}
diff --git a/vendor/wagyu-files.json b/vendor/wagyu-files.json
deleted file mode 100644
index cd3f761041..0000000000
--- a/vendor/wagyu-files.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "//": "This file is generated. Do not edit. Regenerate it with scripts/generate-file-lists.js",
- "sources": [],
- "public_headers": {
- "mapbox/geometry/wagyu/active_bound_list.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/active_bound_list.hpp",
- "mapbox/geometry/wagyu/bound.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/bound.hpp",
- "mapbox/geometry/wagyu/bubble_sort.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/bubble_sort.hpp",
- "mapbox/geometry/wagyu/build_edges.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/build_edges.hpp",
- "mapbox/geometry/wagyu/build_local_minima_list.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/build_local_minima_list.hpp",
- "mapbox/geometry/wagyu/build_result.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/build_result.hpp",
- "mapbox/geometry/wagyu/config.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/config.hpp",
- "mapbox/geometry/wagyu/edge.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/edge.hpp",
- "mapbox/geometry/wagyu/intersect.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/intersect.hpp",
- "mapbox/geometry/wagyu/intersect_util.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/intersect_util.hpp",
- "mapbox/geometry/wagyu/local_minimum.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/local_minimum.hpp",
- "mapbox/geometry/wagyu/local_minimum_util.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/local_minimum_util.hpp",
- "mapbox/geometry/wagyu/point.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/point.hpp",
- "mapbox/geometry/wagyu/process_horizontal.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/process_horizontal.hpp",
- "mapbox/geometry/wagyu/process_maxima.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/process_maxima.hpp",
- "mapbox/geometry/wagyu/quick_clip.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/quick_clip.hpp",
- "mapbox/geometry/wagyu/ring.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/ring.hpp",
- "mapbox/geometry/wagyu/ring_util.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/ring_util.hpp",
- "mapbox/geometry/wagyu/scanbeam.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/scanbeam.hpp",
- "mapbox/geometry/wagyu/snap_rounding.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/snap_rounding.hpp",
- "mapbox/geometry/wagyu/topology_correction.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/topology_correction.hpp",
- "mapbox/geometry/wagyu/util.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/util.hpp",
- "mapbox/geometry/wagyu/vatti.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/vatti.hpp",
- "mapbox/geometry/wagyu/wagyu.hpp": "vendor/wagyu/include/mapbox/geometry/wagyu/wagyu.hpp"
- },
- "private_headers": {}
-}