summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2018-12-12 09:37:00 +0100
committerSylvestre Ledru <sylvestre@debian.org>2018-12-12 09:37:00 +0100
commit3a0aecb79509ef67025dc6f368655b49ac239341 (patch)
treeb0fc9b31e05a9a1833377e077349f8238cbe06f8
parent0db5e35e75ac201173142e653f276f99f6ea258e (diff)
New upstream version 7.0upstream/7.0
-rw-r--r--.gitignore3
-rw-r--r--.markdownlint.json7
-rw-r--r--.travis.yml16
-rw-r--r--CMakeLists.txt207
-rw-r--r--CONTRIBUTING.md38
-rw-r--r--README.md88
-rw-r--r--boost-1.64-all-private.imp5796
-rw-r--r--boost-1.64-all.imp6780
-rw-r--r--clang-6.intrinsics.imp59
-rwxr-xr-xdist.sh31
-rw-r--r--docs/IWYUMappings.md46
-rw-r--r--docs/IWYUPragmas.md47
-rw-r--r--docs/WhatIsAUse.md29
-rw-r--r--docs/WhyIWYU.md20
-rw-r--r--docs/WhyIWYUIsDifficult.md45
-rwxr-xr-xfix_includes.py352
-rwxr-xr-xfix_includes_test.py792
-rw-r--r--gcc-8.intrinsics.imp60
-rw-r--r--gcc.stl.headers.imp219
-rw-r--r--gcc.symbols.imp3
-rw-r--r--iwyu.cc214
-rw-r--r--iwyu_ast_util.cc23
-rw-r--r--iwyu_ast_util.h4
-rw-r--r--iwyu_driver.cc10
-rw-r--r--iwyu_globals.cc7
-rw-r--r--iwyu_globals.h1
-rw-r--r--iwyu_include_picker.cc224
-rw-r--r--iwyu_location_util.cc6
-rw-r--r--iwyu_output.cc111
-rw-r--r--iwyu_output.h1
-rw-r--r--iwyu_preprocessor.cc3
-rw-r--r--iwyu_preprocessor.h3
-rwxr-xr-xiwyu_tool.py282
-rwxr-xr-xiwyu_tool_test.py107
-rw-r--r--iwyu_use_flags.h6
-rw-r--r--iwyu_version.h2
-rwxr-xr-xrun_iwyu_tests.py2
-rw-r--r--tests/cxx/built_ins_template.cc22
-rw-r--r--tests/cxx/explicit_instantiation-template.h14
-rw-r--r--tests/cxx/explicit_instantiation-template_direct.h14
-rw-r--r--tests/cxx/explicit_instantiation.cc48
-rw-r--r--tests/cxx/explicit_instantiation2-template_helpers.h48
-rw-r--r--tests/cxx/explicit_instantiation2-template_short.h17
-rw-r--r--tests/cxx/explicit_instantiation2-template_short_direct.h14
-rw-r--r--tests/cxx/explicit_instantiation2.cc103
-rw-r--r--tests/cxx/quoted_includes_first.cc39
-rw-r--r--tests/cxx/quoted_includes_first.h33
47 files changed, 15146 insertions, 850 deletions
diff --git a/.gitignore b/.gitignore
index 20e4302..0fce57b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,5 @@
*.pyc
__pycache__
+
+# Visual Studio Code
+.vscode
diff --git a/.markdownlint.json b/.markdownlint.json
new file mode 100644
index 0000000..a7c7731
--- /dev/null
+++ b/.markdownlint.json
@@ -0,0 +1,7 @@
+{
+ "default": true,
+ "MD013": false,
+ "MD014": false,
+ "MD026": false,
+ "MD038": false
+}
diff --git a/.travis.yml b/.travis.yml
index 7ad2b42..2e9b690 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,12 +5,12 @@ addons:
apt:
sources:
- ubuntu-toolchain-r-test
- - llvm-toolchain-trusty-6.0
+ - llvm-toolchain-trusty-7
packages:
- ninja-build
- - llvm-6.0-dev
- - libclang-6.0-dev
- - clang-6.0
+ - llvm-7-dev
+ - libclang-7-dev
+ - clang-7
before_install:
# Install a supported cmake version (>= 3.4.3)
@@ -18,18 +18,18 @@ before_install:
- sudo sh cmake.sh --skip-license --exclude-subdir --prefix=/usr/local
# Absolute paths to LLVM's root and bin directory
- - ROOT_PATH=`llvm-config-6.0 --prefix`
- - BIN_PATH=`llvm-config-6.0 --bindir`
+ - ROOT_PATH=`llvm-config-7 --prefix`
+ - BIN_PATH=`llvm-config-7 --bindir`
script:
# Build IWYU
- mkdir build
- cd build
- - cmake -GNinja -DIWYU_LLVM_ROOT_PATH=$ROOT_PATH -DCMAKE_C_COMPILER=$BIN_PATH/clang -DCMAKE_CXX_COMPILER=$BIN_PATH/clang++ -DCMAKE_INSTALL_PREFIX=./ ../
+ - cmake -GNinja -DCMAKE_PREFIX_PATH=$ROOT_PATH -DCMAKE_C_COMPILER=$BIN_PATH/clang -DCMAKE_CXX_COMPILER=$BIN_PATH/clang++ -DCMAKE_INSTALL_PREFIX=./ ../
- ninja install
# Test IWYU
- cd ..
- python run_iwyu_tests.py -- build/bin/include-what-you-use
- python fix_includes_test.py
-
+ - python iwyu_tool_test.py
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 67c4abb..ebcbe26 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,89 +1,44 @@
cmake_minimum_required(VERSION 3.4.3)
-if( POLICY CMP0048 )
- # Silence CMP0048 warning about missing project VERSION.
- cmake_policy(SET CMP0048 NEW)
+if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
+ message(STATUS "IWYU: out-of-tree configuration")
+ set(IWYU_IN_TREE OFF)
+else()
+ message(STATUS "IWYU: in-tree configuration")
+ set(IWYU_IN_TREE ON)
endif()
-project(include-what-you-use)
-
-if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
- message(STATUS "IWYU out-of-tree configuration")
-
- if( DEFINED LLVM_PATH )
- set(IWYU_LLVM_ROOT_PATH ${LLVM_PATH})
- message(WARNING "LLVM_PATH is deprecated, use IWYU_LLVM_ROOT_PATH instead.")
- endif()
-
- if( DEFINED IWYU_LLVM_INCLUDE_PATH AND DEFINED IWYU_LLVM_LIB_PATH )
- # User provided include/lib paths, fall through
- elseif ( DEFINED IWYU_LLVM_ROOT_PATH )
- # Synthesize include/lib relative to a root.
- set(IWYU_LLVM_INCLUDE_PATH ${IWYU_LLVM_ROOT_PATH}/include)
- set(IWYU_LLVM_LIB_PATH ${IWYU_LLVM_ROOT_PATH}/lib)
- else()
- # If none provided, fail.
- message(FATAL_ERROR
- "Don't know how to find LLVM headers/libraries. "
- "Use -DIWYU_LLVM_ROOT_PATH=/xyz or both "
- "-DIWYU_LLVM_INCLUDE_PATH=/xyz/include and -DIWYU_LLVM_LIB_PATH=/xyz/lib")
- endif()
-
- include_directories(${IWYU_LLVM_INCLUDE_PATH})
- link_directories(${IWYU_LLVM_LIB_PATH})
-
- add_definitions(
- -D__STDC_LIMIT_MACROS
- -D__STDC_CONSTANT_MACROS
- )
+if (NOT IWYU_IN_TREE)
+ cmake_policy(SET CMP0048 NEW)
+ project(include-what-you-use)
- if( MSVC )
- # Adjust MSVC warning levels.
- add_definitions(
- # Ignore security warnings for standard functions.
- -D_CRT_SECURE_NO_WARNINGS
- -D_SCL_SECURE_NO_WARNINGS
-
- # Disabled warnings.
- -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline)
- -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
- -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
- -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
- -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
- -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
- -wd4355 # Suppress ''this' : used in base member initializer list'
- -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
- -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
-
- # Promoted warnings.
- -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
-
- # Promoted warnings to errors.
- -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
- )
- endif()
+ find_package(LLVM CONFIG REQUIRED)
+ find_package(Clang CONFIG REQUIRED)
- if( APPLE )
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden")
- endif()
-else()
- message(STATUS "IWYU in-tree configuration")
+ list(APPEND CMAKE_MODULE_PATH ${LLVM_DIR})
+ include(AddLLVM)
+ include(HandleLLVMOptions)
endif()
-# Pick up Git revision so we can report it in version information.
-include(FindGit)
-if( GIT_FOUND AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" )
- execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD
- WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
- OUTPUT_VARIABLE IWYU_GIT_REV
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-else()
- message(STATUS "Warning: IWYU Git version info not found, DO NOT release "
- "from this build tree!")
-endif()
-add_definitions(-DIWYU_GIT_REV="${IWYU_GIT_REV}")
+message(STATUS "IWYU: configuring for LLVM ${LLVM_VERSION}...")
-add_executable(include-what-you-use
+set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
+
+add_definitions(${LLVM_DEFINITIONS})
+include_directories(
+ ${LLVM_INCLUDE_DIRS}
+ ${CLANG_INCLUDE_DIRS}
+ )
+
+set(LLVM_LINK_COMPONENTS
+ Option
+ Support
+ X86AsmParser
+ X86Desc
+ X86Info
+ )
+
+add_llvm_executable(include-what-you-use
iwyu.cc
iwyu_ast_util.cc
iwyu_cache.cc
@@ -97,19 +52,26 @@ add_executable(include-what-you-use
iwyu_path_util.cc
iwyu_preprocessor.cc
iwyu_verrs.cc
-)
+ )
+
+if (IWYU_IN_TREE)
+ # Add a dependency on clang-headers to ensure the builtin headers are
+ # available when IWYU is executed from the build dir.
+ # The clang-headers target is only available in in-tree builds.
+ add_dependencies(include-what-you-use clang-headers)
+endif()
-if( MINGW )
+if (MINGW)
# Work around 'too many sections' error with MINGW/GCC
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wa,-mbig-obj")
endif()
-if( MSVC )
+if (MSVC)
# Disable warnings for IWYU, and disable exceptions in MSVC's STL.
add_definitions(
-wd4722 # Suppress ''destructor'' : destructor never returns, potential memory leak
-D_HAS_EXCEPTIONS=0
- )
+ )
# Enable bigobj support and sane C++ exception semantics.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj /EHsc")
@@ -117,82 +79,41 @@ if( MSVC )
# Put project in solution folder
set_target_properties(include-what-you-use
PROPERTIES FOLDER "Clang executables"
- )
-else()
- # Disable RTTI, use C++11 to be compatible with LLVM/Clang libraries.
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti -std=c++11")
+ )
endif()
-# Clang dependencies.
target_link_libraries(include-what-you-use
PRIVATE
- clangFrontend
- clangSerialization
- clangDriver
- clangParse
- clangSema
- clangAnalysis
- clangAST
clangBasic
- clangEdit
clangLex
-)
-
-# LLVM dependencies.
-target_link_libraries(include-what-you-use
- PRIVATE
- LLVMX86AsmParser # MC, MCParser, Support, X86CodeGen, X86Desc, X86Info
- LLVMX86CodeGen # Analysis, AsmPrinter, CodeGen, Core, MC, Support, Target,
- # X86AsmPrinter, X86Desc, X86Info, X86Utils
- LLVMX86Desc # MC, MCDisassembler, Object, Support, X86AsmPrinter, X86Info
- LLVMX86AsmPrinter # MC, Support, X86Utils
- LLVMX86Info # Support
- LLVMX86Utils # Core, Support
- LLVMCodeGen # Analysis, Core, MC, Scalar, Support, Target, TransformUtils
- LLVMipo
- LLVMScalarOpts
- LLVMInstCombine
- LLVMTransformUtils
- LLVMTarget # Analysis, MC, Core, Support
- LLVMAnalysis # Core, Support
- LLVMOption # Support
- LLVMMCDisassembler # MC, Support
- LLVMMCParser # MC, Support
- LLVMMC # Object, Support
- LLVMProfileData # Core, Support, Object
- LLVMObject # BitReader, Core, Support
- LLVMBitReader # Core, Support
- LLVMCore # BinaryFormat, Support
- LLVMBinaryFormat # Support
- LLVMSupport # Demangle
- LLVMDemangle
-)
+ clangAST
+ clangSema
+ clangFrontend
+ clangDriver
+ )
# Platform dependencies.
-if( WIN32 )
+if (WIN32)
target_link_libraries(include-what-you-use
PRIVATE
- shlwapi
- version # For clangDriver's MSVCToolchain
- )
-elseif( UNIX )
- include(FindCurses)
- include(FindBacktrace)
+ shlwapi # For PathMatchSpecA
+ )
+endif()
- target_link_libraries(include-what-you-use
- PRIVATE
- pthread
- z
- ${Backtrace_LIBRARIES}
- ${CURSES_LIBRARIES}
- ${CMAKE_DL_LIBS}
- )
+# Pick up Git revision so we can report it in version information.
+include(FindGit)
+if (GIT_FOUND AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")
+ execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ OUTPUT_VARIABLE IWYU_GIT_REV
+ OUTPUT_STRIP_TRAILING_WHITESPACE)
else()
- message(WARNING
- "Unknown system: ${CMAKE_SYSTEM_NAME}. "
- "No platform link-dependencies added.")
+ message(STATUS "Warning: IWYU Git version info not found, DO NOT release "
+ "from this build tree!")
endif()
+add_definitions(-DIWYU_GIT_REV="${IWYU_GIT_REV}")
+# Install programs
install(TARGETS include-what-you-use RUNTIME DESTINATION bin)
install(PROGRAMS fix_includes.py iwyu_tool.py DESTINATION bin)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e8aaccc..41943af 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,7 +1,6 @@
-## Instructions for Developers ##
+# Instructions for Developers #
-
-### Submitting Patches ###
+## Submitting Patches ##
We welcome patches and rely on your contributions to make IWYU smarter.
@@ -9,8 +8,7 @@ Use GitHub's [pull request system](https://github.com/include-what-you-use/inclu
It's usually a good idea to run ideas by the [IWYU mailing list](http://groups.google.com/group/include-what-you-use) to get general agreement on directions before you start hacking.
-
-### Running the Tests ###
+## Running the Tests ##
If fixing a bug in clang, please add a test to the test suite! You can create a file called `whatever.cc` (_not_ .cpp), and, if necessary, `whatever.h`, and `whatever-<extension>.h`. You may be able to get away without adding any `.h` files, and just including `direct.h` -- see, for instance, `tests/remove_fwd_decl_when_including.cc`.
@@ -36,27 +34,25 @@ When fixing `fix_includes.py`, add a test case to `fix_includes_test.py` and run
python fix_includes_test.py
-
-### Debugging ###
+## Debugging ##
It's possible to run include-what-you-use in `gdb`, to debug that way. Another useful tool -- especially in combination with `gdb` -- is to get the verbose include-what-you-use output. See `iwyu_output.h` for a description of the verbose levels. Level 7 is very verbose -- it dumps basically the entire AST as it's being traversed, along with IWYU decisions made as it goes -- but very useful for that:
env IWYU_VERBOSE=7 make -k CXX=/path/to/llvm/Debug+Asserts/bin/include-what-you-use 2>&1 > /tmp/iwyu.verbose
-
-### A Quick Tour of the Codebase ###
+## A Quick Tour of the Codebase ##
The codebase is strewn with TODOs of known problems, and also language constructs that aren't adequately tested yet. So there's plenty to do! Here's a brief guide through the codebase:
- * `iwyu.cc`: the main file, it includes the logic for deciding when a symbol has been 'used', and whether it's a full use (definition required) or forward-declare use (only a declaration required). It also includes the logic for following uses through template instantiations.
- * `iwyu_driver.cc`: responsible for creating and configuring a Clang compiler from command-line arguments.
- * `iwyu_output.cc`: the file that translates from 'uses' into IWYU violations. This has the logic for deciding if a use is covered by an existing `#include` (or is a built-in). It also, as the name suggests, prints the IWYU output.
- * `iwyu_preprocessor.cc`: handles the preprocessor directives, the `#includes` and `#ifdefs`, to construct the existing include-tree. This is obviously essential for include-what-you-use analysis. This file also handles the IWYU pragma-comments.
- * `iwyu_include_picker.cc`: this finds canonical `#includes`, handling private->public mappings (like `bits/stl_vector.h` -> `vector`) and symbols with multiple possible #includes (like `NULL`). Additional mappings are maintained in a set of .imp files separately, for easier per-platform/-toolchain customization.
- * `iwyu_cache.cc`: holds the cache of instantiated templates (may hold other cached info later). This is data that is expensive to compute and may be used more than once.
- * `iwyu_globals.cc`: holds various global variables. We used to think globals were bad, until we saw how much having this file simplified the code...
- * `iwyu_*_util(s).h` and `.cc`: utility functions of various types. The most interesting, perhaps, is `iwyu_ast_util.h`, which has routines that make it easier to navigate and analyze the clang AST. There are also some STL helpers, string helpers, filesystem helpers, etc.
- * `iwyu_verrs.cc`: debug logging for IWYU.
- * `port.h`: shim header for various non-portable constructs.
- * `iwyu_getopt.cc`: portability shim for GNU `getopt(_long)`. Custom `getopt(_long)` implementation for Windows.
- * `fix_includes.py`: the helper script that edits a file based on the IWYU recommendations.
+* `iwyu.cc`: the main file, it includes the logic for deciding when a symbol has been 'used', and whether it's a full use (definition required) or forward-declare use (only a declaration required). It also includes the logic for following uses through template instantiations.
+* `iwyu_driver.cc`: responsible for creating and configuring a Clang compiler from command-line arguments.
+* `iwyu_output.cc`: the file that translates from 'uses' into IWYU violations. This has the logic for deciding if a use is covered by an existing `#include` (or is a built-in). It also, as the name suggests, prints the IWYU output.
+* `iwyu_preprocessor.cc`: handles the preprocessor directives, the `#includes` and `#ifdefs`, to construct the existing include-tree. This is obviously essential for include-what-you-use analysis. This file also handles the IWYU pragma-comments.
+* `iwyu_include_picker.cc`: this finds canonical `#includes`, handling private->public mappings (like `bits/stl_vector.h` -> `vector`) and symbols with multiple possible #includes (like `NULL`). Additional mappings are maintained in a set of .imp files separately, for easier per-platform/-toolchain customization.
+* `iwyu_cache.cc`: holds the cache of instantiated templates (may hold other cached info later). This is data that is expensive to compute and may be used more than once.
+* `iwyu_globals.cc`: holds various global variables. We used to think globals were bad, until we saw how much having this file simplified the code...
+* `iwyu_*_util(s).h` and `.cc`: utility functions of various types. The most interesting, perhaps, is `iwyu_ast_util.h`, which has routines that make it easier to navigate and analyze the clang AST. There are also some STL helpers, string helpers, filesystem helpers, etc.
+* `iwyu_verrs.cc`: debug logging for IWYU.
+* `port.h`: shim header for various non-portable constructs.
+* `iwyu_getopt.cc`: portability shim for GNU `getopt(_long)`. Custom `getopt(_long)` implementation for Windows.
+* `fix_includes.py`: the helper script that edits a file based on the IWYU recommendations.
diff --git a/README.md b/README.md
index f7084b4..324e673 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,7 @@
[![Build Status](https://travis-ci.org/include-what-you-use/include-what-you-use.svg?branch=master)](https://travis-ci.org/include-what-you-use/include-what-you-use)
-For more in-depth documentation, see http://github.com/include-what-you-use/include-what-you-use/tree/master/docs.
-
+For more in-depth documentation, see [docs](docs).
## Instructions for Users ##
@@ -11,13 +10,11 @@ For more in-depth documentation, see http://github.com/include-what-you-use/incl
This puts us in a state where every file includes the headers it needs to declare the symbols that it uses. When every file includes what it uses, then it is possible to edit any file and remove unused headers, without fear of accidentally breaking the upwards dependencies of that file. It also becomes easy to automatically track and update dependencies in the source code.
-
### CAVEAT ###
-This is alpha quality software -- at best (as of February 2011). It was written to work specifically in the Google source tree, and may make assumptions, or have gaps, that are immediately and embarrassingly evident in other types of code. For instance, we only run this on C++ code, not C or Objective C. Even for Google code, the tool still makes a lot of mistakes.
-
-While we work to get IWYU quality up, we will be stinting new features, and will prioritize reported bugs along with the many existing, known bugs. The best chance of getting a problem fixed is to submit a patch that fixes it (along with a unittest case that verifies the fix)!
+This is alpha quality software -- at best (as of July 2018). It was originally written to work specifically in the Google source tree, and may make assumptions, or have gaps, that are immediately and embarrassingly evident in other types of code.
+While we work to get IWYU quality up, we will be stinting new features, and will prioritize reported bugs along with the many existing, known bugs. The best chance of getting a problem fixed is to submit a patch that fixes it (along with a test case that verifies the fix)!
### How to Build ###
@@ -25,51 +22,50 @@ Include-what-you-use makes heavy use of Clang internals, and will occasionally b
We also have convenience tags and branches for released versions of Clang (called `clang_<version>`, e.g. `clang_5.0`). To build against a Clang release, check out the corresponding branch in IWYU before configuring the build. More details in the instructions below.
-We support two build configurations: out-of-tree and in-tree.
-
-
-#### Building out-of-tree ####
-
-In an out-of-tree configuration, we assume you already have compiled LLVM and Clang headers and libs somewhere on your filesystem, such as via the `libclang-dev` package.
-
- * Create a directory for IWYU development, e.g. `iwyu-trunk`
-
- * Clone the IWYU Git repo:
+We assume you already have compiled LLVM and Clang libraries on your system, either via packages for your platform or built from source.
- iwyu-trunk$ git clone https://github.com/include-what-you-use/include-what-you-use.git
+> NOTE: If you use the Debian/Ubuntu packaging available from <https://apt.llvm.org>, you'll need the following packages installed:
+>
+> * `llvm-<version>-dev`
+> * `libclang-<version>-dev`
+> * `clang-<version>`
+>
+> Packaging for other platforms will likely be subtly different.
- * Presumably, you'll be building IWYU with a released version of LLVM and Clang, so check out the corresponding branch. For example if you have Clang 3.2 installed, use the `clang_3.2` branch. IWYU `master` tracks LLVM & Clang trunk:
+To set up an environment for building:
- iwyu-trunk$ cd include-what-you-use
- iwyu-trunk/include-what-you-use$ git checkout clang_3.2
- iwyu-trunk/include-what-you-use$ cd ..
+* Create a directory for IWYU development, e.g. `iwyu`
- * Create a build root and use CMake to generate a build system linked with LLVM/Clang prebuilts. Note that CMake settings need to match exactly, so you may need to add `-DCMAKE_BUILD_TYPE=Release` or more to the command-line below:
+* Clone the IWYU Git repo:
- # This example uses the Makefile generator, but anything should work.
- iwyu-trunk$ mkdir build && cd build
- iwyu-trunk/build$ cmake -G "Unix Makefiles" -DIWYU_LLVM_ROOT_PATH=/usr/lib/llvm-3.4 ../include-what-you-use
+ iwyu$ git clone https://github.com/include-what-you-use/include-what-you-use.git
- * Once CMake has generated a build system, you can invoke it directly from `build`, e.g.
+* Presumably, you'll be building IWYU with a released version of LLVM and Clang, so check out the corresponding branch. For example, if you have Clang 6.0 installed, use the `clang_6.0` branch. IWYU `master` tracks LLVM & Clang trunk:
- iwyu-trunk/build$ make
+ iwyu$ cd include-what-you-use
+ iwyu/include-what-you-use$ git checkout clang_6.0
-This configuration is more useful if you want to get IWYU up and running quickly without building Clang and LLVM from scratch.
+* Create a build root and use CMake to generate a build system linked with LLVM/Clang prebuilts:
+ # This example uses the Makefile generator, but anything should work.
+ iwyu/include-what-you-use$ cd ..
+ iwyu$ mkdir build && cd build
-#### Building in-tree ####
+ # For IWYU 0.10/Clang 6 and earlier
+ iwyu/build$ cmake -G "Unix Makefiles" -DIWYU_LLVM_ROOT_PATH=/usr/lib/llvm-6.0 ../include-what-you-use
-You will need the Clang and LLVM trees on your system, such as by [checking out](http://clang.llvm.org/get_started.html) their SVN trees (but don't configure or build before you've done the following.)
+ # For IWYU 0.11/Clang 7 and later
+ iwyu/build$ cmake -G "Unix Makefiles" -DCMAKE_PREFIX_PATH=/usr/lib/llvm-7 ../include-what-you-use
- * Clone the IWYU Git repo into the Clang source tree:
+ or, if you have a local LLVM and Clang build tree, you can specify that as `CMAKE_PREFIX_PATH` for IWYU 0.11 and later:
- llvm/tools/clang/tools$ git clone https://github.com/include-what-you-use/include-what-you-use.git
+ iwyu/build$ cmake -G "Unix Makefiles" -DCMAKE_PREFIX_PATH=/llvm-trunk/build ../include-what-you-use
- * Edit `tools/clang/tools/CMakeLists.txt` and put in `add_subdirectory(include-what-you-use)`
- * Once this is done, IWYU is recognized and picked up by CMake workflow as described in the Clang Getting Started guide
+* Once CMake has generated a build system, you can invoke it directly from `build`, e.g.
-This configuration is more useful if you're actively developing IWYU against Clang trunk. It's easier to set up correctly, but it requires that you build all of LLVM and Clang.
+ iwyu/build$ make
+Instructions for building Clang are available at <https://clang.llvm.org/get_started.html>.
### How to Install ###
@@ -83,12 +79,10 @@ So for IWYU to function correctly, you need to copy in the Clang headers at a go
This weirdness is tracked in [issue 100](https://github.com/include-what-you-use/include-what-you-use/issues/100), hopefully we can make this more transparent over time.
-
### How to Run ###
The original design was built for Make, but a number of alternative run modes have come up over the years.
-
#### Plugging into Make ####
The easiest way to run IWYU over your codebase is to run
@@ -103,7 +97,6 @@ or
Include-what-you-use only analyzes .cc (or .cpp) files built by `make`, along with their corresponding .h files. If your project has a .h file with no corresponding .cc file, IWYU will ignore it unless you use the `--check_also` switch to add it for analysis together with a .cc file.
-
#### Using with CMake ####
CMake has grown native support for IWYU as of version 3.3. See [their documentation](https://cmake.org/cmake/help/latest/prop_tgt/LANG_INCLUDE_WHAT_YOU_USE.html) for CMake-side details.
@@ -113,18 +106,17 @@ The `CMAKE_CXX_INCLUDE_WHAT_YOU_USE` option enables a mode where CMake first com
Use it like this:
mkdir build && cd build
- CC="clang" CXX="clang++" cmake -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE="path/to/iwyu;-Xiwyu;any;-Xwiyu;iwyu;-Xwiyu;args" ...
+ CC="clang" CXX="clang++" cmake -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE="path/to/iwyu;-Xiwyu;any;-Xiwyu;iwyu;-Xiwyu;args" ...
or, on Windows systems:
mkdir build && cd build
- cmake -DCMAKE_CXX_COMPILER="%VCINSTALLDIR%/bin/cl.exe" -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE="path/to/iwyu;-Xiwyu;any;-Xwiyu;iwyu;-Xwiyu;args" -G Ninja ...
+ cmake -DCMAKE_CXX_COMPILER="%VCINSTALLDIR%/bin/cl.exe" -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE="path/to/iwyu;-Xiwyu;any;-Xiwyu;iwyu;-Xiwyu;args" -G Ninja ...
The option appears to be separately supported for both C and C++, so use `CMAKE_C_INCLUDE_WHAT_YOU_USE` for C code.
Note that with Microsoft's Visual C++ compiler, IWYU needs the `--driver-mode=cl` argument to understand the MSVC options from CMake.
-
#### Using with a compilation database ####
The `iwyu_tool.py` script predates the native CMake support, and works off the [compilation database format](https://clang.llvm.org/docs/JSONCompilationDatabase.html). For example, CMake generates such a database named `compile_commands.json` with the `CMAKE_EXPORT_COMPILE_COMMANDS` option enabled.
@@ -145,7 +137,6 @@ Unless a source filename is provided, all files in the project will be analyzed.
See `iwyu_tool.py --help` for more options.
-
#### Applying fixes ####
We also include a tool that automatically fixes up your source files based on the IWYU recommendations. This is also alpha-quality software! Here's how to use it (requires python):
@@ -155,15 +146,14 @@ We also include a tool that automatically fixes up your source files based on th
If you don't like the way `fix_includes.py` munges your `#include` lines, you can control its behavior via flags. `fix_includes.py --help` will give a full list, but these are some common ones:
- * `-b`: Put blank lines between system and Google includes
- * `--nocomments`: Don't add the 'why' comments next to includes
-
+* `-b`: Put blank lines between system and Google includes
+* `--nocomments`: Don't add the 'why' comments next to includes
### How to Correct IWYU Mistakes ###
- * If `fix_includes.py` has removed an `#include` you actually need, add it back in with the comment '`// IWYU pragma: keep`' at the end of the `#include` line. Note that the comment is case-sensitive.
- * If `fix_includes.py` has added an `#include` you don't need, just take it out. We hope to come up with a more permanent way of fixing later.
- * If `fix_includes.py` has wrongly added or removed a forward-declare, just fix it up manually.
- * If `fix_includes.py` has suggested a private header file (such as `<bits/stl_vector.h>`) instead of the proper public header file (`<vector>`), you can fix this by inserting a specially crafted comment near top of the private file (assuming you can write to it): '`// IWYU pragma: private, include "the/public/file.h"`'.
+* If `fix_includes.py` has removed an `#include` you actually need, add it back in with the comment '`// IWYU pragma: keep`' at the end of the `#include` line. Note that the comment is case-sensitive.
+* If `fix_includes.py` has added an `#include` you don't need, just take it out. We hope to come up with a more permanent way of fixing later.
+* If `fix_includes.py` has wrongly added or removed a forward-declare, just fix it up manually.
+* If `fix_includes.py` has suggested a private header file (such as `<bits/stl_vector.h>`) instead of the proper public header file (`<vector>`), you can fix this by inserting a specially crafted comment near top of the private file (assuming you can write to it): '`// IWYU pragma: private, include "the/public/file.h"`'.
Current IWYU pragmas are described in [IWYUPragmas](docs/IWYUPragmas.md).
diff --git a/boost-1.64-all-private.imp b/boost-1.64-all-private.imp
new file mode 100644
index 0000000..5f32299
--- /dev/null
+++ b/boost-1.64-all-private.imp
@@ -0,0 +1,5796 @@
+[
+#grep -r '^ *# *include' boost/ | grep -e "boost/[^:]*/detail/.*hp*:" -e "boost/[^:]*/impl/.*hp*:" | grep -e "\:.*/detail/" -e "\:.*/impl/" | perl -nle 'm/^([^:]+).*["<]([^>]+)[">]/ && print qq@ { include: ["<$2>", private, "<$1>", private ] },@' | grep -e \\[\"\<boost/ | sort -u
+#remove circular dependencies
+# boost/fusion/container/set/detail/value_of_data_impl.hpp with itself...
+#
+# { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private ] },
+# { include: ["<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private ] },
+#
+# { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/detail/type_list_impl.hpp>", private ] },
+# { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/detail/type_list_impl_no_pts.hpp>", private ] },
+# { include: ["<boost/python/detail/type_list_impl.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
+# { include: ["<boost/python/detail/type_list_impl_no_pts.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
+
+ { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function2.hpp>", private ] },
+ { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function3.hpp>", private ] },
+ { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function4.hpp>", private ] },
+ { include: ["<boost/algorithm/searching/detail/debugging.hpp>", private, "<boost/algorithm/searching/detail/bm_traits.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/finder_regex.hpp>", private, "<boost/algorithm/string/detail/formatter_regex.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/find_format_store.hpp>", private, "<boost/algorithm/string/detail/find_format_all.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/find_format_store.hpp>", private, "<boost/algorithm/string/detail/find_format.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/replace_storage.hpp>", private, "<boost/algorithm/string/detail/find_format_all.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/replace_storage.hpp>", private, "<boost/algorithm/string/detail/find_format.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/sequence.hpp>", private, "<boost/algorithm/string/detail/replace_storage.hpp>", private ] },
+ { include: ["<boost/algorithm/string/detail/util.hpp>", private, "<boost/algorithm/string/detail/formatter.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_clang.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_codegear.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_gcc.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/is_alignment_constant.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/max_objects.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/max_size.hpp>", private ] },
+ { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/min_size.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align_down.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_android.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_macos.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_msvc.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_posix.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_sunos.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align_up.hpp>", private ] },
+ { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/is_aligned.hpp>", private ] },
+ { include: ["<boost/align/detail/max_size.hpp>", private, "<boost/align/detail/max_align.hpp>", private ] },
+ { include: ["<boost/align/detail/min_size.hpp>", private, "<boost/align/detail/alignment_of.hpp>", private ] },
+ { include: ["<boost/align/detail/min_size.hpp>", private, "<boost/align/detail/alignment_of_msvc.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/polymorphic_iarchive_route.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/polymorphic_oarchive_route.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/polymorphic_iarchive_route.hpp>", private ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/polymorphic_oarchive_route.hpp>", private ] },
+ { include: ["<boost/archive/detail/archive_serializer_map.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/archive_serializer_map.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_iserializer.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_oarchive.hpp>", private, "<boost/archive/detail/common_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_oarchive.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_oserializer.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_pointer_iserializer.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_pointer_iserializer.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_pointer_oserializer.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/check.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/check.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/auto_link_archive.hpp>", private ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/auto_link_warchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/utf8_codecvt_facet.hpp>", private ] },
+ { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/interface_iarchive.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/interface_iarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/interface_oarchive.hpp>", private, "<boost/archive/detail/common_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/interface_oarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/iserializer.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/iserializer.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/addressof.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
+ { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/addressof.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/array_fwd.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/array.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/assert.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/cstdint.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/date_time_fwd.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/function.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_type_requirements.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/limits.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/memory.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_fwd.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/shared_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/throw_exception.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_scheduler_fwd.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/variadic_templates.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/weak_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/openssl_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/date_time_fwd.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_read_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/descriptor_write_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/dev_poll_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/dev_poll_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/epoll_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/epoll_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/eventfd_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/event.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/event.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/fd_set_adapter.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/gcc_arm_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/gcc_sync_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/gcc_x86_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/detail/task_io_service_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/hash_map.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/hash_map.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/buffer_sequence_adapter.ipp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/buffer_sequence_adapter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/descriptor_ops.ipp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/descriptor_ops.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/dev_poll_reactor.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/dev_poll_reactor.ipp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/dev_poll_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/epoll_reactor.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/epoll_reactor.ipp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/epoll_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/eventfd_select_interrupter.ipp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/eventfd_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/handler_tracking.ipp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/handler_tracking.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/kqueue_reactor.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/kqueue_reactor.ipp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/kqueue_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/pipe_select_interrupter.ipp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/pipe_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_event.ipp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_event.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_mutex.ipp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_thread.ipp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_thread.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_tss_ptr.ipp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/posix_tss_ptr.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_descriptor_service.ipp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_descriptor_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_serial_port_service.ipp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_serial_port_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_socket_service_base.ipp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/reactive_socket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/resolver_service_base.ipp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/resolver_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/select_reactor.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/select_reactor.ipp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/select_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/service_registry.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/service_registry.ipp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/service_registry.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/signal_set_service.ipp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/signal_set_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/socket_ops.ipp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/socket_ops.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/socket_select_interrupter.ipp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/socket_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/strand_service.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/strand_service.ipp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/strand_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/task_io_service.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/task_io_service.ipp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/task_io_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/throw_error.ipp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/throw_error.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/timer_queue_ptime.ipp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/timer_queue_ptime.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/timer_queue_set.ipp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/timer_queue_set.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_event.ipp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_event.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_handle_service.ipp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_handle_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_io_service.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_io_service.ipp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_io_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_serial_port_service.ipp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_serial_port_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_socket_service_base.ipp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_iocp_socket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_mutex.ipp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_object_handle_service.ipp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_object_handle_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winrt_ssocket_service_base.ipp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winrt_ssocket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.ipp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winsock_init.ipp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/winsock_init.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_static_mutex.ipp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_static_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_thread.ipp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_thread.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_tss_ptr.ipp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/impl/win_tss_ptr.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/detail/keyword_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/kqueue_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/kqueue_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/macos_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_signal_blocker.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/null_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/object_pool.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/object_pool.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/old_win_sdk_compat.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/task_io_service_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/task_io_service_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pipe_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/task_io_service_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/task_io_service_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/serial_port_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_fd_set_adapter.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_signal_blocker.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/posix_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/task_io_service_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/task_io_service_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/serial_port_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_descriptor_service.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_accept_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_connect_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_recv_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_send_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_sendto_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactive_socket_service_base.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_fwd.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_fwd.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/resolve_endpoint_op.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/resolve_op.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/resolver_service_base.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/service_registry.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/shared_ptr.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/shared_ptr.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
+ { include: ["<boost/asio/detail/shared_ptr.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/detail/signal_handler.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/signal_op.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/signal_op.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ssl/detail/openssl_types.hpp>", private ] },
+ { include: ["<boost/asio/detail/solaris_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/static_mutex.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/static_mutex.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/detail/std_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
+ { include: ["<boost/asio/detail/std_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/std_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/std_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/std_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/task_io_service.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/task_io_service_operation.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/task_io_service_operation.hpp>", private, "<boost/asio/detail/task_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/task_io_service_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/detail/winapi_thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_scheduler_fwd.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/timer_scheduler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/tss_ptr.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
+ { include: ["<boost/asio/detail/tss_ptr.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_handler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_handler.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/weak_ptr.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
+ { include: ["<boost/asio/detail/winapi_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_fd_set_adapter.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_handle_read_op.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_handle_service.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_handle_write_op.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_io_service.hpp>", private, "<boost/asio/impl/io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_operation.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_operation.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_overlapped_op.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_send_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_send_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service_base.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service_base.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_iocp_thread_info.hpp>", private, "<boost/asio/detail/win_iocp_io_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_manager.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_manager.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_resolve_op.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_socket_connect_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_socket_recv_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_socket_send_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_ssocket_service_base.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_timer_scheduler.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_utils.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winrt_utils.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
+ { include: ["<boost/asio/detail/winsock_init.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
+ { include: ["<boost/asio/detail/win_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
+ { include: ["<boost/asio/generic/detail/impl/endpoint.ipp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/generic/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/impl/error.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/impl/handler_alloc_hook.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/impl/io_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/impl/serial_port_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ip/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ip/detail/impl/endpoint.ipp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/ip/impl/address.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ip/impl/address_v4.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ip/impl/address_v6.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ip/impl/host_name.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/local/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/local/detail/impl/endpoint.ipp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/impl/engine.ipp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/impl/engine.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/impl/openssl_init.ipp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/impl/openssl_init.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_init.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/old/detail/openssl_operation.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/stream_core.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
+ { include: ["<boost/asio/ssl/detail/verify_callback.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
+ { include: ["<boost/asio/ssl/impl/context.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ssl/impl/error.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ssl/impl/rfc2818_verification.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
+ { include: ["<boost/asio/ssl/old/detail/openssl_operation.hpp>", private, "<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private ] },
+ { include: ["<boost/atomic/detail/bitwise_cast.hpp>", private, "<boost/atomic/detail/atomic_template.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/atomic_flag.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/atomic_template.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_alpha.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_ppc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_sync.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/interlocked.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/int_sizes.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/link.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/lockpool.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/operations_fwd.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/operations_lockfree.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_cas_based.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_emulated.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_extending_cas_based.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_alpha.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_sync.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_x86_dcas.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_msvc_common.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/pause.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/platform.hpp>", private ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/storage_type.hpp>", private ] },
+ { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/ops_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/caps_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/link.hpp>", private, "<boost/atomic/detail/lockpool.hpp>", private ] },
+ { include: ["<boost/atomic/detail/lockpool.hpp>", private, "<boost/atomic/detail/ops_emulated.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/atomic_template.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/operations_lockfree.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_emulated.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_alpha.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_sync.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_fwd.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_lockfree.hpp>", private, "<boost/atomic/detail/atomic_flag.hpp>", private ] },
+ { include: ["<boost/atomic/detail/operations_lockfree.hpp>", private, "<boost/atomic/detail/operations.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_cas_based.hpp>", private, "<boost/atomic/detail/ops_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_cas_based.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_emulated.hpp>", private, "<boost/atomic/detail/operations.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_gcc_sync.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_extending_cas_based.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_gcc_x86_dcas.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_gcc_x86_dcas.hpp>", private, "<boost/atomic/detail/ops_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/ops_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/operations_lockfree.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_cas_based.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_emulated.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_extending_cas_based.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_alpha.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_atomic.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_sync.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_x86_dcas.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_gcc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_linux_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_msvc_arm.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_msvc_x86.hpp>", private ] },
+ { include: ["<boost/atomic/detail/storage_type.hpp>", private, "<boost/atomic/detail/ops_windows.hpp>", private ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/detail/is_set_type_of.hpp>", private ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/metadata_access_builder.hpp>", private ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/mutant.hpp>", private ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/static_access_builder.hpp>", private ] },
+ { include: ["<boost/bimap/detail/is_set_type_of.hpp>", private, "<boost/bimap/detail/manage_additional_parameters.hpp>", private ] },
+ { include: ["<boost/bimap/detail/is_set_type_of.hpp>", private, "<boost/bimap/detail/manage_bimap_key.hpp>", private ] },
+ { include: ["<boost/bimap/detail/manage_additional_parameters.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
+ { include: ["<boost/bimap/detail/manage_bimap_key.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
+ { include: ["<boost/bimap/detail/map_view_iterator.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
+ { include: ["<boost/bimap/detail/map_view_iterator.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/detail/modifier_adaptor.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/detail/modifier_adaptor.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/detail/set_view_iterator.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
+ { include: ["<boost/bimap/detail/set_view_iterator.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
+ { include: ["<boost/bimap/relation/detail/mutant.hpp>", private, "<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private ] },
+ { include: ["<boost/bimap/relation/detail/static_access_builder.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
+ { include: ["<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
+ { include: ["<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/mac/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/mac/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/posix/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/posix/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/win/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/chrono/detail/inlined/win/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
+ { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
+ { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/merge_path.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private, "<boost/compute/algorithm/detail/scan.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private, "<boost/compute/algorithm/detail/scan.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/serial_reduce.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/algorithm/detail/serial_scan.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/detail/buffer_value.hpp>", private ] },
+ { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/detail/meta_kernel.hpp>", private ] },
+ { include: ["<boost/compute/detail/getenv.hpp>", private, "<boost/compute/detail/path.hpp>", private ] },
+ { include: ["<boost/compute/detail/global_static.hpp>", private, "<boost/compute/detail/parameter_cache.hpp>", private ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/detail/device_ptr.hpp>", private ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/detail/print_range.hpp>", private ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
+ { include: ["<boost/compute/detail/is_contiguous_iterator.hpp>", private, "<boost/compute/detail/iterator_traits.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_plus_distance.hpp>", private, "<boost/compute/algorithm/detail/copy_to_host.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/balanced_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/compact.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/inplace_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/radix_sort.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/search_all.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_accumulate.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_merge.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_scan.hpp>", private ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/detail/print_range.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/balanced_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/compact.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_threads.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/search_all.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_accumulate.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_merge.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_scan.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/functional/detail/unpack.hpp>", private ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/binary_find.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/radix_sort.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/path.hpp>", private, "<boost/compute/detail/parameter_cache.hpp>", private ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/container/detail/scalar.hpp>", private ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/detail/buffer_value.hpp>", private ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/detail/device_ptr.hpp>", private ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
+ { include: ["<boost/compute/detail/sha1.hpp>", private, "<boost/compute/detail/meta_kernel.hpp>", private ] },
+ { include: ["<boost/compute/detail/vendor.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
+ { include: ["<boost/compute/detail/vendor.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/detail/work_size.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
+ { include: ["<boost/compute/detail/work_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
+ { include: ["<boost/compute/functional/detail/nvidia_ballot.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
+ { include: ["<boost/compute/functional/detail/nvidia_popcount.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
+ { include: ["<boost/compute/iterator/detail/get_base_iterator_buffer.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
+ { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/borland.hpp>", private ] },
+ { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/general.hpp>", private ] },
+ { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/has_constraints.hpp>", private ] },
+ { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/msvc.hpp>", private ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/icl/detail/concept_check.hpp>", private ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/icl/detail/concept_check.hpp>", private ] },
+ { include: ["<boost/concept/detail/has_constraints.hpp>", private, "<boost/concept/detail/general.hpp>", private ] },
+ { include: ["<boost/concept/detail/has_constraints.hpp>", private, "<boost/concept/detail/msvc.hpp>", private ] },
+ { include: ["<boost/container/detail/adaptive_node_pool_impl.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/adaptive_node_pool_impl.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/addressof.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/addressof.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/allocation_type.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/allocator_version_traits.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/alloc_lib.h>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
+ { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
+ { include: ["<boost/container/detail/block_list.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
+ { include: ["<boost/container/detail/compare_functors.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/function_detector.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/function_detector.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/container/detail/construct_in_place.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
+ { include: ["<boost/container/detail/construct_in_place.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/copy_move_algo.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/dlmalloc.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
+ { include: ["<boost/container/detail/is_sorted.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/iterator_to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/construct_in_place.hpp>", private ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/math_functions.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/math_functions.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/container/detail/min_max.hpp>", private, "<boost/container/detail/next_capacity.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/mutex.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/mutex.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/node_alloc_holder.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/node_pool_impl.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/node_pool_impl.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/container/detail/pool_common_alloc.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/pool_common_alloc.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/iterator_to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/transform_iterator.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/construct_in_place.hpp>", private ] },
+ { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/interprocess/detail/variadic_templates_tools.hpp>", private ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
+ { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/disable_overload.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_arm.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_arm_mac.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_arm_win.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_i386.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_i386_win.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_mips.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_ppc.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_sparc.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_x86_64.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext_x86_64_win.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/index_sequence.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/invoke.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/tuple.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/config.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/decay_copy.hpp>", private ] },
+ { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/disable_overload.hpp>", private ] },
+ { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/fiber/detail/disable_overload.hpp>", private ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/context/detail/exception.hpp>", private ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/context/detail/index_sequence.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
+ { include: ["<boost/context/detail/index_sequence.hpp>", private, "<boost/context/detail/tuple.hpp>", private ] },
+ { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
+ { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/coroutine2/detail/wrap.hpp>", private ] },
+ { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/fiber/detail/wrap.hpp>", private ] },
+ { include: ["<boost/convert/detail/char.hpp>", private, "<boost/convert/detail/range.hpp>", private ] },
+ { include: ["<boost/convert/detail/forward.hpp>", private, "<boost/convert/detail/is_converter.hpp>", private ] },
+ { include: ["<boost/convert/detail/forward.hpp>", private, "<boost/convert/detail/is_fun.hpp>", private ] },
+ { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/is_callable.hpp>", private ] },
+ { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/is_fun.hpp>", private ] },
+ { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/range.hpp>", private ] },
+ { include: ["<boost/convert/detail/is_callable.hpp>", private, "<boost/convert/detail/is_converter.hpp>", private ] },
+ { include: ["<boost/convert/detail/range.hpp>", private, "<boost/convert/detail/is_string.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/disable_overload.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/pull_coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/push_coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/state.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/pull_coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/push_coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_control_block_cc.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_control_block_cc.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_control_block_ecv1.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_control_block_ecv1.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_coroutine.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/pull_coroutine.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_control_block_cc.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_control_block_cc.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_control_block_ecv1.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_control_block_ecv1.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_coroutine.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/push_coroutine.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/pull_control_block_cc.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/pull_control_block_ecv1.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/push_control_block_cc.hpp>", private ] },
+ { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/push_control_block_ecv1.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/preallocated.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/data.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/setup.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/parameters.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/setup.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/pull_coroutine_impl.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/pull_coroutine_impl.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/push_coroutine_impl.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/push_coroutine_impl.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/setup.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/trampoline.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/trampoline_pull.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/trampoline_pull.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/trampoline_push.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
+ { include: ["<boost/coroutine/detail/trampoline_push.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/auto_space.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/hash_index_node.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/rnd_index_node.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/detail/seq_index_node.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/detail/memory.hpp>", private ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/asio/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/serialization/detail/shared_ptr_nmt_132.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/statechart/detail/counted_base.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/xpressive/detail/utility/counted_base.hpp>", private ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/xpressive/detail/utility/tracking_ptr.hpp>", private ] },
+ { include: ["<boost/detail/basic_pointerbuf.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
+ { include: ["<boost/detail/binary_search.hpp>", private, "<boost/python/suite/indexing/detail/indexing_suite_detail.hpp>", private ] },
+ { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/lambda/detail/operator_return_type_traits.hpp>", private ] },
+ { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/phoenix/stl/algorithm/detail/is_std_list.hpp>", private ] },
+ { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/phoenix/stl/algorithm/detail/is_std_map.hpp>", private ] },
+ { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/phoenix/stl/algorithm/detail/is_std_set.hpp>", private ] },
+ { include: ["<boost/detail/endian.hpp>", private, "<boost/math/special_functions/detail/fp_traits.hpp>", private ] },
+ { include: ["<boost/detail/endian.hpp>", private, "<boost/multiprecision/detail/bitscan.hpp>", private ] },
+ { include: ["<boost/detail/endian.hpp>", private, "<boost/spirit/home/support/detail/endian/endian.hpp>", private ] },
+ { include: ["<boost/detail/endian.hpp>", private, "<boost/spirit/home/support/detail/math/detail/fp_traits.hpp>", private ] },
+ { include: ["<boost/detail/fenv.hpp>", private, "<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private ] },
+ { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
+ { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
+ { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/python/detail/indirect_traits.hpp>", private ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/detail/is_xxx.hpp>", private, "<boost/python/detail/is_xxx.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/algorithm/string/detail/finder.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/algorithm/string/detail/trim.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/range/detail/collection_traits_detail.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/qi/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/qi/stream/detail/iterator_source.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/qi/string/detail/tst.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/support/detail/lexer/generate_cpp.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/support/detail/lexer/input.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/x3/string/detail/tst.hpp>", private ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/x3/support/numeric_utils/detail/extract_int.hpp>", private ] },
+ { include: ["<boost/detail/lcast_precision.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
+ { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/flyweight/detail/recursive_lw_mutex.hpp>", private ] },
+ { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/math/special_functions/detail/bernoulli_details.hpp>", private ] },
+ { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
+ { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/serialization/detail/shared_count_132.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/flyweight/detail/archive_constructed.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/flyweight/detail/flyweight_core.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/geometry/index/detail/varray_detail.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/archive_constructed.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/scope_guard.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/unordered/detail/implementation.hpp>", private ] },
+ { include: ["<boost/detail/quick_allocator.hpp>", private, "<boost/serialization/detail/shared_count_132.hpp>", private ] },
+ { include: ["<boost/detail/reference_content.hpp>", private, "<boost/optional/detail/old_optional_implementation.hpp>", private ] },
+ { include: ["<boost/detail/reference_content.hpp>", private, "<boost/variant/detail/initializer.hpp>", private ] },
+ { include: ["<boost/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private ] },
+ { include: ["<boost/detail/select_type.hpp>", private, "<boost/unordered/detail/implementation.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_aix.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_clang.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_nt.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_pt.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_solaris.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_sync.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/spirit/home/support/detail/hold_any.hpp>", private ] },
+ { include: ["<boost/detail/templated_streams.hpp>", private, "<boost/variant/detail/variant_io.hpp>", private ] },
+ { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/archive/detail/utf8_codecvt_facet.hpp>", private ] },
+ { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/filesystem/detail/utf8_codecvt_facet.hpp>", private ] },
+ { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/program_options/detail/utf8_codecvt_facet.hpp>", private ] },
+ { include: ["<boost/detail/winapi/access_rights.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/access_rights.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/process/detail/windows/file_descriptor.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/process/detail/windows/job_workaround.hpp>", private ] },
+ { include: ["<boost/detail/winapi/basic_types.hpp>", private, "<boost/process/detail/windows/shell_path.hpp>", private ] },
+ { include: ["<boost/detail/winapi/character_code_conversion.hpp>", private, "<boost/process/detail/windows/locale.hpp>", private ] },
+ { include: ["<boost/detail/winapi/config.hpp>", private, "<boost/detail/winapi/detail/cast_ptr.hpp>", private ] },
+ { include: ["<boost/detail/winapi/config.hpp>", private, "<boost/log/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/winapi/config.hpp>", private, "<boost/process/detail/windows/job_workaround.hpp>", private ] },
+ { include: ["<boost/detail/winapi/dll.hpp>", private, "<boost/dll/detail/windows/path_from_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/dll.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/detail/winapi/dll.hpp>", private, "<boost/process/detail/windows/job_workaround.hpp>", private ] },
+ { include: ["<boost/detail/winapi/environment.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
+ { include: ["<boost/detail/winapi/error_codes.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/error_codes.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/error_codes.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/error_codes.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
+ { include: ["<boost/detail/winapi/error_codes.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
+ { include: ["<boost/detail/winapi/file_management.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/file_management.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/file_management.hpp>", private, "<boost/process/detail/windows/compare_handles.hpp>", private ] },
+ { include: ["<boost/detail/winapi/file_management.hpp>", private, "<boost/process/detail/windows/file_descriptor.hpp>", private ] },
+ { include: ["<boost/detail/winapi/file_management.hpp>", private, "<boost/process/detail/windows/locale.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_current_process.hpp>", private, "<boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_current_process.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_current_process_id.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_current_thread.hpp>", private, "<boost/chrono/detail/inlined/win/thread_clock.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/chrono/detail/inlined/win/chrono.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/chrono/detail/inlined/win/thread_clock.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/dll/detail/windows/path_from_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/process/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_last_error.hpp>", private, "<boost/process/detail/windows/terminate.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_process_times.hpp>", private, "<boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_system_directory.hpp>", private, "<boost/process/detail/windows/shell_path.hpp>", private ] },
+ { include: ["<boost/detail/winapi/get_thread_times.hpp>", private, "<boost/chrono/detail/inlined/win/thread_clock.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handle_info.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handle_info.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handle_info.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handle_info.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handle_info.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/child_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/close_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/close_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/compare_handles.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/file_descriptor.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/io_service_ref.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/pipe_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/handles.hpp>", private, "<boost/process/detail/windows/pipe_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/jobs.hpp>", private, "<boost/process/detail/windows/child_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/jobs.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/jobs.hpp>", private, "<boost/process/detail/windows/wait_group.hpp>", private ] },
+ { include: ["<boost/detail/winapi/pipes.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/pipes.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/child_handle.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/close_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/close_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/io_service_ref.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/is_running.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/pipe_in.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/pipe_out.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/show_window.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/terminate.hpp>", private ] },
+ { include: ["<boost/detail/winapi/process.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/detail/winapi/shell.hpp>", private, "<boost/process/detail/windows/search_path.hpp>", private ] },
+ { include: ["<boost/detail/winapi/show_window.hpp>", private, "<boost/process/detail/windows/show_window.hpp>", private ] },
+ { include: ["<boost/detail/winapi/srw_lock.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
+ { include: ["<boost/detail/winapi/synchronization.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/detail/winapi/thread.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/detail/winapi/time.hpp>", private, "<boost/chrono/detail/inlined/win/chrono.hpp>", private ] },
+ { include: ["<boost/detail/winapi/timers.hpp>", private, "<boost/chrono/detail/inlined/win/chrono.hpp>", private ] },
+ { include: ["<boost/detail/winapi/wait.hpp>", private, "<boost/process/detail/windows/wait_group.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/impl/basic_xml_grammar.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/concept/detail/has_constraints.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/context/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/coroutine2/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/coroutine/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/fiber/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/flyweight_core.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/not_placeholder_expr.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/function_types/detail/cv_traits.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/container/vector/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/adjacency_list.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/adj_list_edge_iterator.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/read_graphviz_new.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/read_graphviz_spirit.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/adapter/mode_adapter.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/add_facet.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/codecvt_helper.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/codecvt.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/disable_warnings.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/dyn_link.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/overload_resolution.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/wide_streams.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/default_arg.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/double_object.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/execute.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/ios.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/is_dereferenceable.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/wrap_unwrap.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iterator/detail/config_def.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/lambda/detail/lambda_functors.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/inf_nan.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/access_specifier.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/promotes_arg.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/unbounded.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/optional/detail/optional_config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/cmdline.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/config_file.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/convert.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/proto/detail/as_expr.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/destroy.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/enable_if.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/string_literal.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/random/detail/operators.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/range/detail/begin.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/range/detail/end.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/signals2/detail/auto_buffer.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/support/detail/lexer/parser/tokeniser/num_token.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/support/detail/what_function.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/statechart/detail/rtti_policy.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/test/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/thread/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/tuple/detail/tuple_basic.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/type_traits/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/apply_visitor_unary.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/config.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/move.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/utility/literals.hpp>", private ] },
+ { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/utility/tracking_ptr.hpp>", private ] },
+ { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
+ { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/demangling/demangle_symbol.hpp>", private, "<boost/dll/detail/demangling/mangled_storage_base.hpp>", private ] },
+ { include: ["<boost/dll/detail/demangling/itanium.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
+ { include: ["<boost/dll/detail/demangling/mangled_storage_base.hpp>", private, "<boost/dll/detail/demangling/itanium.hpp>", private ] },
+ { include: ["<boost/dll/detail/demangling/mangled_storage_base.hpp>", private, "<boost/dll/detail/demangling/msvc.hpp>", private ] },
+ { include: ["<boost/dll/detail/demangling/msvc.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
+ { include: ["<boost/dll/detail/get_mem_fn_type.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
+ { include: ["<boost/dll/detail/posix/path_from_handle.hpp>", private, "<boost/dll/detail/posix/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/posix/program_location_impl.hpp>", private, "<boost/dll/detail/posix/path_from_handle.hpp>", private ] },
+ { include: ["<boost/dll/detail/posix/program_location_impl.hpp>", private, "<boost/dll/detail/posix/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/posix/path_from_handle.hpp>", private ] },
+ { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/posix/program_location_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/windows/path_from_handle.hpp>", private ] },
+ { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/windows/path_from_handle.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
+ { include: ["<boost/dll/detail/x_info_interface.hpp>", private, "<boost/dll/detail/elf_info.hpp>", private ] },
+ { include: ["<boost/dll/detail/x_info_interface.hpp>", private, "<boost/dll/detail/macho_info.hpp>", private ] },
+ { include: ["<boost/dll/detail/x_info_interface.hpp>", private, "<boost/dll/detail/pe_info.hpp>", private ] },
+ { include: ["<boost/exception/detail/clone_current_exception.hpp>", private, "<boost/exception/detail/exception_ptr.hpp>", private ] },
+ { include: ["<boost/exception/detail/type_info.hpp>", private, "<boost/exception/detail/exception_ptr.hpp>", private ] },
+ { include: ["<boost/exception/detail/type_info.hpp>", private, "<boost/exception/detail/object_hex_dump.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/coroutine2/detail/wrap.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/context_spinlock_queue.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/context_spmc_queue.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/convert.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/cpu_relax.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/data.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/decay_copy.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/disable_overload.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/wrap.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/shared_state.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/shared_state_object.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/task_base.hpp>", private ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
+ { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private ] },
+ { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas.hpp>", private ] },
+ { include: ["<boost/fiber/detail/data.hpp>", private, "<boost/coroutine2/detail/wrap.hpp>", private ] },
+ { include: ["<boost/fiber/detail/data.hpp>", private, "<boost/fiber/detail/wrap.hpp>", private ] },
+ { include: ["<boost/fiber/detail/futex.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/futex.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/detail/context_spinlock_queue.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/detail/data.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock_ttas_futex.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/fiber/detail/spinlock_ttas.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/detail/shared_state_object.hpp>", private ] },
+ { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/detail/task_base.hpp>", private ] },
+ { include: ["<boost/fiber/future/detail/task_base.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/dyn_perfect_fwd.hpp>", private, "<boost/flyweight/detail/perfect_fwd.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/is_placeholder_expr.hpp>", private, "<boost/flyweight/detail/nested_xxx_if_not_ph.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/detail/flyweight_core.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/pp_perfect_fwd.hpp>", private, "<boost/flyweight/detail/perfect_fwd.hpp>", private ] },
+ { include: ["<boost/flyweight/detail/value_tag.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
+ { include: ["<boost/format/detail/config_macros.hpp>", private, "<boost/format/detail/compat_workarounds.hpp>", private ] },
+ { include: ["<boost/format/detail/workarounds_gcc-2_95.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
+ { include: ["<boost/format/detail/workarounds_stlport.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
+ { include: ["<boost/functional/hash/detail/float_functions.hpp>", private, "<boost/functional/hash/detail/hash_float.hpp>", private ] },
+ { include: ["<boost/functional/hash/detail/limits.hpp>", private, "<boost/functional/hash/detail/hash_float.hpp>", private ] },
+ { include: ["<boost/function/detail/maybe_include.hpp>", private, "<boost/function/detail/function_iterate.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity10_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity20_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity10_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity20_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity20_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity30_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity20_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity30_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity30_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity40_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity30_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity40_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity40_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity50_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/classifier_impl/arity40_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity50_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity10_0.hpp>", private, "<boost/function_types/detail/components_impl/arity20_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity10_1.hpp>", private, "<boost/function_types/detail/components_impl/arity20_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity20_0.hpp>", private, "<boost/function_types/detail/components_impl/arity30_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity20_1.hpp>", private, "<boost/function_types/detail/components_impl/arity30_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity30_0.hpp>", private, "<boost/function_types/detail/components_impl/arity40_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity30_1.hpp>", private, "<boost/function_types/detail/components_impl/arity40_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity40_0.hpp>", private, "<boost/function_types/detail/components_impl/arity50_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/components_impl/arity40_1.hpp>", private, "<boost/function_types/detail/components_impl/arity50_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/cv_traits.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_tags/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_variate_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_variate_loop/master.hpp>", private ] },
+ { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/detail/classifier.hpp>", private ] },
+ { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
+ { include: ["<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private, "<boost/function_types/detail/retag_default_cc.hpp>", private ] },
+ { include: ["<boost/function_types/detail/pp_retag_default_cc/preprocessed.hpp>", private, "<boost/function_types/detail/retag_default_cc.hpp>", private ] },
+ { include: ["<boost/function_types/detail/retag_default_cc.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity10_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity20_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity10_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity20_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity20_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity30_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity20_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity30_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity30_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity40_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity30_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity40_1.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity40_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity50_0.hpp>", private ] },
+ { include: ["<boost/function_types/detail/synthesize_impl/arity40_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity50_1.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/build_cons.hpp>", private, "<boost/fusion/adapted/boost_tuple/detail/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/array_size.hpp>", private, "<boost/fusion/adapted/std_array/detail/end_impl.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/array_size.hpp>", private, "<boost/fusion/adapted/std_array/detail/size_impl.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/build_std_tuple.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/define_struct.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct_inline.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/detail/extension.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/namespace.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/namespace.hpp>", private, "<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/query/detail/find_if.hpp>", private, "<boost/fusion/view/filter_view/detail/next_impl.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip10.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip20.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip30.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip40.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip50.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/at_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/begin_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/as_deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/build_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque_forward_ctor.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque_initial_size.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque_keyed_values_call.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/as_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque10_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque20_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque30_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque40_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque50_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_initial_size.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/end_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/is_sequence_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/value_at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/deque/detail/value_at_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_deque_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_list_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_list.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_vector_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/build_cons.hpp>", private, "<boost/fusion/container/list/detail/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_forward_ctor.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons_call.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list10_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list10.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list20_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list20.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list30_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list30.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list40_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list40.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list50_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list50.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons10.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons20.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons30.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons40.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons50.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/container/list/detail/reverse_cons.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/at_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/begin_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/deref_data_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/deref_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/end_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/key_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/generation/detail/pp_map_tie.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map_forward_ctor.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map10.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map20.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map30.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map40.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map50.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map10_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map10.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map20_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map20.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map30_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map30.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map40_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map40.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map50_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map50.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/value_at_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/value_of_data_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/value_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/key_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/value_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/as_set.hpp>", private, "<boost/fusion/container/set/detail/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/begin_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/as_set.hpp>", private, "<boost/fusion/container/set/detail/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set10.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set20.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set30.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set40.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set50.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private, "<boost/fusion/container/set/detail/cpp03/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set10_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set10.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set20_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set20.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set30_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set30.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set40_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set40.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set50_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set50.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/set_forward_ctor.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/deref_data_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/deref_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/deref_impl.hpp>", private, "<boost/fusion/container/set/detail/deref_data_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/end_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/key_of_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/value_of_data_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/value_of_data_impl.hpp>", private, "<boost/fusion/container/set/detail/key_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/set/detail/value_of_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/convert_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/detail/value_at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/view/nview/detail/nview_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/map/detail/cpp03/limits.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/set/detail/cpp03/limits.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/tuple/detail/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/value_at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector_forward_ctor.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/deref_impl.hpp>", private ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/value_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/adapt_deref_traits.hpp>", private, "<boost/fusion/view/filter_view/detail/deref_impl.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/adapt_deref_traits.hpp>", private, "<boost/fusion/view/joint_view/detail/deref_impl.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/adapt_value_traits.hpp>", private, "<boost/fusion/view/filter_view/detail/value_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/adapt_value_traits.hpp>", private, "<boost/fusion/view/joint_view/detail/value_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/segmented_equal_to.hpp>", private, "<boost/fusion/iterator/detail/segmented_iterator.hpp>", private ] },
+ { include: ["<boost/fusion/iterator/detail/segment_sequence.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin.hpp>", private ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_end.hpp>", private ] },
+ { include: ["<boost/fusion/sequence/io/detail/manip.hpp>", private, "<boost/fusion/sequence/io/detail/in.hpp>", private ] },
+ { include: ["<boost/fusion/sequence/io/detail/manip.hpp>", private, "<boost/fusion/sequence/io/detail/out.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/algorithm/query/detail/count.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/deque_keyed_values.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/keyed_element.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/list_to_cons.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/value_at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/at_key_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/deref_data_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/map_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/value_at_key_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/deref_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_deque.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_list.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_map.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_set.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/spirit/home/support/detail/make_vector.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/build_std_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/container/set/detail/as_set.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/phoenix/core/detail/index_sequence.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/mpl_iterator_category.hpp>", private, "<boost/fusion/adapted/mpl/detail/category_of_impl.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/pp_round.hpp>", private, "<boost/fusion/container/list/detail/cpp03/limits.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/pp_round.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private ] },
+ { include: ["<boost/fusion/support/detail/segmented_fold_until_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple10_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple20_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple30_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple40_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple50_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private, "<boost/fusion/tuple/detail/tuple_fwd.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private, "<boost/fusion/tuple/detail/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/tuple_expand.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/tuple_fwd.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/tuple.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
+ { include: ["<boost/fusion/tuple/detail/tuple.hpp>", private, "<boost/fusion/tuple/detail/tuple_tie.hpp>", private ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private, "<boost/fusion/view/iterator_range/detail/segments_impl.hpp>", private ] },
+ { include: ["<boost/fusion/view/nview/detail/cpp03/nview_impl.hpp>", private, "<boost/fusion/view/nview/detail/nview_impl.hpp>", private ] },
+ { include: ["<boost/fusion/view/transform_view/detail/apply_transform_result.hpp>", private, "<boost/fusion/view/transform_view/detail/at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/view/transform_view/detail/apply_transform_result.hpp>", private, "<boost/fusion/view/transform_view/detail/deref_impl.hpp>", private ] },
+ { include: ["<boost/fusion/view/transform_view/detail/apply_transform_result.hpp>", private, "<boost/fusion/view/transform_view/detail/value_at_impl.hpp>", private ] },
+ { include: ["<boost/fusion/view/transform_view/detail/apply_transform_result.hpp>", private, "<boost/fusion/view/transform_view/detail/value_of_impl.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/detail/extreme_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/azimuth.hpp>", private, "<boost/geometry/algorithms/detail/course.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/parallel_continue.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/parallel_continue.hpp>", private, "<boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/closest_feature/range_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/point_on_border.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/equals/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/box_to_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/implementation.hpp>", private, "<boost/geometry/algorithms/detail/comparable_distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/interface.hpp>", private, "<boost/geometry/algorithms/detail/comparable_distance/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/iterator_selector.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/iterator_selector.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private, "<boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private, "<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private, "<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/box.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/box.hpp>", private, "<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/box.hpp>", private, "<boost/geometry/algorithms/detail/expand/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/box.hpp>", private, "<boost/geometry/algorithms/detail/expand/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/initialize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/initialize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/linear.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private, "<boost/geometry/algorithms/detail/expand/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private, "<boost/geometry/algorithms/detail/expand/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/algorithms/detail/expand/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private, "<boost/geometry/algorithms/detail/envelope/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private, "<boost/geometry/algorithms/detail/envelope/point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private, "<boost/geometry/algorithms/detail/envelope/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private, "<boost/geometry/algorithms/detail/expand/point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/point_on_border.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/box.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/box.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/indexed.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/indexed.hpp>", private, "<boost/geometry/algorithms/detail/expand/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/indexed.hpp>", private, "<boost/geometry/algorithms/detail/expand/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/segment.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/segment.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/extreme_points.hpp>", private, "<boost/geometry/multi/algorithms/detail/extreme_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/multi/algorithms/detail/for_each_range.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/get_left_turns.hpp>", private, "<boost/geometry/algorithms/detail/occupation_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/counting.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/extreme_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private, "<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/multi.hpp>", private, "<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/always_simple.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/debug_print_boundary_points.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/box.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/complement_graph.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_complement_graph.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/pointlike.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/segment.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/pointlike.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/segment.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/max_interval_gap.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_modify.hpp>", private, "<boost/geometry/multi/algorithms/detail/modify.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_modify_with_predicate.hpp>", private, "<boost/geometry/multi/algorithms/detail/modify_with_predicate.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_sum.hpp>", private, "<boost/geometry/multi/algorithms/detail/multi_sum.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/intersects_antimeridian.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/expand/point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/not.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/occupation_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/aggregate_operations.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/clip_linestring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/check_enrich.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/clip_linestring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/convert_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/copy_segment_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/copy_segments.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/debug_turn.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/follow.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/follow.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/get_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/inconsistent_turns_exception.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp>", private, "<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private, "<boost/geometry/algorithms/detail/intersection/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/get_left_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/aggregate_operations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/get_left_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/compare_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/visit_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/visit_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/within/within_no_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/multi/algorithms/detail/point_on_border.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/de9im.hpp>", private, "<boost/geometry/algorithms/detail/relate/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/implementation.hpp>", private, "<boost/geometry/algorithms/detail/relation/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relation/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/less.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/less.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/less.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/less.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/de9im.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/check_enrich.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/convert_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/multi/algorithms/detail/sections/range_by_section.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/multi/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/ring_identifier.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/sweep.hpp>", private, "<boost/geometry/algorithms/detail/max_interval_gap.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/throw_on_empty_input.hpp>", private, "<boost/geometry/algorithms/detail/distance/interface.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/turns/compare_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/turns/debug_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/turns/remove_duplicate_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
+ { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/within/within_no_turns.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_near.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/algorithms/union_content.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/insert.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/margin.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/path_intersection.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/segment_intersection.hpp>", private, "<boost/geometry/index/detail/algorithms/path_intersection.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/smallest_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_near.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/assert.hpp>", private, "<boost/geometry/index/detail/exception.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/assert.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/algorithms/bounds.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/exception.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/is_bounding_geometry.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/linear/linear.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/concept.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_boxes_ok.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_counts_ok.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_levels_ok.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/pairs.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/pairs.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/scoped_deallocator.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/variant_dynamic.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/variant_static.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/variant_visitor.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/quadratic.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/rstar/insert.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/destroy.hpp>", private, "<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/remove.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/tags.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/tags.hpp>", private, "<boost/geometry/index/detail/predicates.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/tuples.hpp>", private, "<boost/geometry/algorithms/detail/relate/de9im.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/varray_detail.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/varray.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
+ { include: ["<boost/geometry/index/detail/varray.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
+ { include: ["<boost/geometry/io/wkt/detail/prefix.hpp>", private, "<boost/geometry/multi/io/wkt/detail/prefix.hpp>", private ] },
+ { include: ["<boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp>", private, "<boost/geometry/iterators/detail/point_iterator/iterator_type.hpp>", private ] },
+ { include: ["<boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
+ { include: ["<boost/geometry/iterators/detail/point_iterator/value_type.hpp>", private, "<boost/geometry/iterators/detail/point_iterator/iterator_type.hpp>", private ] },
+ { include: ["<boost/geometry/iterators/detail/segment_iterator/range_segment_iterator.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
+ { include: ["<boost/geometry/iterators/detail/segment_iterator/value_type.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/boundary_view.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/boundary_view/implementation.hpp>", private, "<boost/geometry/views/detail/boundary_view.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/boundary_view/interface.hpp>", private, "<boost/geometry/views/detail/boundary_view.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/box.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/point.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/normalize.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/multi/views/detail/range_type.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/views/detail/normalized_view.hpp>", private ] },
+ { include: ["<boost/geometry/views/detail/two_dimensional_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private ] },
+ { include: ["<boost/graph/detail/adj_list_edge_iterator.hpp>", private, "<boost/graph/detail/adjacency_list.hpp>", private ] },
+ { include: ["<boost/graph/detail/histogram_sort.hpp>", private, "<boost/graph/detail/compressed_sparse_row_struct.hpp>", private ] },
+ { include: ["<boost/graph/detail/indexed_properties.hpp>", private, "<boost/graph/detail/compressed_sparse_row_struct.hpp>", private ] },
+ { include: ["<boost/graph/detail/shadow_iterator.hpp>", private, "<boost/graph/detail/permutation.hpp>", private ] },
+ { include: ["<boost/graph/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/parallel/detail/property_holders.hpp>", private ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/detail/array.hpp>", private ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/detail/unpack_flatten.hpp>", private ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/detail/unpack_flatten.hpp>", private ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/detail/create.hpp>", private ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/detail/std_common_type.hpp>", private ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/detail/has_duplicates.hpp>", private ] },
+ { include: ["<boost/hana/detail/intrinsics.hpp>", private, "<boost/hana/detail/ebo.hpp>", private ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/detail/nested_by.hpp>", private ] },
+ { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/detail/nested_than.hpp>", private ] },
+ { include: ["<boost/hana/detail/nested_to_fwd.hpp>", private, "<boost/hana/detail/nested_to.hpp>", private ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/detail/integral_constant.hpp>", private ] },
+ { include: ["<boost/hana/detail/preprocessor.hpp>", private, "<boost/hana/detail/struct_macros.erb.hpp>", private ] },
+ { include: ["<boost/hana/detail/preprocessor.hpp>", private, "<boost/hana/detail/struct_macros.hpp>", private ] },
+ { include: ["<boost/hana/detail/std_common_type.hpp>", private, "<boost/hana/detail/concepts.hpp>", private ] },
+ { include: ["<boost/hana/detail/variadic/at.hpp>", private, "<boost/hana/detail/variadic/reverse_apply/flat.hpp>", private ] },
+ { include: ["<boost/hana/detail/variadic/reverse_apply/unrolled.hpp>", private, "<boost/hana/detail/variadic/reverse_apply.hpp>", private ] },
+ { include: ["<boost/hana/detail/variadic/split_at.hpp>", private, "<boost/hana/detail/variadic/take.hpp>", private ] },
+ { include: ["<boost/hana/detail/void_t.hpp>", private, "<boost/hana/detail/concepts.hpp>", private ] },
+ { include: ["<boost/hana/detail/void_t.hpp>", private, "<boost/hana/detail/has_common_embedding.hpp>", private ] },
+ { include: ["<boost/heap/detail/ordered_adaptor_iterator.hpp>", private, "<boost/heap/detail/mutable_heap.hpp>", private ] },
+ { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/detail/ordered_adaptor_iterator.hpp>", private ] },
+ { include: ["<boost/icl/detail/associated_value.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/detail/associated_value.hpp>", private ] },
+ { include: ["<boost/icl/detail/element_comparer.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/element_comparer.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/interval_subset_comparer.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/interval_subset_comparer.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/mapped_reference.hpp>", private, "<boost/icl/detail/element_iterator.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/element_comparer.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_morphism.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_subset_comparer.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/map_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/subset_comparer.hpp>", private ] },
+ { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
+ { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_subset_comparer.hpp>", private ] },
+ { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/subset_comparer.hpp>", private ] },
+ { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/detail/map_algo.hpp>", private ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/allocators/detail/node_tools.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/cast_tags.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/file_locking_helpers.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/in_place_interface.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/in_place_interface.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/intermodule_singleton_common.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/intermodule_singleton_common.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/intermodule_singleton.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/managed_global_memory.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/multi_segment_services.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/multi_segment_services.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/nothrow.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/segment_manager_helper.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/variadic_templates_tools.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
+ { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
+ { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
+ { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
+ { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/algorithm.hpp>", private, "<boost/container/detail/algorithm.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/common_slist_algorithms.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/common_slist_algorithms.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/bstree_algorithms_base.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/function_detector.hpp>", private, "<boost/intrusive/detail/is_stateful_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/hook_traits.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/detail/node_to_value.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/container/detail/iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/is_stateful_value_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/math.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/node_to_value.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/node_holder.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/node_holder.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/parent_from_member.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/pointer_element.hpp>", private, "<boost/intrusive/detail/to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/reverse_iterator.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/to_raw_pointer.hpp>", private, "<boost/intrusive/detail/default_header_holder.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/to_raw_pointer.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/tree_value_compare.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/tree_value_compare.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/detail/bstree_algorithms_base.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/default_header_holder.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/ebo_functor_holder.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/equal_to_value.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/exception_disposer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/list_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/pointer_element.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/size_holder.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/to_raw_pointer.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
+ { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/access_control.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/concept_adapter.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/device_adapter.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/filter_adapter.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/mode_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/output_iterator_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/range_adapter.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/adapter/range_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/bool_trait_def.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/broken_overload_resolution/forward.hpp>", private, "<boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/broken_overload_resolution/forward.hpp>", private, "<boost/iostreams/detail/broken_overload_resolution/stream.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/device_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/filter_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/counted_array.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/codecvt.hpp>", private, "<boost/iostreams/detail/codecvt_helper.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/codecvt.hpp>", private, "<boost/iostreams/detail/codecvt_holder.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/gcc.hpp>", private, "<boost/iostreams/detail/config/overload_resolution.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/gcc.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/execute.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/overload_resolution.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/unreachable_return.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/char_traits.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/config/codecvt.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/fstream.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/ios.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/iostream.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/path.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/absolute_path.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/config/rtl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/file_handle.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/system_failure.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/current_directory.hpp>", private, "<boost/iostreams/detail/absolute_path.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/double_object.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/double_object.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/wrap_unwrap.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/device_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/filter_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/mode_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/buffer.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/config/fpos.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/counted_array.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/error.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/functional.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/system_failure.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/is_dereferenceable.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/is_iterator_range.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/optional.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/optional.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/push.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/push_params.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/push_params.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/resolve.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/access_control.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/dispatch.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/system_failure.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/template_params.hpp>", private, "<boost/iostreams/detail/bool_trait_def.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/translate_int_type.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/bimap/detail/set_view_iterator.hpp>", private ] },
+ { include: ["<boost/lambda/detail/is_instance_of.hpp>", private, "<boost/lambda/detail/operator_return_type_traits.hpp>", private ] },
+ { include: ["<boost/lambda/detail/is_instance_of.hpp>", private, "<boost/lambda/detail/operators.hpp>", private ] },
+ { include: ["<boost/lambda/detail/lambda_fwd.hpp>", private, "<boost/lambda/detail/lambda_functor_base.hpp>", private ] },
+ { include: ["<boost/lambda/detail/lambda_traits.hpp>", private, "<boost/lambda/detail/lambda_functor_base.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/inf_nan.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/is_character.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/inf_nan.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
+ { include: ["<boost/lexical_cast/detail/widest_char.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/void.hpp>", private, "<boost/local_function/detail/preprocessor/void_list.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/atomic.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/parameter.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/prefix.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/tagged_ptr_dcas.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/tagged_ptr.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
+ { include: ["<boost/lockfree/detail/tagged_ptr_ptrcompression.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
+ { include: ["<boost/log/detail/attachable_sstream_buf.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
+ { include: ["<boost/log/detail/attr_output_terminal.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/cleanup_scope_guard.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/asio_fwd.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/date_time_fmt_gen_traits_fwd.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/native_typeof.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/pp_identity.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/setup_config.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/unhandled_exception_count.hpp>", private ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
+ { include: ["<boost/log/detail/copy_cv.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/date_time_format_parser.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
+ { include: ["<boost/log/detail/id.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
+ { include: ["<boost/log/detail/id.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
+ { include: ["<boost/log/detail/is_character_type.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
+ { include: ["<boost/log/detail/is_character_type.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
+ { include: ["<boost/log/detail/pause.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
+ { include: ["<boost/log/detail/timestamp.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
+ { include: ["<boost/log/detail/unhandled_exception_count.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
+ { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/multiprecision/detail/big_lanczos.hpp>", private ] },
+ { include: ["<boost/math/distributions/detail/hypergeometric_pdf.hpp>", private, "<boost/math/distributions/detail/hypergeometric_cdf.hpp>", private ] },
+ { include: ["<boost/math/distributions/detail/hypergeometric_pdf.hpp>", private, "<boost/math/distributions/detail/hypergeometric_quantile.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/airy_ai_bi_zero.hpp>", private, "<boost/math/special_functions/detail/bessel_jy_zero.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_j0.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_j0.hpp>", private, "<boost/math/special_functions/detail/bessel_y0.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_j1.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_j1.hpp>", private, "<boost/math/special_functions/detail/bessel_y1.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_asym.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_asym.hpp>", private, "<boost/math/special_functions/detail/bessel_jy.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_jy.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_k0.hpp>", private, "<boost/math/special_functions/detail/bessel_kn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_k1.hpp>", private, "<boost/math/special_functions/detail/bessel_kn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_y0.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/bessel_y1.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
+ { include: ["<boost/math/special_functions/detail/t_distribution_inv.hpp>", private, "<boost/math/special_functions/detail/ibeta_inverse.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/apply_parser.hpp>", private, "<boost/metaparse/v1/impl/sequence_impl.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/at_c.hpp>", private, "<boost/metaparse/v1/impl/string_iterator.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/concat.hpp>", private, "<boost/metaparse/v1/impl/string.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/concat.hpp>", private, "<boost/metaparse/v1/impl/update_c.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/fwd/iterate_impl.hpp>", private, "<boost/metaparse/v1/impl/iterate_impl_unchecked.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/iterate_impl_unchecked.hpp>", private, "<boost/metaparse/v1/impl/iterate_impl.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/later_result.hpp>", private, "<boost/metaparse/v1/impl/one_of_fwd_op.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/no_char.hpp>", private, "<boost/metaparse/v1/impl/string_at.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/nth_of_c_impl.hpp>", private, "<boost/metaparse/v1/impl/nth_of_c.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/one_of_fwd_op.hpp>", private, "<boost/metaparse/v1/impl/one_of.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/impl/pop_back.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/impl/remove_trailing_no_chars.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/impl/split_at_c.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/sequence_impl.hpp>", private, "<boost/metaparse/v1/impl/sequence.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/size.hpp>", private, "<boost/metaparse/v1/impl/pop_back.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/size.hpp>", private, "<boost/metaparse/v1/impl/push_back_c.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/skip_seq.hpp>", private, "<boost/metaparse/v1/impl/nth_of_c_impl.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/split_at_c.hpp>", private, "<boost/metaparse/v1/impl/update_c.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/string_iterator_tag.hpp>", private, "<boost/metaparse/v1/impl/string_iterator.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/update_c.hpp>", private, "<boost/metaparse/v1/impl/pop_back.hpp>", private ] },
+ { include: ["<boost/metaparse/v1/impl/update_c.hpp>", private, "<boost/metaparse/v1/impl/push_back_c.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/basic_op.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/basic_op.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/insertion_sort.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/insertion_sort.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/merge.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/merge.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/algo/detail/merge_sort.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
+ { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/geometry/index/detail/varray_detail.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/intrusive/detail/has_member_function_callable_with.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/basic_op.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/meta_utils_core.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/meta_utils_core.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
+ { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
+ { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
+ { include: ["<boost/move/detail/placement_new.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/reverse_iterator.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/container/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/interprocess/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/intrusive/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/container/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/interprocess/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/intrusive/detail/std_fwd.hpp>", private ] },
+ { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/detail/move_helpers.hpp>", private ] },
+ { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
+ { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/fwd_macros.hpp>", private ] },
+ { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
+ { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
+ { include: ["<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/mpi/detail/ignore_oprimitive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
+ { include: ["<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
+ { include: ["<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
+ { include: ["<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private, "<boost/mpi/detail/mpi_datatype_cache.hpp>", private ] },
+ { include: ["<boost/mpi/detail/mpi_datatype_primitive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
+ { include: ["<boost/mpi/detail/mpi_datatype_primitive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/adl_swap.hpp>", private, "<boost/multi_index/detail/auto_space.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/bucket_array.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/index_loader.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/index_matcher.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/bidir_node_iterator.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/copy_map.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/duplicates_iterator.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/hash_index_node.hpp>", private, "<boost/multi_index/detail/bucket_array.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/header_holder.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/archive_constructed.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/index_node_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_base.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_loader.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_matcher.hpp>", private, "<boost/multi_index/detail/index_saver.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/index_saver.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/is_index_list.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/is_index_list.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/is_transparent.hpp>", private, "<boost/multi_index/detail/promotes_arg.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/iter_adaptor.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/modify_key_adaptor.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/node_type.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ord_index_impl_fwd.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ord_index_node.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/ord_index_ops.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/promotes_arg.hpp>", private, "<boost/multi_index/detail/ord_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/promotes_arg.hpp>", private, "<boost/multi_index/detail/rnk_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/hash_index_node.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/index_loader.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/index_matcher.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/rnd_index_node.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/seq_index_node.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/archive_constructed.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/index_node_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/rnd_index_node.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private, "<boost/multi_index/detail/rnd_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/signals2/detail/auto_buffer.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/seq_index_node.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/uintptr_type.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/unbounded.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/value_compare.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/default_ops.hpp>", private, "<boost/multiprecision/detail/generic_interconvert.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/et_ops.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/functions/constants.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/functions/pow.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/functions/trig.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/min_max.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/no_et_ops.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/number_base.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
+ { include: ["<boost/multiprecision/detail/rebind.hpp>", private, "<boost/multiprecision/detail/dynamic_array.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/conversion_traits.hpp>", private, "<boost/numeric/conversion/detail/converter.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/int_float_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/int_float_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/is_subranged.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/converter.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/int_float_mixture.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/sign_mixture.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp>", private, "<boost/numeric/conversion/detail/numeric_cast_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp>", private, "<boost/numeric/conversion/detail/numeric_cast_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/sign_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/sign_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
+ { include: ["<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/bcc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private, "<boost/numeric/interval/detail/c99_rounding_control.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/detail/test_input.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/msvc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
+ { include: ["<boost/numeric/interval/detail/x86gcc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_const.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_const.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/adaptive_iterator_impl.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/const_step_iterator_impl.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/n_step_iterator_impl.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/times_iterator_impl.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_call_algebra.hpp>", private, "<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_operations.hpp>", private, "<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_const.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_times.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp>", private ] },
+ { include: ["<boost/numeric/ublas/detail/definitions.hpp>", private, "<boost/numeric/ublas/detail/config.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/function_eval_expr.hpp>", private, "<boost/phoenix/core/detail/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/function_eval.hpp>", private, "<boost/phoenix/core/detail/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/phx2_result.hpp>", private, "<boost/phoenix/core/detail/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private, "<boost/phoenix/core/detail/cpp03/actor_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private, "<boost/phoenix/core/detail/cpp03/actor_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/assign.hpp>", private, "<boost/phoenix/core/detail/cpp03/assign.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private, "<boost/phoenix/core/detail/cpp03/call.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private, "<boost/phoenix/core/detail/cpp03/expression.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_equal.hpp>", private, "<boost/phoenix/core/detail/cpp03/function_equal.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private, "<boost/phoenix/core/detail/cpp03/function_eval_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private, "<boost/phoenix/core/detail/cpp03/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/phx2_result.hpp>", private, "<boost/phoenix/core/detail/cpp03/phx2_result.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function_object.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
+ { include: ["<boost/phoenix/core/detail/phx2_result.hpp>", private, "<boost/phoenix/core/detail/function_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_10.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_20.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_30.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_40.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_50.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private, "<boost/phoenix/function/detail/cpp03/function_operator.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private, "<boost/phoenix/object/detail/cpp03/new_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private, "<boost/phoenix/object/detail/cpp03/new_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private, "<boost/phoenix/object/detail/cpp03/new.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/local_gen.hpp>", private, "<boost/phoenix/scope/detail/cpp03/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_10.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_20.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_30.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_40.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_50.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private, "<boost/phoenix/scope/detail/cpp03/dynamic.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_10.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_20.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_30.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_40.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_50.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private, "<boost/phoenix/scope/detail/cpp03/lambda.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private, "<boost/phoenix/statement/detail/catch_push_back.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private, "<boost/phoenix/statement/detail/switch.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private, "<boost/phoenix/statement/detail/try_catch_eval.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private, "<boost/phoenix/statement/detail/try_catch_expression.hpp>", private ] },
+ { include: ["<boost/phoenix/support/detail/iterate_define.hpp>", private, "<boost/phoenix/support/detail/iterate.hpp>", private ] },
+ { include: ["<boost/phoenix/support/detail/iterate_undef.hpp>", private, "<boost/phoenix/support/detail/iterate.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_binary.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_nullary.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_unary.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/dmc/auto_rec.hpp>", private, "<boost/preprocessor/detail/auto_rec.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/proto/detail/remove_typename.hpp>", private ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/range/detail/microsoft.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/lower1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/lower2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/lower3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/lower4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/lower5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/upper1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/upper2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/upper3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/upper4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/bounds/upper5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/finish.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/iter/reverse1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/iter/reverse2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/iter/reverse3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/iter/reverse4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/iter/reverse5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/rlocal.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
+ { include: ["<boost/preprocessor/iteration/detail/start.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower1.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower2.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower3.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower4.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower5.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper1.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper2.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper3.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper4.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper5.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/finish.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/start.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/counter.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot1.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot2.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot3.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot4.hpp>", private ] },
+ { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot5.hpp>", private ] },
+ { include: ["<boost/preprocessor/variadic/detail/is_single_return.hpp>", private, "<boost/preprocessor/seq/detail/binary_transform.hpp>", private ] },
+ { include: ["<boost/process/detail/basic_cmd.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/compare_handles.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/env_init.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/environment.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/is_running.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/search_path.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/shell_path.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/terminate.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/wait_group.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/throw_on_error.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/async.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/error.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/group.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/compare_handles.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/is_running.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/search_path.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/shell_path.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/terminate.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/wait_group.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/async_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/handler.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/throw_on_error.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/close_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/close_out.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/handler.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/io_service_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/pipe_in.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/pipe_out.hpp>", private ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/show_window.hpp>", private ] },
+ { include: ["<boost/process/detail/handler.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/asio_fwd.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/async_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/io_service_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/basic_cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/basic_pipe.hpp>", private, "<boost/process/detail/posix/async_pipe.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/basic_pipe.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/group_handle.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/is_running.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/terminate.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/cmd.hpp>", private, "<boost/process/detail/posix/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/compare_handles.hpp>", private, "<boost/process/detail/posix/basic_pipe.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/executor.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/file_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/file_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/null_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/null_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/group_handle.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/group_handle.hpp>", private, "<boost/process/detail/posix/wait_group.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/async_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/close_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/close_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/env_init.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/fd.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/file_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/file_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/io_service_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/null_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/null_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/pipe_in.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/pipe_out.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/signal.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/start_dir.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/use_vfork.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/is_running.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/on_exit.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/terminate.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/use_vfork.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/posix/wait_for_exit.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/async.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/async.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/cmd_or_exe.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/env.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/error.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/group.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/env.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/env.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/error.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/io_service_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/basic_cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/basic_pipe.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/compare_handles.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/executor.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/group_handle.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/async_handler.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/basic_cmd.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/start_dir.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/is_running.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/is_running.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/job_workaround.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/on_exit.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/terminate.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/process/detail/windows/wait_for_exit.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
+ { include: ["<boost/program_options/detail/convert.hpp>", private, "<boost/program_options/detail/config_file.hpp>", private ] },
+ { include: ["<boost/program_options/detail/convert.hpp>", private, "<boost/program_options/detail/parsers.hpp>", private ] },
+ { include: ["<boost/property_map/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/parallel/detail/untracked_pair.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/detail/info_parser_error.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_error.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/info_parser_error.hpp>", private, "<boost/property_tree/detail/info_parser_read.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/info_parser_utils.hpp>", private, "<boost/property_tree/detail/info_parser_read.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/info_parser_utils.hpp>", private, "<boost/property_tree/detail/info_parser_write.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_writer_settings.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/rapidxml.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_flags.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_write.hpp>", private ] },
+ { include: ["<boost/property_tree/detail/xml_parser_writer_settings.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
+ { include: ["<boost/property_tree/json_parser/detail/narrow_encoding.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
+ { include: ["<boost/property_tree/json_parser/detail/parser.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
+ { include: ["<boost/property_tree/json_parser/detail/standard_callbacks.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
+ { include: ["<boost/property_tree/json_parser/detail/wide_encoding.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
+ { include: ["<boost/proto/context/detail/preprocessed/callable_eval.hpp>", private, "<boost/proto/context/detail/callable_eval.hpp>", private ] },
+ { include: ["<boost/proto/context/detail/preprocessed/default_eval.hpp>", private, "<boost/proto/context/detail/default_eval.hpp>", private ] },
+ { include: ["<boost/proto/context/detail/preprocessed/null_eval.hpp>", private, "<boost/proto/context/detail/null_eval.hpp>", private ] },
+ { include: ["<boost/proto/detail/any.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
+ { include: ["<boost/proto/detail/class_member_traits.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
+ { include: ["<boost/proto/detail/decltype.hpp>", private, "<boost/phoenix/bind/detail/member_variable.hpp>", private ] },
+ { include: ["<boost/proto/detail/deduce_domain_n.hpp>", private, "<boost/proto/detail/deduce_domain.hpp>", private ] },
+ { include: ["<boost/proto/detail/ignore_unused.hpp>", private, "<boost/xpressive/detail/utility/ignore_unused.hpp>", private ] },
+ { include: ["<boost/proto/detail/is_noncopyable.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
+ { include: ["<boost/proto/detail/memfun_funop.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
+ { include: ["<boost/proto/detail/poly_function_funop.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
+ { include: ["<boost/proto/detail/poly_function_traits.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/and_n.hpp>", private, "<boost/proto/detail/and_n.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/args.hpp>", private, "<boost/proto/detail/args.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/basic_expr.hpp>", private, "<boost/proto/detail/basic_expr.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/class_member_traits.hpp>", private, "<boost/proto/detail/class_member_traits.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/deduce_domain_n.hpp>", private, "<boost/proto/detail/deduce_domain_n.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/deep_copy.hpp>", private, "<boost/proto/detail/deep_copy.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/expr.hpp>", private, "<boost/proto/detail/expr.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/expr_variadic.hpp>", private, "<boost/proto/detail/expr.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/extends_funop_const.hpp>", private, "<boost/proto/detail/extends_funop_const.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/extends_funop.hpp>", private, "<boost/proto/detail/extends_funop.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/funop.hpp>", private, "<boost/proto/detail/funop.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/generate_by_value.hpp>", private, "<boost/proto/detail/generate_by_value.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/lambda_matches.hpp>", private, "<boost/proto/detail/lambda_matches.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/make_expr_funop.hpp>", private, "<boost/proto/detail/make_expr_funop.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/make_expr_.hpp>", private, "<boost/proto/detail/make_expr_.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/make_expr.hpp>", private, "<boost/proto/detail/make_expr.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/matches_.hpp>", private, "<boost/proto/detail/matches_.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/memfun_funop.hpp>", private, "<boost/proto/detail/memfun_funop.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/or_n.hpp>", private, "<boost/proto/detail/or_n.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/poly_function_funop.hpp>", private, "<boost/proto/detail/poly_function_funop.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/poly_function_traits.hpp>", private, "<boost/proto/detail/poly_function_traits.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/template_arity_helper.hpp>", private, "<boost/proto/detail/template_arity_helper.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/traits.hpp>", private, "<boost/proto/detail/traits.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/unpack_expr_.hpp>", private, "<boost/proto/detail/unpack_expr_.hpp>", private ] },
+ { include: ["<boost/proto/detail/preprocessed/vararg_matches_impl.hpp>", private, "<boost/proto/detail/vararg_matches_impl.hpp>", private ] },
+ { include: ["<boost/proto/detail/template_arity_helper.hpp>", private, "<boost/proto/detail/template_arity.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/expand_pack.hpp>", private, "<boost/proto/transform/detail/pack.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/pack_impl.hpp>", private, "<boost/proto/transform/detail/pack.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/call.hpp>", private, "<boost/proto/transform/detail/call.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/construct_funop.hpp>", private, "<boost/proto/transform/detail/construct_funop.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/construct_pod_funop.hpp>", private, "<boost/proto/transform/detail/construct_pod_funop.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/default_function_impl.hpp>", private, "<boost/proto/transform/detail/default_function_impl.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/expand_pack.hpp>", private, "<boost/proto/transform/detail/expand_pack.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/fold_impl.hpp>", private, "<boost/proto/transform/detail/fold_impl.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/lazy.hpp>", private, "<boost/proto/transform/detail/lazy.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/make_gcc_workaround.hpp>", private, "<boost/proto/transform/detail/make_gcc_workaround.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/make.hpp>", private, "<boost/proto/transform/detail/make.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/pack_impl.hpp>", private, "<boost/proto/transform/detail/pack_impl.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/pass_through_impl.hpp>", private, "<boost/proto/transform/detail/pass_through_impl.hpp>", private ] },
+ { include: ["<boost/proto/transform/detail/preprocessed/when.hpp>", private, "<boost/proto/transform/detail/when.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/default_deleter.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/is_convertible.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/move.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/reversible_ptr_container.hpp>", private, "<boost/ptr_container/detail/associative_ptr_container.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/reversible_ptr_container.hpp>", private, "<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/scoped_deleter.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/serialize_xml_names.hpp>", private, "<boost/ptr_container/detail/serialize_ptr_map_adapter.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/serialize_xml_names.hpp>", private, "<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/static_move_ptr.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
+ { include: ["<boost/ptr_container/detail/throw_exception.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
+ { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/exception_handler.hpp>", private ] },
+ { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/prefix.hpp>", private ] },
+ { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/scope.hpp>", private ] },
+ { include: ["<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private, "<boost/python/detail/value_arg.hpp>", private ] },
+ { include: ["<boost/python/detail/cv_category.hpp>", private, "<boost/python/detail/unwind_type.hpp>", private ] },
+ { include: ["<boost/python/detail/defaults_gen.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
+ { include: ["<boost/python/detail/def_helper_fwd.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
+ { include: ["<boost/python/detail/exception_handler.hpp>", private, "<boost/python/detail/translate_exception.hpp>", private ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/decorated_type_id.hpp>", private ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/signature.hpp>", private ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/unwind_type.hpp>", private ] },
+ { include: ["<boost/python/detail/invoke.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
+ { include: ["<boost/python/detail/is_auto_ptr.hpp>", private, "<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private ] },
+ { include: ["<boost/python/detail/is_shared_ptr.hpp>", private, "<boost/python/detail/value_is_shared_ptr.hpp>", private ] },
+ { include: ["<boost/python/detail/is_wrapper.hpp>", private, "<boost/python/detail/unwrap_wrapper.hpp>", private ] },
+ { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/is_auto_ptr.hpp>", private ] },
+ { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/is_shared_ptr.hpp>", private ] },
+ { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/value_is_xxx.hpp>", private ] },
+ { include: ["<boost/python/detail/make_keyword_range_fn.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/detail/def_helper_fwd.hpp>", private ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/aix_init_module.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/is_wrapper.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/none.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/nullary_function_adaptor.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/sfinae.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/unwrap_wrapper.hpp>", private ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/wrapper_base.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/defaults_gen.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/result.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/signature.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/target.hpp>", private ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
+ { include: ["<boost/python/detail/python22_fixed.h>", private, "<boost/python/detail/wrap_python.hpp>", private ] },
+ { include: ["<boost/python/detail/scope.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
+ { include: ["<boost/python/detail/sfinae.hpp>", private, "<boost/python/detail/enable_if.hpp>", private ] },
+ { include: ["<boost/python/detail/signature.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/detail/type_list_impl.hpp>", private ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/detail/type_list_impl_no_pts.hpp>", private ] },
+ { include: ["<boost/python/detail/type_list_impl.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
+ { include: ["<boost/python/detail/type_list_impl_no_pts.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
+ { include: ["<boost/python/detail/value_is_xxx.hpp>", private, "<boost/python/detail/value_is_shared_ptr.hpp>", private ] },
+ { include: ["<boost/python/detail/wrap_python.hpp>", private, "<boost/python/detail/prefix.hpp>", private ] },
+ { include: ["<boost/qvm/detail/determinant_impl.hpp>", private, "<boost/qvm/detail/cofactor_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/detail/operators.hpp>", private ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
+ { include: ["<boost/random/detail/const_mod.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
+ { include: ["<boost/random/detail/generator_bits.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/generator_bits.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
+ { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/int_float_pair.hpp>", private ] },
+ { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
+ { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/random/detail/large_arithmetic.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/detail/int_float_pair.hpp>", private ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
+ { include: ["<boost/range/detail/any_iterator_buffer.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
+ { include: ["<boost/range/detail/any_iterator_buffer.hpp>", private, "<boost/range/detail/any_iterator_interface.hpp>", private ] },
+ { include: ["<boost/range/detail/any_iterator_interface.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
+ { include: ["<boost/range/detail/any_iterator_interface.hpp>", private, "<boost/range/detail/any_iterator_wrapper.hpp>", private ] },
+ { include: ["<boost/range/detail/any_iterator_wrapper.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
+ { include: ["<boost/range/detail/begin.hpp>", private, "<boost/range/detail/detail_str.hpp>", private ] },
+ { include: ["<boost/range/detail/collection_traits_detail.hpp>", private, "<boost/range/detail/collection_traits.hpp>", private ] },
+ { include: ["<boost/range/detail/combine_no_rvalue.hpp>", private, "<boost/range/detail/combine_cxx03.hpp>", private ] },
+ { include: ["<boost/range/detail/combine_rvalue.hpp>", private, "<boost/range/detail/combine_cxx03.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/begin.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/detail_str.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/difference_type.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/empty.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/end.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/implementation_help.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/size_type.hpp>", private ] },
+ { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/value_type.hpp>", private ] },
+ { include: ["<boost/range/detail/demote_iterator_traversal_tag.hpp>", private, "<boost/range/detail/join_iterator.hpp>", private ] },
+ { include: ["<boost/range/detail/detail_str.hpp>", private, "<boost/range/detail/as_literal.hpp>", private ] },
+ { include: ["<boost/range/detail/end.hpp>", private, "<boost/range/detail/detail_str.hpp>", private ] },
+ { include: ["<boost/range/detail/implementation_help.hpp>", private, "<boost/range/detail/end.hpp>", private ] },
+ { include: ["<boost/range/detail/remove_extent.hpp>", private, "<boost/range/detail/value_type.hpp>", private ] },
+ { include: ["<boost/range/detail/sfinae.hpp>", private, "<boost/range/detail/common.hpp>", private ] },
+ { include: ["<boost/range/detail/size_type.hpp>", private, "<boost/range/detail/detail_str.hpp>", private ] },
+ { include: ["<boost/range/detail/value_type.hpp>", private, "<boost/range/detail/detail_str.hpp>", private ] },
+ { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/mpl/gcd.hpp>", private ] },
+ { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/mpl/lcm.hpp>", private ] },
+ { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/overflow_helpers.hpp>", private ] },
+ { include: ["<boost/ratio/detail/mpl/sign.hpp>", private, "<boost/ratio/detail/overflow_helpers.hpp>", private ] },
+ { include: ["<boost/ratio/detail/overflow_helpers.hpp>", private, "<boost/chrono/detail/is_evenly_divisible_by.hpp>", private ] },
+ { include: ["<boost/serialization/detail/get_data.hpp>", private, "<boost/mpi/detail/mpi_datatype_primitive.hpp>", private ] },
+ { include: ["<boost/serialization/detail/get_data.hpp>", private, "<boost/mpi/detail/packed_iprimitive.hpp>", private ] },
+ { include: ["<boost/serialization/detail/get_data.hpp>", private, "<boost/mpi/detail/packed_oprimitive.hpp>", private ] },
+ { include: ["<boost/serialization/detail/shared_count_132.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
+ { include: ["<boost/serialization/detail/shared_ptr_nmt_132.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
+ { include: ["<boost/signals2/detail/auto_buffer.hpp>", private, "<boost/signals2/detail/slot_call_iterator.hpp>", private ] },
+ { include: ["<boost/signals2/detail/signals_common.hpp>", private, "<boost/signals2/detail/tracked_objects_visitor.hpp>", private ] },
+ { include: ["<boost/signals2/detail/signals_common_macros.hpp>", private, "<boost/signals2/detail/preprocessed_arg_type.hpp>", private ] },
+ { include: ["<boost/signals2/detail/unique_lock.hpp>", private, "<boost/signals2/detail/slot_call_iterator.hpp>", private ] },
+ { include: ["<boost/signals2/detail/variadic_arg_type.hpp>", private, "<boost/signals2/detail/variadic_slot_invoker.hpp>", private ] },
+ { include: ["<boost/signals/detail/config.hpp>", private, "<boost/signals/detail/named_slot_map.hpp>", private ] },
+ { include: ["<boost/signals/detail/config.hpp>", private, "<boost/signals/detail/signal_base.hpp>", private ] },
+ { include: ["<boost/signals/detail/config.hpp>", private, "<boost/signals/detail/signals_common.hpp>", private ] },
+ { include: ["<boost/signals/detail/config.hpp>", private, "<boost/signals/detail/slot_call_iterator.hpp>", private ] },
+ { include: ["<boost/signals/detail/named_slot_map.hpp>", private, "<boost/signals/detail/signal_base.hpp>", private ] },
+ { include: ["<boost/signals/detail/signals_common.hpp>", private, "<boost/signals/detail/named_slot_map.hpp>", private ] },
+ { include: ["<boost/signals/detail/signals_common.hpp>", private, "<boost/signals/detail/signal_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_gcc.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_gcc_x86.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_nt.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_pt.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_spin.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_std_atomic.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_sync.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count_win32.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/lightweight_mutex.hpp>", private, "<boost/smart_ptr/detail/quick_allocator.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/lwm_nop.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/lwm_pthreads.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/lwm_win32_cs.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/quick_allocator.hpp>", private, "<boost/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_aix.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_clang.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_nt.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_pt.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_sync.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_counted_impl.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_disable_deprecated.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_has_sync.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_has_sync.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_has_sync.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_gcc_arm.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock.hpp>", private, "<boost/smart_ptr/detail/spinlock_pool.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_nt.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_pool.hpp>", private, "<boost/smart_ptr/detail/atomic_count_spin.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_pool.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_pt.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_std_atomic.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_sync.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_w32.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/atomic_count_win32.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/spinlock_w32.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_gcc_arm.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_std_atomic.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_sync.hpp>", private ] },
+ { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_w32.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/integer_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/string_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/integer_sort.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/integer_sort.hpp>", private ] },
+ { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/string_sort.hpp>", private ] },
+ { include: ["<boost/spirit/fusion/detail/access.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
+ { include: ["<boost/spirit/fusion/detail/config.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
+ { include: ["<boost/spirit/fusion/iterator/detail/iterator_base.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
+ { include: ["<boost/spirit/fusion/sequence/detail/sequence_base.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/basic_chset.ipp>", private, "<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/range_run.hpp>", private, "<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/range_run.ipp>", private, "<boost/spirit/home/classic/utility/impl/chset/range_run.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/extract_from.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/pass_container.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/detail/string_compare.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/detail/string_generate.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/stream/detail/iterator_sink.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/generate.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/generate_to.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/karma/stream/detail/format_manip.hpp>", private, "<boost/spirit/home/karma/stream/detail/format_manip_auto.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/detail/string_parse.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/pass_container.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/detail/construct.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
+ { include: ["<boost/spirit/home/qi/stream/detail/match_manip.hpp>", private, "<boost/spirit/home/qi/stream/detail/match_manip_auto.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/endian/cover_operators.hpp>", private, "<boost/spirit/home/support/detail/endian/endian.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/endian/endian.hpp>", private, "<boost/spirit/home/support/detail/endian.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/detail/pass_container.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/math/detail/fp_traits.hpp>", private, "<boost/spirit/home/support/detail/math/fpclassify.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/math/detail/fp_traits.hpp>", private, "<boost/spirit/home/support/detail/math/signbit.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/math/fpclassify.hpp>", private, "<boost/spirit/home/support/detail/sign.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/math/signbit.hpp>", private, "<boost/spirit/home/support/detail/sign.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/support/detail/endian/endian.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/fixed_size_queue.hpp>", private, "<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private, "<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/first_owner_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/functor_input_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/istream_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/lex_input_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/split_functor_input_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp>", private ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/detail/alternative.hpp>", private ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/detail/sequence.hpp>", private ] },
+ { include: ["<boost/spirit/home/x3/nonterminal/detail/transform_attribute.hpp>", private, "<boost/spirit/home/x3/nonterminal/detail/rule.hpp>", private ] },
+ { include: ["<boost/statechart/detail/avoid_unused_warning.hpp>", private, "<boost/statechart/detail/memory.hpp>", private ] },
+ { include: ["<boost/statechart/detail/counted_base.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
+ { include: ["<boost/statechart/detail/state_base.hpp>", private, "<boost/statechart/detail/leaf_state.hpp>", private ] },
+ { include: ["<boost/statechart/detail/state_base.hpp>", private, "<boost/statechart/detail/node_state.hpp>", private ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/detail/global_typedef.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/detail/throw_exception.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/detail/workaround.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/expression_holder.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/it_pair.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/detail/global_typedef.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/detail/throw_exception.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/detail/workaround.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/expression_holder.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/it_pair.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
+ { include: ["<boost/test/detail/workaround.hpp>", private, "<boost/test/detail/global_typedef.hpp>", private ] },
+ { include: ["<boost/test/detail/workaround.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
+ { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/log/detail/config.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_deque_base.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/counter.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/force_cast.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/lockable_wrapper.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/log.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/move.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/singleton.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/thread_interruption.hpp>", private ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/tss_hooks.hpp>", private ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/counter.hpp>", private ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/move.hpp>", private ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/thread_interruption.hpp>", private ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/is_convertible.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/make_tuple_indices.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
+ { include: ["<boost/thread/detail/make_tuple_indices.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/memory.hpp>", private, "<boost/thread/detail/function_wrapper.hpp>", private ] },
+ { include: ["<boost/thread/detail/memory.hpp>", private, "<boost/thread/detail/nullary_function.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_deque_base.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/function_wrapper.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/invoke.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/is_convertible.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/nullary_function.hpp>", private ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/detail/config.hpp>", private ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/detail/thread_heap_alloc.hpp>", private ] },
+ { include: ["<boost/thread/detail/thread_heap_alloc.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
+ { include: ["<boost/thread/detail/variadic_footer.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
+ { include: ["<boost/thread/detail/variadic_header.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
+ { include: ["<boost/thread/executors/detail/priority_executor_base.hpp>", private, "<boost/thread/executors/detail/scheduled_executor_base.hpp>", private ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/detail/config_all.hpp>", private ] },
+ { include: ["<boost/tti/detail/dcomp_mem_fun.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dtype.hpp>", private ] },
+ { include: ["<boost/tti/detail/dftclass.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/dftclass.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
+ { include: ["<boost/tti/detail/dlambda.hpp>", private, "<boost/tti/detail/dtype.hpp>", private ] },
+ { include: ["<boost/tti/detail/dmem_data.hpp>", private, "<boost/tti/detail/ddata.hpp>", private ] },
+ { include: ["<boost/tti/detail/dmem_fun.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
+ { include: ["<boost/tti/detail/dmem_fun.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
+ { include: ["<boost/tti/detail/dmetafunc.hpp>", private, "<boost/tti/detail/dlambda.hpp>", private ] },
+ { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
+ { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/dplaceholder.hpp>", private, "<boost/tti/detail/dlambda.hpp>", private ] },
+ { include: ["<boost/tti/detail/dptmf.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
+ { include: ["<boost/tti/detail/dstatic_mem_data.hpp>", private, "<boost/tti/detail/ddata.hpp>", private ] },
+ { include: ["<boost/tti/detail/dstatic_mem_fun.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
+ { include: ["<boost/tti/detail/dtemplate.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
+ { include: ["<boost/tti/detail/dtemplate_params.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
+ { include: ["<boost/tti/detail/dtfunction.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/adapt_to_vtable.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/any_base.hpp>", private, "<boost/type_erasure/detail/access.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/check_map.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/get_signature.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/normalize_deduced.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/check_map.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/instantiate.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/instantiate.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/detail/access.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
+ { include: ["<boost/type_erasure/detail/vtable.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/common_arithmetic_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/composite_member_pointer_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/composite_pointer_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/composite_pointer_type.hpp>", private, "<boost/type_traits/detail/composite_member_pointer_type.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/template_arity_spec.hpp>", private, "<boost/type_traits/detail/bool_trait_def.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/convert/detail/has_member.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/iostreams/detail/bool_trait_def.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/range/detail/sfinae.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_binary_operator.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_postfix_operator.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_prefix_operator.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_function_ptr_tester.hpp>", private ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/linear_algebra.hpp>", private ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/sort.hpp>", private ] },
+ { include: ["<boost/units/detail/heterogeneous_conversion.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/linear_algebra.hpp>", private, "<boost/units/detail/heterogeneous_conversion.hpp>", private ] },
+ { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/static_rational_power.hpp>", private ] },
+ { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/unscale.hpp>", private ] },
+ { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/systems/detail/constants.hpp>", private ] },
+ { include: ["<boost/units/detail/push_front_if.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/push_front_if.hpp>", private, "<boost/units/detail/push_front_or_add.hpp>", private ] },
+ { include: ["<boost/units/detail/push_front_or_add.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/sort.hpp>", private, "<boost/units/detail/linear_algebra.hpp>", private ] },
+ { include: ["<boost/units/detail/static_rational_power.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
+ { include: ["<boost/units/detail/unscale.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
+ { include: ["<boost/unordered/detail/fwd.hpp>", private, "<boost/unordered/detail/implementation.hpp>", private ] },
+ { include: ["<boost/unordered/detail/implementation.hpp>", private, "<boost/unordered/detail/map.hpp>", private ] },
+ { include: ["<boost/unordered/detail/implementation.hpp>", private, "<boost/unordered/detail/set.hpp>", private ] },
+ { include: ["<boost/variant/detail/apply_visitor_binary.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
+ { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
+ { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
+ { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/multivisitors_cpp11_based.hpp>", private ] },
+ { include: ["<boost/variant/detail/backup_holder.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
+ { include: ["<boost/variant/detail/cast_storage.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
+ { include: ["<boost/variant/detail/enable_recursive_fwd.hpp>", private, "<boost/variant/detail/enable_recursive.hpp>", private ] },
+ { include: ["<boost/variant/detail/forced_return.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_unary.hpp>", private ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/detail/forced_return.hpp>", private ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
+ { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
+ { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
+ { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_unary.hpp>", private ] },
+ { include: ["<boost/variant/detail/move.hpp>", private, "<boost/variant/detail/initializer.hpp>", private ] },
+ { include: ["<boost/variant/detail/multivisitors_cpp14_based.hpp>", private, "<boost/variant/detail/multivisitors_cpp14_based.hpp>", private ] },
+ { include: ["<boost/variant/detail/substitute_fwd.hpp>", private, "<boost/variant/detail/substitute.hpp>", private ] },
+ { include: ["<boost/variant/detail/substitute.hpp>", private, "<boost/variant/detail/enable_recursive.hpp>", private ] },
+ { include: ["<boost/vmd/detail/adjust_tuple_type.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/array.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/data_equal_common.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/data_equal.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/parens_split.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_common.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/data_equal_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/equal_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier_concat.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier_concat.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/identifier_concat.hpp>", private ] },
+ { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/match_identifier_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/match_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/is_array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_empty_tuple.hpp>", private, "<boost/vmd/detail/is_array_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/is_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/is_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_identifier.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_identifier.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/is_type_type.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/list.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_identifier_common.hpp>", private, "<boost/vmd/detail/match_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_identifier_common.hpp>", private, "<boost/vmd/detail/match_single_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_identifier.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_identifier.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/equal_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/equal_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/is_type_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/modifiers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/mods.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/only_after.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/only_after.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/nil_registration.hpp>", private, "<boost/vmd/detail/is_list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/is_entire.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/number_registration.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/number_registration.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
+ { include: ["<boost/vmd/detail/only_after.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens_common.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens_common.hpp>", private, "<boost/vmd/detail/parens_split.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens_split.hpp>", private, "<boost/vmd/detail/is_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/parens_split.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_10.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_11.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_12.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_13.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_14.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_15.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_16.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_1.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_2.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_3.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_4.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_5.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_6.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_7.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_8.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_9.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_10.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_11.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_12.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_13.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_14.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_15.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_16.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_1.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_2.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_3.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_4.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_5.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_6.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_7.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_8.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_9.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_specific.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_10.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_11.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_12.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_13.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_14.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_15.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_16.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_1.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_2.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_3.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_4.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_5.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_6.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_7.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_8.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_9.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_10.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_11.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_12.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_13.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_14.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_15.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_16.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_1.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_2.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_3.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_4.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_5.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_6.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_7.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_8.hpp>", private ] },
+ { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_9.hpp>", private ] },
+ { include: ["<boost/vmd/detail/seq.hpp>", private, "<boost/vmd/detail/is_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/seq.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_common.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_to_array.hpp>", private, "<boost/vmd/detail/sequence_size.hpp>", private ] },
+ { include: ["<boost/vmd/detail/sequence_to_tuple.hpp>", private, "<boost/vmd/detail/sequence_enum.hpp>", private ] },
+ { include: ["<boost/vmd/detail/tuple.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
+ { include: ["<boost/vmd/detail/tuple.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
+ { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/equal_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
+ { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/is_type_type.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/access.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/access.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/action.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/action.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/finder.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/flow_control.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/icase.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/list.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/optimize.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/static/placeholders.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/placeholders.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/sub_match_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/sub_match_impl.hpp>", private, "<boost/xpressive/detail/core/sub_match_vector.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/core/sub_match_vector.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/access.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/action.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/adaptor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/quant_style.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/sub_match_vector.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/sequence.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/is_pure.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/modifier.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_independent.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_marker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/type_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/width_of.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/utility/boyer_moore.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/traits/detail/c_ctype.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/dynamic.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/access.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/adaptor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/parser_enum.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/parser_enum.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/sequence.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/dynamic/sequence.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/grammar.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/is_pure.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/modifier.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/placeholders.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/placeholders.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_independent.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_marker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_action.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_action.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_independent.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_marker.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transforms/as_set.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/transmogrify.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/type_traits.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/type_traits.hpp>", private, "<boost/xpressive/detail/static/width_of.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/visitor.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/static/width_of.hpp>", private, "<boost/xpressive/detail/static/is_pure.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/utility/traits_utils.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/any.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/boyer_moore.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/chset/basic_chset.ipp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/chset/basic_chset.ipp>", private, "<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/chset/chset.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/chset/chset.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/chset/range_run.ipp>", private, "<boost/xpressive/detail/utility/chset/basic_chset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/cons.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/dont_care.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/utility/algorithm.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/never_true.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/never_true.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/save_restore.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/save_restore.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/sequence_stack.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/symbols.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/tracking_ptr.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/core/quant_style.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/dynamic/sequence.hpp>", private ] },
+ { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] }
+]
diff --git a/boost-1.64-all.imp b/boost-1.64-all.imp
new file mode 100644
index 0000000..7d75110
--- /dev/null
+++ b/boost-1.64-all.imp
@@ -0,0 +1,6780 @@
+[
+# cd /usr/include && grep -r --exclude-dir={detail,impl} '^ *# *include' boost/ | perl -nle 'm/^([^:]+).*["<]([^>]+)[">]/ && print qq@ { include: ["<$2>", private, "<$1>", public ] },@' | grep -e \/detail\/ -e \/impl\/ | grep -e \\[\"\<boost/ | sort -u
+#manually include:
+{ include: ["@<boost/bind/.*>", private, "<boost/bind.hpp>", public ] },
+{ include: ["@<boost/format/.*>", private, "<boost/format.hpp>", public ] },
+{ include: ["@<boost/filesystem/.*>", private, "<boost/filesystem.hpp>", public ] },
+{ include: ["@<boost/function/.*>", private, "<boost/function.hpp>", public ] },
+#manually delete $ sed '/workarounds*\.hpp/d' -i boost-all.imp
+#also good idea to remove all lines refering to folders above (e.g., sed '/\/format\//d' -i boost-all.imp)
+#programatically include:
+ { include: ["<boost/accumulators/numeric/detail/function1.hpp>", private, "<boost/accumulators/numeric/functional.hpp>", public ] },
+ { include: ["<boost/accumulators/numeric/detail/function2.hpp>", private, "<boost/accumulators/numeric/functional.hpp>", public ] },
+ { include: ["<boost/accumulators/numeric/detail/pod_singleton.hpp>", private, "<boost/accumulators/numeric/functional.hpp>", public ] },
+ { include: ["<boost/algorithm/searching/detail/bm_traits.hpp>", private, "<boost/algorithm/searching/boyer_moore_horspool.hpp>", public ] },
+ { include: ["<boost/algorithm/searching/detail/bm_traits.hpp>", private, "<boost/algorithm/searching/boyer_moore.hpp>", public ] },
+ { include: ["<boost/algorithm/searching/detail/debugging.hpp>", private, "<boost/algorithm/searching/boyer_moore_horspool.hpp>", public ] },
+ { include: ["<boost/algorithm/searching/detail/debugging.hpp>", private, "<boost/algorithm/searching/boyer_moore.hpp>", public ] },
+ { include: ["<boost/algorithm/searching/detail/debugging.hpp>", private, "<boost/algorithm/searching/knuth_morris_pratt.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/case_conv.hpp>", private, "<boost/algorithm/string/case_conv.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/classification.hpp>", private, "<boost/algorithm/string/classification.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/finder.hpp>", private, "<boost/algorithm/string/finder.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/finder_regex.hpp>", private, "<boost/algorithm/string/regex_find_format.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/find_format_all.hpp>", private, "<boost/algorithm/string/find_format.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/find_format.hpp>", private, "<boost/algorithm/string/find_format.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/find_iterator.hpp>", private, "<boost/algorithm/string/find_iterator.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/formatter.hpp>", private, "<boost/algorithm/string/formatter.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/formatter_regex.hpp>", private, "<boost/algorithm/string/regex_find_format.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/predicate.hpp>", private, "<boost/algorithm/string/predicate.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/sequence.hpp>", private, "<boost/algorithm/string/join.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/trim.hpp>", private, "<boost/algorithm/string/trim.hpp>", public ] },
+ { include: ["<boost/algorithm/string/detail/util.hpp>", private, "<boost/algorithm/string/iter_find.hpp>", public ] },
+ { include: ["<boost/align/detail/addressof.hpp>", private, "<boost/align/aligned_allocator_adaptor.hpp>", public ] },
+ { include: ["<boost/align/detail/addressof.hpp>", private, "<boost/align/aligned_allocator.hpp>", public ] },
+ { include: ["<boost/align/detail/align_cxx11.hpp>", private, "<boost/align/align.hpp>", public ] },
+ { include: ["<boost/align/detail/align_down.hpp>", private, "<boost/align/align_down.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc_android.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc_macos.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc_msvc.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc_posix.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/aligned_alloc_sunos.hpp>", private, "<boost/align/aligned_alloc.hpp>", public ] },
+ { include: ["<boost/align/detail/align.hpp>", private, "<boost/align/align.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of_clang.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of_codegear.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of_cxx11.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of_gcc.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/alignment_of_msvc.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/align_up.hpp>", private, "<boost/align/align_up.hpp>", public ] },
+ { include: ["<boost/align/detail/assume_aligned_clang.hpp>", private, "<boost/align/assume_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/assume_aligned_gcc.hpp>", private, "<boost/align/assume_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/assume_aligned.hpp>", private, "<boost/align/assume_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/assume_aligned_intel.hpp>", private, "<boost/align/assume_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/assume_aligned_msvc.hpp>", private, "<boost/align/assume_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/element_type.hpp>", private, "<boost/align/alignment_of.hpp>", public ] },
+ { include: ["<boost/align/detail/is_aligned.hpp>", private, "<boost/align/is_aligned.hpp>", public ] },
+ { include: ["<boost/align/detail/is_alignment_constant.hpp>", private, "<boost/align/aligned_allocator_adaptor.hpp>", public ] },
+ { include: ["<boost/align/detail/is_alignment_constant.hpp>", private, "<boost/align/aligned_allocator.hpp>", public ] },
+ { include: ["<boost/align/detail/max_align.hpp>", private, "<boost/align/aligned_allocator_adaptor.hpp>", public ] },
+ { include: ["<boost/align/detail/max_objects.hpp>", private, "<boost/align/aligned_allocator.hpp>", public ] },
+ { include: ["<boost/align/detail/max_size.hpp>", private, "<boost/align/aligned_allocator_adaptor.hpp>", public ] },
+ { include: ["<boost/align/detail/max_size.hpp>", private, "<boost/align/aligned_allocator.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_binary_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_binary_iprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_binary_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_binary_oprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_text_iprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_text_oprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_xml_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/basic_xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/codecvt_null.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/text_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/text_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/xml_archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/xml_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/xml_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/serialization/singleton.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_binary_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_binary_iprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_binary_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_binary_oprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_text_iprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_text_oprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_xml_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/basic_xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/codecvt_null.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/text_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/text_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/xml_archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/xml_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/xml_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/serialization/singleton.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/basic_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/basic_binary_iprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/basic_binary_oprimitive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/basic_xml_archive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/codecvt_null.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/packed_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/packed_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/serialization/singleton.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_warchive.hpp>", private, "<boost/archive/text_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_warchive.hpp>", private, "<boost/archive/text_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_warchive.hpp>", private, "<boost/archive/xml_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/auto_link_warchive.hpp>", private, "<boost/archive/xml_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/collections_load_imp.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/forward_list.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/hash_collections_load_imp.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/list.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/map.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/optional.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/set.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/slist.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/unordered_collections_load_imp.hpp>", public ] },
+ { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/serialization/vector.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/archive/basic_binary_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/archive/basic_text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/archive/basic_xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/mpi/packed_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/archive/basic_binary_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/archive/basic_text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/archive/basic_xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/mpi/packed_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/xml_archive_exception.hpp>", public ] },
+ { include: ["<boost/archive/detail/interface_iarchive.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/interface_oarchive.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/iserializer.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_iarchive_route.hpp>", private, "<boost/archive/polymorphic_binary_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_iarchive_route.hpp>", private, "<boost/archive/polymorphic_text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_iarchive_route.hpp>", private, "<boost/archive/polymorphic_text_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_iarchive_route.hpp>", private, "<boost/archive/polymorphic_xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_iarchive_route.hpp>", private, "<boost/archive/polymorphic_xml_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_oarchive_route.hpp>", private, "<boost/archive/polymorphic_binary_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_oarchive_route.hpp>", private, "<boost/archive/polymorphic_text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_oarchive_route.hpp>", private, "<boost/archive/polymorphic_text_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_oarchive_route.hpp>", private, "<boost/archive/polymorphic_xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/polymorphic_oarchive_route.hpp>", private, "<boost/archive/polymorphic_xml_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/binary_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/binary_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/binary_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/binary_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/polymorphic_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/polymorphic_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/text_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/text_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/text_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/text_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/xml_iarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/xml_oarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/xml_wiarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/archive/xml_woarchive.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/serialization/export.hpp>", public ] },
+ { include: ["<boost/archive/detail/utf8_codecvt_facet.hpp>", private, "<boost/archive/iterators/mb_from_wchar.hpp>", public ] },
+ { include: ["<boost/archive/detail/utf8_codecvt_facet.hpp>", private, "<boost/archive/iterators/wchar_from_mb.hpp>", public ] },
+ { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/array.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/array.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/array.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/buffers_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/buffered_stream_storage.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/buffered_stream_storage.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/buffer_resize_guard.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/chrono_time_traits.hpp>", private, "<boost/asio/waitable_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/async_result.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_io_object.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_seq_packet_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_socket_iostream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_streambuf_fwd.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_stream_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/basic_waitable_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/buffered_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/buffers_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/completion_condition.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/connect.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/deadline_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/raw_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/seq_packet_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/handler_alloc_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/handler_continuation_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/handler_invoke_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/handler_type.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/high_resolution_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/address.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/basic_resolver_entry.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/basic_resolver.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/basic_resolver_query.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/host_name.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/icmp.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/multicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/resolver_query_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/resolver_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/tcp.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/udp.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/unicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/v6_only.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/is_read_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/is_write_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/connect_pair.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/placeholders.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/posix/basic_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/posix/basic_stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/posix/descriptor_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/posix/stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/posix/stream_descriptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/read_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/read.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/serial_port_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/signal_set_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/context_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/old/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/rfc2818_verification.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/stream_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/verify_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/verify_mode.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/steady_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/system_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/use_future.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/waitable_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/basic_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/basic_object_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/basic_random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/basic_stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/object_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/object_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/overlapped_ptr.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/random_access_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/windows/stream_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/write_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/write.hpp>", public ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/read_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/windows/random_access_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/write_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/deadline_timer_service.hpp>", private, "<boost/asio/deadline_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/deadline_timer_service.hpp>", private, "<boost/asio/waitable_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/function.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_seq_packet_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_stream_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/basic_waitable_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/ip/basic_resolver.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/posix/basic_stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/windows/basic_random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/windows/basic_stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/io_control.hpp>", private, "<boost/asio/posix/descriptor_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/io_control.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/buffered_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/ssl/verify_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/windows/overlapped_ptr.hpp>", public ] },
+ { include: ["<boost/asio/detail/null_socket_service.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/null_socket_service.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/null_socket_service.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/null_socket_service.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/async_result.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_io_object.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_seq_packet_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_socket_iostream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_stream_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/basic_waitable_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/buffered_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/buffers_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/completion_condition.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/connect.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/deadline_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/raw_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/seq_packet_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/handler_alloc_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/handler_continuation_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/handler_invoke_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/handler_type.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/address.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/basic_resolver_entry.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/basic_resolver.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/basic_resolver_query.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/host_name.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/icmp.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/multicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/resolver_query_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/resolver_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/tcp.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/udp.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/unicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/v6_only.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/is_read_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/is_write_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/connect_pair.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/placeholders.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/posix/basic_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/posix/basic_stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/posix/descriptor_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/posix/stream_descriptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/read_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/read.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/serial_port_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/signal_set_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/context_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/old/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/rfc2818_verification.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/stream_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/verify_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/verify_mode.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/time_traits.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/use_future.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/waitable_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/wait_traits.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/basic_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/basic_object_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/basic_random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/basic_stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/object_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/overlapped_ptr.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/random_access_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/windows/stream_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/write_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/write.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/async_result.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_io_object.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_seq_packet_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_socket_iostream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_stream_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/basic_waitable_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/buffered_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/buffers_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/completion_condition.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/connect.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/deadline_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/raw_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/seq_packet_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/handler_alloc_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/handler_continuation_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/handler_invoke_hook.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/handler_type.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/address.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/basic_resolver_entry.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/basic_resolver.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/basic_resolver_query.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/host_name.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/icmp.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/multicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/resolver_query_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/resolver_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/tcp.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/udp.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/unicast.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/v6_only.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/is_read_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/is_write_buffered.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/connect_pair.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/placeholders.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/posix/basic_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/posix/basic_stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/posix/descriptor_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/posix/stream_descriptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/read_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/read.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/serial_port_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/signal_set_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/context_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/error.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/context_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/old/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/rfc2818_verification.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/stream_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/stream_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/verify_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/verify_mode.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/time_traits.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/use_future.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/waitable_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/wait_traits.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/basic_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/basic_object_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/basic_random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/basic_stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/object_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/overlapped_ptr.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/random_access_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/windows/stream_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/write_at.hpp>", public ] },
+ { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/write.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_descriptor_service.hpp>", private, "<boost/asio/posix/stream_descriptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_serial_port_service.hpp>", private, "<boost/asio/serial_port_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_socket_service.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_socket_service.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_socket_service.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_socket_service.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/reactive_socket_service.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/regex_fwd.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/detail/resolver_service.hpp>", private, "<boost/asio/ip/resolver_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/shared_ptr.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/signal_init.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/signal_set_service.hpp>", private, "<boost/asio/signal_set_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/ip/basic_resolver_query.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/local/connect_pair.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_option.hpp>", private, "<boost/asio/ip/tcp.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_option.hpp>", private, "<boost/asio/ip/v6_only.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_option.hpp>", private, "<boost/asio/posix/descriptor_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_option.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/raw_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/seq_packet_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/icmp.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/resolver_query_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/tcp.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/udp.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/local/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/local/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/socket_base.hpp>", public ] },
+ { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/time_traits.hpp>", public ] },
+ { include: ["<boost/asio/detail/strand_service.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_deadline_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_seq_packet_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_serial_port.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_signal_set.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_stream_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/basic_waitable_timer.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/basic_resolver.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/local/connect_pair.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/posix/basic_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/posix/basic_stream_descriptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ssl/old/basic_context.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ssl/old/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/windows/basic_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/windows/basic_object_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/windows/basic_random_access_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/windows/basic_stream_handle.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/basic_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/generic/datagram_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/generic/raw_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/generic/seq_packet_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/generic/stream_protocol.hpp>", public ] },
+ { include: ["<boost/asio/detail/timer_queue_ptime.hpp>", private, "<boost/asio/deadline_timer_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/basic_datagram_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/basic_raw_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/basic_socket_acceptor.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/basic_socket.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/buffer.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/buffers_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/ssl/old/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/basic_socket_iostream.hpp>", public ] },
+ { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/basic_socket_streambuf.hpp>", public ] },
+ { include: ["<boost/asio/detail/weak_ptr.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_handle_service.hpp>", private, "<boost/asio/windows/random_access_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_handle_service.hpp>", private, "<boost/asio/windows/stream_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private, "<boost/asio/windows/overlapped_ptr.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_serial_port_service.hpp>", private, "<boost/asio/serial_port_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service.hpp>", private, "<boost/asio/datagram_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service.hpp>", private, "<boost/asio/raw_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service.hpp>", private, "<boost/asio/seq_packet_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service.hpp>", private, "<boost/asio/socket_acceptor_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_iocp_socket_service.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/win_object_handle_service.hpp>", private, "<boost/asio/windows/object_handle_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/winrt_resolver_service.hpp>", private, "<boost/asio/ip/resolver_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/winrt_ssocket_service.hpp>", private, "<boost/asio/stream_socket_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/winrt_utils.hpp>", private, "<boost/asio/ip/basic_resolver_iterator.hpp>", public ] },
+ { include: ["<boost/asio/detail/winsock_init.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/winsock_init.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/detail/winsock_init.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/detail/wrapped_handler.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/detail/wrapped_handler.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/detail/wrapped_handler.hpp>", private, "<boost/asio/strand.hpp>", public ] },
+ { include: ["<boost/asio/generic/detail/endpoint.hpp>", private, "<boost/asio/generic/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/impl/buffered_read_stream.hpp>", private, "<boost/asio/buffered_read_stream.hpp>", public ] },
+ { include: ["<boost/asio/impl/buffered_write_stream.hpp>", private, "<boost/asio/buffered_write_stream.hpp>", public ] },
+ { include: ["<boost/asio/impl/connect.hpp>", private, "<boost/asio/connect.hpp>", public ] },
+ { include: ["<boost/asio/impl/error.ipp>", private, "<boost/asio/error.hpp>", public ] },
+ { include: ["<boost/asio/impl/handler_alloc_hook.ipp>", private, "<boost/asio/handler_alloc_hook.hpp>", public ] },
+ { include: ["<boost/asio/impl/io_service.hpp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/impl/io_service.ipp>", private, "<boost/asio/io_service.hpp>", public ] },
+ { include: ["<boost/asio/impl/read_at.hpp>", private, "<boost/asio/read_at.hpp>", public ] },
+ { include: ["<boost/asio/impl/read.hpp>", private, "<boost/asio/read.hpp>", public ] },
+ { include: ["<boost/asio/impl/read_until.hpp>", private, "<boost/asio/read_until.hpp>", public ] },
+ { include: ["<boost/asio/impl/serial_port_base.hpp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/impl/serial_port_base.ipp>", private, "<boost/asio/serial_port_base.hpp>", public ] },
+ { include: ["<boost/asio/impl/spawn.hpp>", private, "<boost/asio/spawn.hpp>", public ] },
+ { include: ["<boost/asio/impl/use_future.hpp>", private, "<boost/asio/use_future.hpp>", public ] },
+ { include: ["<boost/asio/impl/write_at.hpp>", private, "<boost/asio/write_at.hpp>", public ] },
+ { include: ["<boost/asio/impl/write.hpp>", private, "<boost/asio/write.hpp>", public ] },
+ { include: ["<boost/asio/ip/detail/endpoint.hpp>", private, "<boost/asio/ip/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/ip/detail/socket_option.hpp>", private, "<boost/asio/ip/multicast.hpp>", public ] },
+ { include: ["<boost/asio/ip/detail/socket_option.hpp>", private, "<boost/asio/ip/unicast.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address.hpp>", private, "<boost/asio/ip/address.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address.ipp>", private, "<boost/asio/ip/address.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address_v4.hpp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address_v4.ipp>", private, "<boost/asio/ip/address_v4.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address_v6.hpp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/address_v6.ipp>", private, "<boost/asio/ip/address_v6.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/basic_endpoint.hpp>", private, "<boost/asio/ip/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/ip/impl/host_name.ipp>", private, "<boost/asio/ip/host_name.hpp>", public ] },
+ { include: ["<boost/asio/local/detail/endpoint.hpp>", private, "<boost/asio/local/basic_endpoint.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/handshake_op.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/io.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_init.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/context_base.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/error.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/rfc2818_verification.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/verify_context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/verify_mode.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/password_callback.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/read_op.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/shutdown_op.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/stream_core.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/verify_callback.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/detail/write_op.hpp>", private, "<boost/asio/ssl/stream.hpp>", public ] },
+ { include: ["<boost/asio/ssl/impl/context.hpp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/impl/context.ipp>", private, "<boost/asio/ssl/context.hpp>", public ] },
+ { include: ["<boost/asio/ssl/impl/error.ipp>", private, "<boost/asio/ssl/error.hpp>", public ] },
+ { include: ["<boost/asio/ssl/impl/rfc2818_verification.ipp>", private, "<boost/asio/ssl/rfc2818_verification.hpp>", public ] },
+ { include: ["<boost/asio/ssl/old/detail/openssl_context_service.hpp>", private, "<boost/asio/ssl/old/context_service.hpp>", public ] },
+ { include: ["<boost/asio/ssl/old/detail/openssl_stream_service.hpp>", private, "<boost/asio/ssl/old/stream_service.hpp>", public ] },
+ { include: ["<boost/atomic/detail/atomic_flag.hpp>", private, "<boost/atomic/atomic_flag.hpp>", public ] },
+ { include: ["<boost/atomic/detail/atomic_template.hpp>", private, "<boost/atomic/atomic.hpp>", public ] },
+ { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/capabilities.hpp>", public ] },
+ { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/capabilities.hpp>", public ] },
+ { include: ["<boost/atomic/detail/operations.hpp>", private, "<boost/atomic/atomic_flag.hpp>", public ] },
+ { include: ["<boost/atomic/detail/operations.hpp>", private, "<boost/atomic/atomic.hpp>", public ] },
+ { include: ["<boost/atomic/detail/operations.hpp>", private, "<boost/atomic/fences.hpp>", public ] },
+ { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/capabilities.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/container_adaptor/list_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/container_adaptor/list_map_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/container_adaptor/ordered_associative_container_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/views/multiset_view.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/views/vector_map_view.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/comparison_adaptor.hpp>", private, "<boost/bimap/views/vector_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/functor_bag.hpp>", private, "<boost/bimap/container_adaptor/container_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/identity_converters.hpp>", private, "<boost/bimap/container_adaptor/associative_container_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/identity_converters.hpp>", private, "<boost/bimap/container_adaptor/container_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/identity_converters.hpp>", private, "<boost/bimap/container_adaptor/list_map_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/identity_converters.hpp>", private, "<boost/bimap/container_adaptor/sequence_container_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/identity_converters.hpp>", private, "<boost/bimap/container_adaptor/vector_map_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/key_extractor.hpp>", private, "<boost/bimap/container_adaptor/list_map_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp>", private, "<boost/bimap/container_adaptor/multimap_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp>", private, "<boost/bimap/container_adaptor/multiset_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp>", private, "<boost/bimap/container_adaptor/unordered_multimap_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/container_adaptor/detail/non_unique_container_helper.hpp>", private, "<boost/bimap/container_adaptor/unordered_multiset_adaptor.hpp>", public ] },
+ { include: ["<boost/bimap/detail/bimap_core.hpp>", private, "<boost/bimap/bimap.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/list_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/unconstrained_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/unordered_multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/unordered_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/vector_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/structured_pair.hpp>", public ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/support/member_with_tag.hpp>", public ] },
+ { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/tags/support/tag_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/list_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/unconstrained_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/unordered_multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/unordered_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_index_binder.hpp>", private, "<boost/bimap/vector_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/list_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/unconstrained_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/unordered_multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/unordered_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_relation_binder.hpp>", private, "<boost/bimap/vector_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/list_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/unconstrained_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/unordered_multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/unordered_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/generate_view_binder.hpp>", private, "<boost/bimap/vector_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/bimap.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/list_map_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/list_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/map_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/multimap_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/unordered_map_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/unordered_multimap_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/vector_map_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/map_view_base.hpp>", private, "<boost/bimap/views/vector_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/modifier_adaptor.hpp>", private, "<boost/bimap/bimap.hpp>", public ] },
+ { include: ["<boost/bimap/detail/non_unique_views_helper.hpp>", private, "<boost/bimap/views/multimap_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/non_unique_views_helper.hpp>", private, "<boost/bimap/views/multiset_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/non_unique_views_helper.hpp>", private, "<boost/bimap/views/unordered_multimap_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/non_unique_views_helper.hpp>", private, "<boost/bimap/views/unordered_multiset_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/list_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/multiset_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/unordered_multiset_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/unordered_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/set_view_base.hpp>", private, "<boost/bimap/views/vector_set_view.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/bimap.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/list_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/unconstrained_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/unordered_multiset_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/unordered_set_of.hpp>", public ] },
+ { include: ["<boost/bimap/detail/user_interface_config.hpp>", private, "<boost/bimap/vector_of.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/access_builder.hpp>", private, "<boost/bimap/relation/support/get.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/access_builder.hpp>", private, "<boost/bimap/relation/support/pair_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/access_builder.hpp>", private, "<boost/bimap/support/map_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/relation/support/data_extractor.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/relation/support/opposite_tag.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/relation/support/pair_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/relation/support/value_type_of.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/support/data_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/support/iterator_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/support/key_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/support/map_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/support/value_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/mutant.hpp>", private, "<boost/bimap/relation/mutant_relation.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/static_access_builder.hpp>", private, "<boost/bimap/support/iterator_type_by.hpp>", public ] },
+ { include: ["<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private, "<boost/bimap/views/list_map_view.hpp>", public ] },
+ { include: ["<boost/chrono/detail/inlined/chrono.hpp>", private, "<boost/chrono/system_clocks.hpp>", public ] },
+ { include: ["<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private, "<boost/chrono/process_cpu_clocks.hpp>", public ] },
+ { include: ["<boost/chrono/detail/inlined/thread_clock.hpp>", private, "<boost/chrono/thread_clock.hpp>", public ] },
+ { include: ["<boost/chrono/detail/is_evenly_divisible_by.hpp>", private, "<boost/chrono/duration.hpp>", public ] },
+ { include: ["<boost/chrono/detail/no_warning/signed_unsigned_cmp.hpp>", private, "<boost/chrono/io/duration_get.hpp>", public ] },
+ { include: ["<boost/chrono/detail/no_warning/signed_unsigned_cmp.hpp>", private, "<boost/chrono/io_v1/chrono_io.hpp>", public ] },
+ { include: ["<boost/chrono/detail/scan_keyword.hpp>", private, "<boost/chrono/io/duration_get.hpp>", public ] },
+ { include: ["<boost/chrono/detail/scan_keyword.hpp>", private, "<boost/chrono/io/time_point_get.hpp>", public ] },
+ { include: ["<boost/chrono/detail/scan_keyword.hpp>", private, "<boost/chrono/io/time_point_io.hpp>", public ] },
+ { include: ["<boost/chrono/detail/scan_keyword.hpp>", private, "<boost/chrono/io_v1/chrono_io.hpp>", public ] },
+ { include: ["<boost/chrono/detail/static_assert.hpp>", private, "<boost/chrono/duration.hpp>", public ] },
+ { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/process_cpu_clocks.hpp>", public ] },
+ { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/system_clocks.hpp>", public ] },
+ { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/thread_clock.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/balanced_path.hpp>", private, "<boost/compute/algorithm/includes.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/balanced_path.hpp>", private, "<boost/compute/algorithm/set_difference.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/balanced_path.hpp>", private, "<boost/compute/algorithm/set_intersection.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/balanced_path.hpp>", private, "<boost/compute/algorithm/set_symmetric_difference.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/balanced_path.hpp>", private, "<boost/compute/algorithm/set_union.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/binary_find.hpp>", private, "<boost/compute/algorithm/lower_bound.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/binary_find.hpp>", private, "<boost/compute/algorithm/partition_point.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/binary_find.hpp>", private, "<boost/compute/algorithm/upper_bound.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/compact.hpp>", private, "<boost/compute/algorithm/set_difference.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/compact.hpp>", private, "<boost/compute/algorithm/set_intersection.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/compact.hpp>", private, "<boost/compute/algorithm/set_symmetric_difference.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/compact.hpp>", private, "<boost/compute/algorithm/set_union.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/copy_on_device.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/copy_to_device.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/copy_to_host.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private, "<boost/compute/algorithm/count_if.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/count_if_with_reduce.hpp>", private, "<boost/compute/algorithm/count_if.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/count_if_with_threads.hpp>", private, "<boost/compute/algorithm/count_if.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema.hpp>", private, "<boost/compute/algorithm/max_element.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/find_extrema.hpp>", private, "<boost/compute/algorithm/min_element.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private, "<boost/compute/algorithm/find_if.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/inplace_reduce.hpp>", private, "<boost/compute/algorithm/reduce.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/insertion_sort.hpp>", private, "<boost/compute/algorithm/sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/insertion_sort.hpp>", private, "<boost/compute/algorithm/sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/insertion_sort.hpp>", private, "<boost/compute/algorithm/stable_sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private, "<boost/compute/algorithm/sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private, "<boost/compute/algorithm/sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private, "<boost/compute/algorithm/stable_sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private, "<boost/compute/algorithm/sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private, "<boost/compute/algorithm/sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private, "<boost/compute/algorithm/stable_sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private, "<boost/compute/algorithm/merge.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/radix_sort.hpp>", private, "<boost/compute/algorithm/sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/radix_sort.hpp>", private, "<boost/compute/algorithm/sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/radix_sort.hpp>", private, "<boost/compute/algorithm/stable_sort.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/reduce_by_key.hpp>", private, "<boost/compute/algorithm/reduce_by_key.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private, "<boost/compute/algorithm/reduce.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private, "<boost/compute/algorithm/reduce.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/scan.hpp>", private, "<boost/compute/algorithm/exclusive_scan.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/scan.hpp>", private, "<boost/compute/algorithm/inclusive_scan.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/search_all.hpp>", private, "<boost/compute/algorithm/find_end.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/search_all.hpp>", private, "<boost/compute/algorithm/search.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/serial_accumulate.hpp>", private, "<boost/compute/algorithm/accumulate.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/serial_count_if.hpp>", private, "<boost/compute/algorithm/count_if.hpp>", public ] },
+ { include: ["<boost/compute/algorithm/detail/serial_merge.hpp>", private, "<boost/compute/algorithm/merge.hpp>", public ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/adjacent_find.hpp>", public ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/find_end.hpp>", public ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/next_permutation.hpp>", public ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/prev_permutation.hpp>", public ] },
+ { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/utility/invoke.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/command_queue.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/context.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/device.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/event.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/image/image_sampler.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/kernel.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/memory_object.hpp>", public ] },
+ { include: ["<boost/compute/detail/assert_cl_success.hpp>", private, "<boost/compute/program.hpp>", public ] },
+ { include: ["<boost/compute/detail/buffer_value.hpp>", private, "<boost/compute/container/array.hpp>", public ] },
+ { include: ["<boost/compute/detail/buffer_value.hpp>", private, "<boost/compute/container/flat_map.hpp>", public ] },
+ { include: ["<boost/compute/detail/buffer_value.hpp>", private, "<boost/compute/container/valarray.hpp>", public ] },
+ { include: ["<boost/compute/detail/buffer_value.hpp>", private, "<boost/compute/container/vector.hpp>", public ] },
+ { include: ["<boost/compute/detail/buffer_value.hpp>", private, "<boost/compute/iterator/buffer_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/allocator/buffer_allocator.hpp>", public ] },
+ { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/experimental/malloc.hpp>", public ] },
+ { include: ["<boost/compute/detail/diagnostic.hpp>", private, "<boost/compute/command_queue.hpp>", public ] },
+ { include: ["<boost/compute/detail/duration.hpp>", private, "<boost/compute/event.hpp>", public ] },
+ { include: ["<boost/compute/detail/getenv.hpp>", private, "<boost/compute/program.hpp>", public ] },
+ { include: ["<boost/compute/detail/getenv.hpp>", private, "<boost/compute/system.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/buffer.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/command_queue.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/device.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/event.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/image/image2d.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/image/image3d.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/image/image_object.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/image/image_sampler.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/interop/opengl/opengl_texture.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/kernel.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/memory_object.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/pipe.hpp>", public ] },
+ { include: ["<boost/compute/detail/get_object_info.hpp>", private, "<boost/compute/platform.hpp>", public ] },
+ { include: ["<boost/compute/detail/global_static.hpp>", private, "<boost/compute/utility/program_cache.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/algorithm/fill.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/buffer_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/permutation_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/strided_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_contiguous_iterator.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/is_contiguous_iterator.hpp>", private, "<boost/compute/interop/qt/qvector.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/accumulate.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/adjacent_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/adjacent_find.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/count_if.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/fill.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/find_end.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/for_each.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/gather.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/generate.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/includes.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/is_permutation.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/merge.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/random_shuffle.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/reduce.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/replace.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/reverse.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/scatter.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/scatter_if.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/search.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/search_n.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/set_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/set_intersection.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/set_symmetric_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/set_union.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/sort.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/stable_sort_by_key.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/stable_sort.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/transform_if.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/transform_reduce.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/unique_copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/container/vector.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/experimental/sort_by_transform.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/random/bernoulli_distribution.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/random/linear_congruential_engine.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/random/mersenne_twister_engine.hpp>", public ] },
+ { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/random/threefry_engine.hpp>", public ] },
+ { include: ["<boost/compute/detail/literal.hpp>", private, "<boost/compute/random/bernoulli_distribution.hpp>", public ] },
+ { include: ["<boost/compute/detail/literal.hpp>", private, "<boost/compute/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/compute/detail/literal.hpp>", private, "<boost/compute/random/uniform_real_distribution.hpp>", public ] },
+ { include: ["<boost/compute/detail/lru_cache.hpp>", private, "<boost/compute/utility/program_cache.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/adjacent_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/adjacent_find.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/find_end.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/for_each.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/gather.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/includes.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/reduce.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/replace.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/reverse.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/scatter.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/scatter_if.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/search.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/search_n.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/set_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/set_intersection.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/set_symmetric_difference.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/set_union.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/transform_if.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/unique_copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/functional/bind.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/buffer_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/constant_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/counting_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/discard_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/function_input_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/permutation_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/strided_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/zip_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/lambda/context.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/types/complex.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/types/pair.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/types/struct.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/types/tuple.hpp>", public ] },
+ { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/utility/invoke.hpp>", public ] },
+ { include: ["<boost/compute/detail/mpl_vector_to_tuple.hpp>", private, "<boost/compute/iterator/zip_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/copy.hpp>", public ] },
+ { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/merge.hpp>", public ] },
+ { include: ["<boost/compute/detail/path.hpp>", private, "<boost/compute/program.hpp>", public ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/algorithm/includes.hpp>", public ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/buffer_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/permutation_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/strided_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/compute/detail/sha1.hpp>", private, "<boost/compute/program.hpp>", public ] },
+ { include: ["<boost/compute/detail/variadic_macros.hpp>", private, "<boost/compute/types/struct.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/macros.hpp>", private, "<boost/compute/functional/common.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/macros.hpp>", private, "<boost/compute/functional/geometry.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/macros.hpp>", private, "<boost/compute/functional/integer.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/macros.hpp>", private, "<boost/compute/functional/math.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/macros.hpp>", private, "<boost/compute/functional/relational.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/unpack.hpp>", private, "<boost/compute/algorithm/inner_product.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/unpack.hpp>", private, "<boost/compute/algorithm/mismatch.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/unpack.hpp>", private, "<boost/compute/algorithm/transform.hpp>", public ] },
+ { include: ["<boost/compute/functional/detail/unpack.hpp>", private, "<boost/compute/algorithm/transform_reduce.hpp>", public ] },
+ { include: ["<boost/compute/iterator/detail/get_base_iterator_buffer.hpp>", private, "<boost/compute/iterator/permutation_iterator.hpp>", public ] },
+ { include: ["<boost/compute/iterator/detail/get_base_iterator_buffer.hpp>", private, "<boost/compute/iterator/strided_iterator.hpp>", public ] },
+ { include: ["<boost/compute/iterator/detail/get_base_iterator_buffer.hpp>", private, "<boost/compute/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/compute/type_traits/detail/capture_traits.hpp>", private, "<boost/compute/closure.hpp>", public ] },
+ { include: ["<boost/compute/type_traits/detail/capture_traits.hpp>", private, "<boost/compute/container/array.hpp>", public ] },
+ { include: ["<boost/compute/type_traits/detail/capture_traits.hpp>", private, "<boost/compute/container/vector.hpp>", public ] },
+ { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/usage.hpp>", public ] },
+ { include: ["<boost/concept/detail/borland.hpp>", private, "<boost/concept/assert.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/concept_check.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/graph/bron_kerbosch_all_cliques.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/graph/buffer_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/graph/distributed/concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/graph/graph_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/graph/tiernan_all_cycles.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/iterator/iterator_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/concept_check.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/graph/bron_kerbosch_all_cliques.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/graph/buffer_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/graph/distributed/concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/graph/graph_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/graph/tiernan_all_cycles.hpp>", public ] },
+ { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/iterator/iterator_concepts.hpp>", public ] },
+ { include: ["<boost/concept/detail/general.hpp>", private, "<boost/concept/assert.hpp>", public ] },
+ { include: ["<boost/concept/detail/msvc.hpp>", private, "<boost/concept/assert.hpp>", public ] },
+ { include: ["<boost/container/detail/adaptive_node_pool.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/addressof.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/advanced_insert_int.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/advanced_insert_int.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/allocation_type.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/allocation_type.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/allocation_type.hpp>", private, "<boost/interprocess/containers/allocation_type.hpp>", public ] },
+ { include: ["<boost/container/detail/allocator_version_traits.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/allocator_version_traits.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/pmr/global_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/pmr/monotonic_buffer_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/pmr/synchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/pmr/unsynchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/block_slist.hpp>", private, "<boost/container/pmr/monotonic_buffer_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/compare_functors.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/compare_functors.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/new_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/node_handle.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/options.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/pmr/global_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/pmr/memory_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/pmr/monotonic_buffer_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/pmr/synchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/pmr/unsynchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/scoped_allocator_fwd.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/small_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/static_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/throw_exception.hpp>", public ] },
+ { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/new_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/node_handle.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/options.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/pmr/global_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/pmr/memory_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/pmr/monotonic_buffer_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/pmr/synchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/pmr/unsynchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/scoped_allocator_fwd.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/small_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/static_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/throw_exception.hpp>", public ] },
+ { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/construct_in_place.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/copy_move_algo.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/copy_move_algo.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/dispatch_uses_allocator.hpp>", private, "<boost/container/pmr/polymorphic_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/dispatch_uses_allocator.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/dlmalloc.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/dlmalloc.hpp>", private, "<boost/container/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/dlmalloc.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/flat_tree.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/flat_tree.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/container/detail/min_max.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/min_max.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/node_handle.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/private_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/private_node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/container/detail/next_capacity.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/next_capacity.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/node_alloc_holder.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/node_alloc_holder.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/node_pool.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/pair.hpp>", private, "<boost/interprocess/containers/pair.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/node_handle.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/sync/shm/named_creation_functor.hpp>", public ] },
+ { include: ["<boost/container/detail/pool_resource.hpp>", private, "<boost/container/pmr/synchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/pool_resource.hpp>", private, "<boost/container/pmr/unsynchronized_pool_resource.hpp>", public ] },
+ { include: ["<boost/container/detail/singleton.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/singleton.hpp>", private, "<boost/container/node_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/container_fwd.hpp>", public ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/scoped_allocator_fwd.hpp>", public ] },
+ { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/uses_allocator_fwd.hpp>", public ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/node_handle.hpp>", public ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/to_raw_pointer.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/tree.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/tree.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/small_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/static_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/uses_allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/allocator.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/small_vector.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/string.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/interprocess/containers/version_type.hpp>", public ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/context/execution_context_v1.hpp>", public ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/context/detail/apply.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/execution_context.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/execution_context_v1.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/pooled_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/posix/fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/posix/protected_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/posix/segmented_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/preallocated.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/stack_context.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/stack_traits.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/windows/fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/windows/protected_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine/stack_allocator.hpp>", public ] },
+ { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/context/execution_context_v1.hpp>", public ] },
+ { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/exception.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/exception.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/exchange.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/exchange.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/context/execution_context_v1.hpp>", public ] },
+ { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/tuple.hpp>", private, "<boost/context/continuation.hpp>", public ] },
+ { include: ["<boost/context/detail/tuple.hpp>", private, "<boost/context/execution_context_v2.hpp>", public ] },
+ { include: ["<boost/convert/detail/boost_parameter_ext.hpp>", private, "<boost/convert/parameters.hpp>", public ] },
+ { include: ["<boost/convert/detail/forward.hpp>", private, "<boost/convert/spirit.hpp>", public ] },
+ { include: ["<boost/convert/detail/is_fun.hpp>", private, "<boost/convert.hpp>", public ] },
+ { include: ["<boost/convert/detail/is_string.hpp>", private, "<boost/convert/base.hpp>", public ] },
+ { include: ["<boost/convert/detail/is_string.hpp>", private, "<boost/convert/stream.hpp>", public ] },
+ { include: ["<boost/coroutine2/detail/coroutine.hpp>", private, "<boost/coroutine2/coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine2/detail/coroutine.hpp>", private, "<boost/coroutine2/fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/coroutine2/detail/coroutine.hpp>", private, "<boost/coroutine2/pooled_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/coroutine2/detail/coroutine.hpp>", private, "<boost/coroutine2/protected_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/coroutine2/detail/coroutine.hpp>", private, "<boost/coroutine2/segmented_stack.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/exceptions.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/posix/protected_stack_allocator.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/posix/segmented_stack_allocator.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/stack_context.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/stack_traits.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/standard_stack_allocator.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/windows/protected_stack_allocator.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/pull_coroutine_impl.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/pull_coroutine_object.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/push_coroutine_impl.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/push_coroutine_object.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private, "<boost/coroutine/asymmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private, "<boost/coroutine/symmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private, "<boost/coroutine/symmetric_coroutine.hpp>", public ] },
+ { include: ["<boost/detail/algorithm.hpp>", private, "<boost/graph/graph_utility.hpp>", public ] },
+ { include: ["<boost/detail/algorithm.hpp>", private, "<boost/graph/isomorphism.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/flyweight/set_factory.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/fifo_worker.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/processor_container.hpp>", public ] },
+ { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/flyweight/refcounted.hpp>", public ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/log/core/record_view.hpp>", public ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/wave/cpplexer/cpp_lex_token.hpp>", public ] },
+ { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/wave/util/macro_definition.hpp>", public ] },
+ { include: ["<boost/detail/atomic_redef_macros.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/detail/atomic_undef_macros.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/detail/call_traits.hpp>", private, "<boost/call_traits.hpp>", public ] },
+ { include: ["<boost/detail/compressed_pair.hpp>", private, "<boost/compressed_pair.hpp>", public ] },
+ { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/functional/hash/extensions.hpp>", public ] },
+ { include: ["<boost/detail/dynamic_bitset.hpp>", private, "<boost/dynamic_bitset/dynamic_bitset.hpp>", public ] },
+ { include: ["<boost/detail/endian.hpp>", private, "<boost/multiprecision/cpp_int.hpp>", public ] },
+ { include: ["<boost/detail/fenv.hpp>", private, "<boost/math/tools/config.hpp>", public ] },
+ { include: ["<boost/detail/fenv.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/iterator/indirect_iterator.hpp>", public ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/thread/win32/basic_timed_mutex.hpp>", public ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/thread/win32/interlocked_read.hpp>", public ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/thread/win32/once.hpp>", public ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/thread/win32/shared_mutex.hpp>", public ] },
+ { include: ["<boost/detail/interlocked.hpp>", private, "<boost/thread/win32/thread_primitives.hpp>", public ] },
+ { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/icl/type_traits/is_discrete.hpp>", public ] },
+ { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/indirect_reference.hpp>", public ] },
+ { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/iterator/new_iterator_tests.hpp>", public ] },
+ { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/pointee.hpp>", public ] },
+ { include: ["<boost/detail/is_sorted.hpp>", private, "<boost/graph/distributed/connected_components.hpp>", public ] },
+ { include: ["<boost/detail/is_sorted.hpp>", private, "<boost/range/algorithm_ext/is_sorted.hpp>", public ] },
+ { include: ["<boost/detail/is_xxx.hpp>", private, "<boost/parameter/parameters.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/algorithm/string/find_format.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/algorithm/string/formatter.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/array.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/circular_buffer.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/dynamic_bitset/dynamic_bitset.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/graph/adjacency_iterator.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/graph/incremental_components.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/indirect_iterator.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/is_lvalue_iterator.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/is_readable_iterator.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/iterator_adaptor.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/iterator_categories.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/iterator_concepts.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/iterator_traits.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/iterator/new_iterator_tests.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/property_map/parallel/parallel_property_maps.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/property_map/property_map.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/python/object/iterator.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/classic/core/scanner/scanner.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/classic/iterator/multi_pass.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/classic/iterator/position_iterator_fwd.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/classic/tree/common.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/classic/utility/regex.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/lexer.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/functor.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator_tokenizer.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/position_token.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/token.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/lex/lexer/token_def.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/support/container.hpp>", public ] },
+ { include: ["<boost/detail/iterator.hpp>", private, "<boost/spirit/home/x3/support/traits/container_traits.hpp>", public ] },
+ { include: ["<boost/detail/lcast_precision.hpp>", private, "<boost/lexical_cast/lexical_cast_old.hpp>", public ] },
+ { include: ["<boost/detail/lightweight_test.hpp>", private, "<boost/iterator/new_iterator_tests.hpp>", public ] },
+ { include: ["<boost/detail/lightweight_test.hpp>", private, "<boost/mpl/aux_/test.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/chrono/io/duration_io.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/chrono/io/time_point_io.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/circular_buffer/details.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/dynamic_bitset/dynamic_bitset.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/move/algo/move.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/move/algorithm.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/msm/back/state_machine.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/detail/no_exceptions_support.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/detail/numeric_traits.hpp>", private, "<boost/graph/bandwidth.hpp>", public ] },
+ { include: ["<boost/detail/numeric_traits.hpp>", private, "<boost/graph/minimum_degree_ordering.hpp>", public ] },
+ { include: ["<boost/detail/numeric_traits.hpp>", private, "<boost/graph/profile.hpp>", public ] },
+ { include: ["<boost/detail/numeric_traits.hpp>", private, "<boost/graph/wavefront.hpp>", public ] },
+ { include: ["<boost/detail/numeric_traits.hpp>", private, "<boost/iterator/counting_iterator.hpp>", public ] },
+ { include: ["<boost/detail/reference_content.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/detail/scoped_enum_emulation.hpp>", private, "<boost/chrono/io/duration_style.hpp>", public ] },
+ { include: ["<boost/detail/scoped_enum_emulation.hpp>", private, "<boost/chrono/io/timezone.hpp>", public ] },
+ { include: ["<boost/detail/scoped_enum_emulation.hpp>", private, "<boost/coroutine/exceptions.hpp>", public ] },
+ { include: ["<boost/detail/sp_typeinfo.hpp>", private, "<boost/proto/debug.hpp>", public ] },
+ { include: ["<boost/detail/templated_streams.hpp>", private, "<boost/blank.hpp>", public ] },
+ { include: ["<boost/detail/templated_streams.hpp>", private, "<boost/flyweight/flyweight_fwd.hpp>", public ] },
+ { include: ["<boost/detail/winapi/config.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/detail/winapi/config.hpp>", private, "<boost/thread/win32/thread_primitives.hpp>", public ] },
+ { include: ["<boost/detail/winapi/crypt.hpp>", private, "<boost/uuid/seed_rng.hpp>", public ] },
+ { include: ["<boost/detail/winapi/dll.hpp>", private, "<boost/dll/runtime_symbol_info.hpp>", public ] },
+ { include: ["<boost/detail/winapi/dll.hpp>", private, "<boost/dll/shared_library_load_mode.hpp>", public ] },
+ { include: ["<boost/detail/winapi/get_current_process_id.hpp>", private, "<boost/uuid/seed_rng.hpp>", public ] },
+ { include: ["<boost/detail/winapi/get_current_thread_id.hpp>", private, "<boost/uuid/seed_rng.hpp>", public ] },
+ { include: ["<boost/detail/winapi/timers.hpp>", private, "<boost/uuid/seed_rng.hpp>", public ] },
+ { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/alias.hpp>", public ] },
+ { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/runtime_symbol_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/shared_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/ctor_dtor.hpp>", private, "<boost/dll/smart_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/demangling/itanium.hpp>", private, "<boost/dll/smart_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/demangling/msvc.hpp>", private, "<boost/dll/smart_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/elf_info.hpp>", private, "<boost/dll/library_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/get_mem_fn_type.hpp>", private, "<boost/dll/smart_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/import_mangled_helpers.hpp>", private, "<boost/dll/import_mangled.hpp>", public ] },
+ { include: ["<boost/dll/detail/macho_info.hpp>", private, "<boost/dll/library_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/pe_info.hpp>", private, "<boost/dll/library_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/posix/program_location_impl.hpp>", private, "<boost/dll/runtime_symbol_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/posix/shared_library_impl.hpp>", private, "<boost/dll/shared_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/shared_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/type_info.hpp>", private, "<boost/dll/smart_library.hpp>", public ] },
+ { include: ["<boost/dll/detail/windows/path_from_handle.hpp>", private, "<boost/dll/runtime_symbol_info.hpp>", public ] },
+ { include: ["<boost/dll/detail/windows/shared_library_impl.hpp>", private, "<boost/dll/shared_library.hpp>", public ] },
+ { include: ["<boost/endian/detail/cover_operators.hpp>", private, "<boost/endian/arithmetic.hpp>", public ] },
+ { include: ["<boost/endian/detail/intrinsic.hpp>", private, "<boost/endian/conversion.hpp>", public ] },
+ { include: ["<boost/exception/detail/error_info_impl.hpp>", private, "<boost/exception/get_error_info.hpp>", public ] },
+ { include: ["<boost/exception/detail/error_info_impl.hpp>", private, "<boost/exception/info.hpp>", public ] },
+ { include: ["<boost/exception/detail/exception_ptr.hpp>", private, "<boost/exception_ptr.hpp>", public ] },
+ { include: ["<boost/exception/detail/is_output_streamable.hpp>", private, "<boost/exception/to_string.hpp>", public ] },
+ { include: ["<boost/exception/detail/object_hex_dump.hpp>", private, "<boost/exception/to_string_stub.hpp>", public ] },
+ { include: ["<boost/exception/detail/shared_ptr.hpp>", private, "<boost/exception/get_error_info.hpp>", public ] },
+ { include: ["<boost/exception/detail/shared_ptr.hpp>", private, "<boost/exception/info.hpp>", public ] },
+ { include: ["<boost/exception/detail/type_info.hpp>", private, "<boost/exception/get_error_info.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/algo/algorithm.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/algo/round_robin.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/algo/shared_work.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/algo/work_stealing.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/barrier.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/buffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/channel_op_status.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/condition_variable.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/exceptions.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/fiber.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/future.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/future_status.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/operations.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/policy.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/pooled_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/properties.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/protected_fixedsize_stack.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/recursive_timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/scheduler.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/segmented_stack.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/unbuffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/context_spinlock_queue.hpp>", private, "<boost/fiber/algo/work_stealing.hpp>", public ] },
+ { include: ["<boost/fiber/detail/context_spmc_queue.hpp>", private, "<boost/fiber/algo/work_stealing.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/buffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/condition_variable.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/future/packaged_task.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/future/promise.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/operations.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/recursive_timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/convert.hpp>", private, "<boost/fiber/unbuffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/data.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/data.hpp>", private, "<boost/fiber/scheduler.hpp>", public ] },
+ { include: ["<boost/fiber/detail/data.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/detail/decay_copy.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/decay_copy.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/detail/disable_overload.hpp>", private, "<boost/fiber/fiber.hpp>", public ] },
+ { include: ["<boost/fiber/detail/disable_overload.hpp>", private, "<boost/fiber/future/packaged_task.hpp>", public ] },
+ { include: ["<boost/fiber/detail/fss.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/fss.hpp>", private, "<boost/fiber/fss.hpp>", public ] },
+ { include: ["<boost/fiber/detail/fss.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/buffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/condition_variable.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/recursive_timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/scheduler.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/timed_mutex.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/unbuffered_channel.hpp>", public ] },
+ { include: ["<boost/fiber/detail/wrap.hpp>", private, "<boost/fiber/context.hpp>", public ] },
+ { include: ["<boost/fiber/detail/wrap.hpp>", private, "<boost/fiber/type.hpp>", public ] },
+ { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/future.hpp>", public ] },
+ { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/promise.hpp>", public ] },
+ { include: ["<boost/fiber/future/detail/shared_state_object.hpp>", private, "<boost/fiber/future/promise.hpp>", public ] },
+ { include: ["<boost/fiber/future/detail/task_base.hpp>", private, "<boost/fiber/future/packaged_task.hpp>", public ] },
+ { include: ["<boost/fiber/future/detail/task_object.hpp>", private, "<boost/fiber/future/packaged_task.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/archive_constructed.hpp>", private, "<boost/flyweight/serialize.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/default_value_policy.hpp>", private, "<boost/flyweight/flyweight.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/flyweight_core.hpp>", private, "<boost/flyweight/flyweight.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/is_placeholder_expr.hpp>", private, "<boost/flyweight/assoc_container_factory.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/nested_xxx_if_not_ph.hpp>", private, "<boost/flyweight/assoc_container_factory.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/not_placeholder_expr.hpp>", private, "<boost/flyweight/assoc_container_factory_fwd.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/not_placeholder_expr.hpp>", private, "<boost/flyweight/hashed_factory_fwd.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/not_placeholder_expr.hpp>", private, "<boost/flyweight/set_factory_fwd.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/flyweight.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/key_value.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/recursive_lw_mutex.hpp>", private, "<boost/flyweight/simple_locking.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/serialization_helper.hpp>", private, "<boost/flyweight/serialize.hpp>", public ] },
+ { include: ["<boost/flyweight/detail/value_tag.hpp>", private, "<boost/flyweight/key_value.hpp>", public ] },
+ { include: ["<boost/functional/hash/detail/hash_float.hpp>", private, "<boost/functional/hash/hash.hpp>", public ] },
+ { include: ["<boost/functional/overloaded_function/detail/base.hpp>", private, "<boost/functional/overloaded_function.hpp>", public ] },
+ { include: ["<boost/functional/overloaded_function/detail/function_type.hpp>", private, "<boost/functional/overloaded_function.hpp>", public ] },
+ { include: ["<boost/function_types/detail/classifier.hpp>", private, "<boost/function_types/components.hpp>", public ] },
+ { include: ["<boost/function_types/detail/class_transform.hpp>", private, "<boost/function_types/components.hpp>", public ] },
+ { include: ["<boost/function_types/detail/components_as_mpl_sequence.hpp>", private, "<boost/function_types/components.hpp>", public ] },
+ { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/components.hpp>", public ] },
+ { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/property_tags.hpp>", public ] },
+ { include: ["<boost/function_types/detail/pp_tags/preprocessed.hpp>", private, "<boost/function_types/property_tags.hpp>", public ] },
+ { include: ["<boost/function_types/detail/retag_default_cc.hpp>", private, "<boost/function_types/components.hpp>", public ] },
+ { include: ["<boost/function_types/detail/synthesize.hpp>", private, "<boost/function_types/function_type.hpp>", public ] },
+ { include: ["<boost/function_types/detail/synthesize.hpp>", private, "<boost/function_types/member_function_pointer.hpp>", public ] },
+ { include: ["<boost/function_types/detail/synthesize.hpp>", private, "<boost/function_types/member_object_pointer.hpp>", public ] },
+ { include: ["<boost/function_types/detail/to_sequence.hpp>", private, "<boost/function_types/function_type.hpp>", public ] },
+ { include: ["<boost/function_types/detail/to_sequence.hpp>", private, "<boost/function_types/member_function_pointer.hpp>", public ] },
+ { include: ["<boost/function_types/detail/to_sequence.hpp>", private, "<boost/function_types/member_object_pointer.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/adapt_base_assoc_attr_filler.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/adt/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/at_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/end_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/size_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_array/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/boost_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/at_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/convert_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/end_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/size_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/boost_tuple/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/boost_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/at_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/begin_impl.hpp>", private, "<boost/fusion/mpl/begin.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/empty_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/end_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/end_impl.hpp>", private, "<boost/fusion/mpl/end.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/has_key_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/size_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/mpl/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/mpl.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/array_size.hpp>", private, "<boost/fusion/adapted/std_array/std_array_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/at_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/end_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/size_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_array/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/std_array.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/at_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/convert_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/end_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/size_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/std_tuple/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/std_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base_assoc_attr_filler.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/at_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/at_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/at_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/at_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/begin_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/category_of_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/define_struct.hpp>", private, "<boost/fusion/adapted/struct/define_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/define_struct.hpp>", private, "<boost/fusion/adapted/struct/define_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/define_struct_inline.hpp>", private, "<boost/fusion/adapted/struct/define_struct_inline.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_data_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_data_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/deref_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/end_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/end_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/end_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/end_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/is_view_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/key_of_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/key_of_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt_named.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt_named.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct_named.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct_named.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private, "<boost/fusion/include/proxy_type.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/size_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/size_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/size_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/size_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_at_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_data_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_data_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_impl.hpp>", private, "<boost/fusion/adapted/adt/adapt_assoc_adt.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_assoc_struct.hpp>", public ] },
+ { include: ["<boost/fusion/adapted/struct/detail/value_of_impl.hpp>", private, "<boost/fusion/adapted/struct/adapt_struct.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/fold.hpp>", private, "<boost/fusion/algorithm/iteration/fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/fold.hpp>", private, "<boost/fusion/algorithm/iteration/iter_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/fold.hpp>", private, "<boost/fusion/algorithm/iteration/reverse_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/fold.hpp>", private, "<boost/fusion/algorithm/iteration/reverse_iter_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/for_each.hpp>", private, "<boost/fusion/algorithm/iteration/for_each.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/preprocessed/fold.hpp>", private, "<boost/fusion/algorithm/iteration/fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/preprocessed/iter_fold.hpp>", private, "<boost/fusion/algorithm/iteration/iter_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/preprocessed/reverse_fold.hpp>", private, "<boost/fusion/algorithm/iteration/reverse_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/preprocessed/reverse_iter_fold.hpp>", private, "<boost/fusion/algorithm/iteration/reverse_iter_fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/segmented_fold.hpp>", private, "<boost/fusion/algorithm/iteration/fold.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/iteration/detail/segmented_for_each.hpp>", private, "<boost/fusion/algorithm/iteration/for_each.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/all.hpp>", private, "<boost/fusion/algorithm/query/all.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/any.hpp>", private, "<boost/fusion/algorithm/query/any.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/count.hpp>", private, "<boost/fusion/algorithm/query/count.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/count_if.hpp>", private, "<boost/fusion/algorithm/query/count_if.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/find_if.hpp>", private, "<boost/fusion/algorithm/query/find.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/find_if.hpp>", private, "<boost/fusion/algorithm/query/find_if.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/find_if.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/segmented_find.hpp>", private, "<boost/fusion/algorithm/query/find.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/query/detail/segmented_find_if.hpp>", private, "<boost/fusion/algorithm/query/find_if.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private, "<boost/fusion/algorithm/transformation/zip.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/replace.hpp>", private, "<boost/fusion/algorithm/transformation/replace.hpp>", public ] },
+ { include: ["<boost/fusion/algorithm/transformation/detail/replace_if.hpp>", private, "<boost/fusion/algorithm/transformation/replace_if.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/at_impl.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/begin_impl.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/build_deque.hpp>", private, "<boost/fusion/container/deque/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/convert_impl.hpp>", private, "<boost/fusion/container/deque/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/build_deque.hpp>", private, "<boost/fusion/container/deque/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>", private, "<boost/fusion/container/deque/deque_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/deque_keyed_values.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/end_impl.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/is_sequence_impl.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/back_extended_deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/deque_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/front_extended_deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/deque/detail/value_at_impl.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_deque_tie.hpp>", private, "<boost/fusion/container/generation/deque_tie.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_list_tie.hpp>", private, "<boost/fusion/container/generation/list_tie.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_make_deque.hpp>", private, "<boost/fusion/container/generation/make_deque.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_make_list.hpp>", private, "<boost/fusion/container/generation/make_list.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_make_map.hpp>", private, "<boost/fusion/container/generation/make_map.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_make_set.hpp>", private, "<boost/fusion/container/generation/make_set.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_make_vector.hpp>", private, "<boost/fusion/container/generation/make_vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_map_tie.hpp>", private, "<boost/fusion/container/generation/map_tie.hpp>", public ] },
+ { include: ["<boost/fusion/container/generation/detail/pp_vector_tie.hpp>", private, "<boost/fusion/container/generation/vector_tie.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/at_impl.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/begin_impl.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/build_cons.hpp>", private, "<boost/fusion/container/list/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/convert_impl.hpp>", private, "<boost/fusion/container/list/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private, "<boost/fusion/container/list/list_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/cpp03/list.hpp>", private, "<boost/fusion/container/list/list.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/deref_impl.hpp>", private, "<boost/fusion/container/list/cons_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/empty_impl.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/end_impl.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/equal_to_impl.hpp>", private, "<boost/fusion/container/list/cons_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/list_to_cons.hpp>", private, "<boost/fusion/container/list/list.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/next_impl.hpp>", private, "<boost/fusion/container/list/cons_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/value_at_impl.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/container/list/detail/value_of_impl.hpp>", private, "<boost/fusion/container/list/cons_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/at_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/at_key_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/begin_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/build_map.hpp>", private, "<boost/fusion/container/map/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/convert.hpp>", private, "<boost/fusion/container/map/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private, "<boost/fusion/container/map/map_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/end_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/map_impl.hpp>", private, "<boost/fusion/container/map/map_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/map_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/value_at_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/map/detail/value_at_key_impl.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/as_set.hpp>", private, "<boost/fusion/container/set/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/begin_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/convert_impl.hpp>", private, "<boost/fusion/container/set/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/set_fwd.hpp>", private, "<boost/fusion/container/set/set_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/cpp03/set.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/deref_data_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/deref_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/end_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/key_of_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/value_of_data_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/set/detail/value_of_impl.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/advance_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/as_vector.hpp>", private, "<boost/fusion/container/vector/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/generation/vector_tie.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/set/set_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector10.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector20.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector30.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector40.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector50.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/functional/adapter/limits.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/tuple/tuple_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/convert_impl.hpp>", private, "<boost/fusion/container/vector/convert.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/functional/adapter/limits.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private, "<boost/fusion/container/vector/vector10.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private, "<boost/fusion/container/vector/vector20.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private, "<boost/fusion/container/vector/vector30.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private, "<boost/fusion/container/vector/vector40.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private, "<boost/fusion/container/vector/vector50.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private, "<boost/fusion/container/vector/vector_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/deref_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/distance_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/equal_to_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/next_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/prior_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/container/vector/detail/value_of_impl.hpp>", private, "<boost/fusion/container/vector/vector_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/functional/adapter/detail/access.hpp>", private, "<boost/fusion/functional/adapter/fused_function_object.hpp>", public ] },
+ { include: ["<boost/fusion/functional/adapter/detail/access.hpp>", private, "<boost/fusion/functional/adapter/fused.hpp>", public ] },
+ { include: ["<boost/fusion/functional/adapter/detail/access.hpp>", private, "<boost/fusion/functional/adapter/fused_procedure.hpp>", public ] },
+ { include: ["<boost/fusion/functional/adapter/detail/access.hpp>", private, "<boost/fusion/functional/adapter/unfused.hpp>", public ] },
+ { include: ["<boost/fusion/functional/adapter/detail/access.hpp>", private, "<boost/fusion/functional/adapter/unfused_typed.hpp>", public ] },
+ { include: ["<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private, "<boost/fusion/functional/generation/make_fused_function_object.hpp>", public ] },
+ { include: ["<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private, "<boost/fusion/functional/generation/make_fused.hpp>", public ] },
+ { include: ["<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private, "<boost/fusion/functional/generation/make_fused_procedure.hpp>", public ] },
+ { include: ["<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private, "<boost/fusion/functional/generation/make_unfused.hpp>", public ] },
+ { include: ["<boost/fusion/functional/invocation/detail/that_ptr.hpp>", private, "<boost/fusion/functional/invocation/invoke.hpp>", public ] },
+ { include: ["<boost/fusion/functional/invocation/detail/that_ptr.hpp>", private, "<boost/fusion/functional/invocation/invoke_procedure.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/advance.hpp>", private, "<boost/fusion/iterator/advance.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/advance.hpp>", private, "<boost/fusion/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/distance.hpp>", private, "<boost/fusion/iterator/distance.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/distance.hpp>", private, "<boost/fusion/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/segmented_iterator.hpp>", private, "<boost/fusion/iterator/segmented_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/iterator/detail/segmented_next_impl.hpp>", private, "<boost/fusion/iterator/segmented_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/mpl/detail/clear.hpp>", private, "<boost/fusion/mpl/clear.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/equal_to.hpp>", private, "<boost/fusion/algorithm/auxiliary/copy.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/equal_to.hpp>", private, "<boost/fusion/algorithm/auxiliary/move.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/equal_to.hpp>", private, "<boost/fusion/sequence/comparison/equal_to.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/greater_equal.hpp>", private, "<boost/fusion/sequence/comparison/greater_equal.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/greater.hpp>", private, "<boost/fusion/sequence/comparison/greater.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/less_equal.hpp>", private, "<boost/fusion/sequence/comparison/less_equal.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/less.hpp>", private, "<boost/fusion/sequence/comparison/less.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/comparison/detail/not_equal_to.hpp>", private, "<boost/fusion/sequence/comparison/not_equal_to.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_begin.hpp>", private, "<boost/fusion/sequence/intrinsic/begin.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_end.hpp>", private, "<boost/fusion/sequence/intrinsic/end.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_size.hpp>", private, "<boost/fusion/sequence/intrinsic/size.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/io/detail/in.hpp>", private, "<boost/fusion/sequence/io/in.hpp>", public ] },
+ { include: ["<boost/fusion/sequence/io/detail/out.hpp>", private, "<boost/fusion/sequence/io/out.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/adapted/std_tuple/std_tuple_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/functional/adapter/unfused_typed.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/sequence/intrinsic/at_key.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/support/pair.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/filter_view/filter_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/flatten_view/flatten_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/joint_view/joint_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/and.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/and.hpp>", private, "<boost/fusion/tuple/tuple.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/algorithm/transformation/erase.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/algorithm/transformation/insert.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/algorithm/transformation/insert_range.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/algorithm/transformation/push_back.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/algorithm/transformation/push_front.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/deque_tie.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_cons.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_deque.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_list.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_map.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_set.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/make_vector.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/support/pair.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/tuple/make_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/category_of.hpp>", private, "<boost/fusion/support/category_of.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/deque/deque.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/list/cons.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/map/map.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/container/vector/vector.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/is_mpl_sequence.hpp>", private, "<boost/fusion/support/tag_of.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/is_same_size.hpp>", private, "<boost/fusion/container/set/set.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/is_view.hpp>", private, "<boost/fusion/support/is_view.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/mpl_iterator_category.hpp>", private, "<boost/fusion/adapted/mpl/mpl_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/pp_round.hpp>", private, "<boost/fusion/algorithm/transformation/zip.hpp>", public ] },
+ { include: ["<boost/fusion/support/detail/segmented_fold_until_impl.hpp>", private, "<boost/fusion/support/segmented_fold_until.hpp>", public ] },
+ { include: ["<boost/fusion/tuple/detail/make_tuple.hpp>", private, "<boost/fusion/tuple/make_tuple.hpp>", public ] },
+ { include: ["<boost/fusion/tuple/detail/tuple_fwd.hpp>", private, "<boost/fusion/tuple/tuple_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/tuple/detail/tuple.hpp>", private, "<boost/fusion/tuple/tuple.hpp>", public ] },
+ { include: ["<boost/fusion/tuple/detail/tuple_tie.hpp>", private, "<boost/fusion/tuple/tuple_tie.hpp>", public ] },
+ { include: ["<boost/fusion/view/detail/strictest_traversal.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/detail/strictest_traversal.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/detail/strictest_traversal.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator_fwd.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/deref_data_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/end_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/equal_to_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/key_of_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/next_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/size_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/value_of_data_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/filter_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/filter_view/filter_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/at_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/begin_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/end_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/is_segmented_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/segments_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/size_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/iterator_range/detail/value_at_impl.hpp>", private, "<boost/fusion/view/iterator_range/iterator_range.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/deref_data_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/end_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/key_of_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/next_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/value_of_data_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/joint_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/joint_view/joint_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/advance_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/at_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/begin_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/deref_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/distance_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/end_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/equal_to_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/next_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/nview_impl.hpp>", private, "<boost/fusion/view/nview/nview.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/prior_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/size_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/value_at_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/nview/detail/value_of_impl.hpp>", private, "<boost/fusion/view/nview/nview_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/repetitive_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/repetitive_view/repetitive_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/repetitive_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/repetitive_view/repetitive_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/repetitive_view/detail/end_impl.hpp>", private, "<boost/fusion/view/repetitive_view/repetitive_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/repetitive_view/detail/next_impl.hpp>", private, "<boost/fusion/view/repetitive_view/repetitive_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/repetitive_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/repetitive_view/repetitive_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/advance_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/at_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/deref_data_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/distance_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/end_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/key_of_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/next_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/prior_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/value_at_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/value_of_data_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/reverse_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/reverse_view/reverse_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/advance_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/at_impl.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/distance_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/end_impl.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/equal_to_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/next_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/prior_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/size_impl.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/value_at_impl.hpp>", private, "<boost/fusion/view/single_view/single_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/single_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/single_view/single_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/advance_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/at_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/distance_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/end_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/equal_to_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/next_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/prior_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/value_at_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/transform_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/transform_view/transform_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/advance_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/at_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/begin_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/deref_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/distance_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/end_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/equal_to_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/next_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/prior_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/size_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/value_at_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view.hpp>", public ] },
+ { include: ["<boost/fusion/view/zip_view/detail/value_of_impl.hpp>", private, "<boost/fusion/view/zip_view/zip_view_iterator.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/as_range.hpp>", private, "<boost/geometry/algorithms/convex_hull.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/assign.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/convex_hull.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/strategies/spherical/distance_cross_track_point_box.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/assign.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/policies/relate/intersection_points.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/policies/relate/intersection_ratios.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/strategies/cartesian/disjoint_segment_box.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/strategies/cartesian/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/strategies/cartesian/side_of_intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/strategies/geographic/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/strategies/spherical/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/assign.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/strategies/cartesian/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/strategies/geographic/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/strategies/spherical/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private, "<boost/geometry/algorithms/buffer.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/calculate_null.hpp>", private, "<boost/geometry/algorithms/area.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/calculate_null.hpp>", private, "<boost/geometry/algorithms/length.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/calculate_null.hpp>", private, "<boost/geometry/algorithms/perimeter.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/calculate_sum.hpp>", private, "<boost/geometry/algorithms/area.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/calculate_sum.hpp>", private, "<boost/geometry/algorithms/perimeter.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/centroid/translating_transformer.hpp>", private, "<boost/geometry/algorithms/centroid.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/is_empty.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/policies/predicate_based_interrupt_policy.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/comparable_distance/implementation.hpp>", private, "<boost/geometry/algorithms/comparable_distance.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/comparable_distance/implementation.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/comparable_distance/interface.hpp>", private, "<boost/geometry/algorithms/comparable_distance.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/comparable_distance/interface.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_indexed_to_indexed.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/append.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/counting.hpp>", private, "<boost/geometry/algorithms/num_geometries.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/counting.hpp>", private, "<boost/geometry/algorithms/num_interior_rings.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/counting.hpp>", private, "<boost/geometry/algorithms/num_points.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/counting.hpp>", private, "<boost/geometry/algorithms/num_segments.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/course.hpp>", private, "<boost/geometry/strategies/spherical/distance_cross_track.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/course.hpp>", private, "<boost/geometry/strategies/spherical/side_by_cross_track.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private, "<boost/geometry/algorithms/disjoint.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/interface.hpp>", private, "<boost/geometry/algorithms/disjoint.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/io/wkt/write.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/simplify.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/strategies/comparable_distance_result.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/strategies/distance_result.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/implementation.hpp>", private, "<boost/geometry/algorithms/distance.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/interface.hpp>", private, "<boost/geometry/algorithms/distance.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/interface.hpp>", private, "<boost/geometry/strategies/cartesian/centroid_weighted_length.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private, "<boost/geometry/strategies/cartesian/centroid_weighted_length.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private, "<boost/geometry/algorithms/envelope.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/interface.hpp>", private, "<boost/geometry/algorithms/envelope.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/strategies/cartesian/envelope_segment.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/strategies/geographic/envelope_segment.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/strategies/spherical/envelope_segment.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private, "<boost/geometry/algorithms/equals.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/equals.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/is_convex.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/io/wkt/read.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/strategies/agnostic/point_in_point.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/strategies/cartesian/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/strategies/cartesian/side_by_triangle.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/strategies/geographic/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/strategies/spherical/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/implementation.hpp>", private, "<boost/geometry/algorithms/expand.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/expand/interface.hpp>", private, "<boost/geometry/algorithms/expand.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/extreme_points.hpp>", private, "<boost/geometry/algorithms/point_on_surface.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/algorithms/touches.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/strategies/agnostic/hull_graham_andrew.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/get_max_size.hpp>", private, "<boost/geometry/policies/robustness/get_rescale_policy.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/centroid.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/convert.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/correct.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/for_each.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/remove_spikes.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/reverse.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/transform.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/unique.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/io/dsv/write.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/io/svg/write.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/io/wkt/write.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private, "<boost/geometry/algorithms/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private, "<boost/geometry/algorithms/is_simple.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/is_simple/interface.hpp>", private, "<boost/geometry/algorithms/is_simple.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private, "<boost/geometry/algorithms/is_valid.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/is_valid/interface.hpp>", private, "<boost/geometry/algorithms/is_valid.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_modify.hpp>", private, "<boost/geometry/algorithms/correct.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_modify.hpp>", private, "<boost/geometry/algorithms/reverse.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_sum.hpp>", private, "<boost/geometry/algorithms/area.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_sum.hpp>", private, "<boost/geometry/algorithms/length.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/multi_sum.hpp>", private, "<boost/geometry/algorithms/perimeter.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/strategies/geographic/envelope_segment.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/strategies/spherical/envelope_segment.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/policies/is_valid/failing_reason_policy.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/within.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/within.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private, "<boost/geometry/algorithms/difference.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private, "<boost/geometry/algorithms/union.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private, "<boost/geometry/algorithms/touches.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private, "<boost/geometry/algorithms/union.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private, "<boost/geometry/algorithms/union.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/intersects.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/touches.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private, "<boost/geometry/algorithms/remove_spikes.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/centroid.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/policies/robustness/get_rescale_policy.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/strategies/cartesian/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/strategies/geographic/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/strategies/spherical/intersection.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/implementation.hpp>", private, "<boost/geometry/algorithms/relate.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/relate.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/less.hpp>", private, "<boost/geometry/strategies/cartesian/side_by_triangle.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/crosses.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/equals.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/overlaps.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/touches.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relation/implementation.hpp>", private, "<boost/geometry/algorithms/relation.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/relation/interface.hpp>", private, "<boost/geometry/algorithms/relation.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/touches.hpp>", public ] },
+ { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/within.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/algorithms/is_valid.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/assert.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/config_begin.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/config_end.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/distance_predicates.hpp>", private, "<boost/geometry/index/distance_predicates.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/exception.hpp>", private, "<boost/geometry/index/parameters.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/exception.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/is_indexable.hpp>", private, "<boost/geometry/index/indexable.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/meta.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/predicates.hpp>", private, "<boost/geometry/index/predicates.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/adaptors.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/iterators.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/linear/linear.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/options.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/pack_create.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/quadratic/quadratic.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/query_iterators.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/utilities/view.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/children_box.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/copy.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/count.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/destroy.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/distance_query.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/iterator.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/remove.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/rtree/visitors/spatial_query.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/serialization.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/translator.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/tuples.hpp>", private, "<boost/geometry/index/predicates.hpp>", public ] },
+ { include: ["<boost/geometry/index/detail/utilities.hpp>", private, "<boost/geometry/index/rtree.hpp>", public ] },
+ { include: ["<boost/geometry/io/wkt/detail/prefix.hpp>", private, "<boost/geometry/io/wkt/read.hpp>", public ] },
+ { include: ["<boost/geometry/io/wkt/detail/prefix.hpp>", private, "<boost/geometry/io/wkt/write.hpp>", public ] },
+ { include: ["<boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp>", private, "<boost/geometry/iterators/segment_iterator.hpp>", public ] },
+ { include: ["<boost/geometry/iterators/detail/point_iterator/iterator_type.hpp>", private, "<boost/geometry/iterators/point_iterator.hpp>", public ] },
+ { include: ["<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private, "<boost/geometry/iterators/segment_iterator.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/equals.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/is_convex.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/points_view.hpp>", private, "<boost/geometry/views/box_view.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/points_view.hpp>", private, "<boost/geometry/views/segment_view.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/algorithms/convex_hull.hpp>", public ] },
+ { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/strategies/agnostic/hull_graham_andrew.hpp>", public ] },
+ { include: ["<boost/graph/detail/adjacency_list.hpp>", private, "<boost/graph/adjacency_list.hpp>", public ] },
+ { include: ["<boost/graph/detail/array_binary_tree.hpp>", private, "<boost/pending/mutable_queue.hpp>", public ] },
+ { include: ["<boost/graph/detail/augment.hpp>", private, "<boost/graph/cycle_canceling.hpp>", public ] },
+ { include: ["<boost/graph/detail/augment.hpp>", private, "<boost/graph/successive_shortest_path_nonnegative_weights.hpp>", public ] },
+ { include: ["<boost/graph/detail/compressed_sparse_row_struct.hpp>", private, "<boost/graph/compressed_sparse_row_graph.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/astar_search.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/core_numbers.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/dijkstra_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/dijkstra_shortest_paths_no_color_map.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/named_function_params.hpp>", public ] },
+ { include: ["<boost/graph/detail/d_ary_heap.hpp>", private, "<boost/graph/stoer_wagner_min_cut.hpp>", public ] },
+ { include: ["<boost/graph/detail/edge.hpp>", private, "<boost/graph/adjacency_list.hpp>", public ] },
+ { include: ["<boost/graph/detail/edge.hpp>", private, "<boost/graph/adjacency_matrix.hpp>", public ] },
+ { include: ["<boost/graph/detail/geodesic.hpp>", private, "<boost/graph/closeness_centrality.hpp>", public ] },
+ { include: ["<boost/graph/detail/geodesic.hpp>", private, "<boost/graph/eccentricity.hpp>", public ] },
+ { include: ["<boost/graph/detail/geodesic.hpp>", private, "<boost/graph/geodesic_distance.hpp>", public ] },
+ { include: ["<boost/graph/detail/incremental_components.hpp>", private, "<boost/graph/incremental_components.hpp>", public ] },
+ { include: ["<boost/graph/detail/indexed_properties.hpp>", private, "<boost/graph/compressed_sparse_row_graph.hpp>", public ] },
+ { include: ["<boost/graph/detail/index.hpp>", private, "<boost/graph/property_maps/container_property_map.hpp>", public ] },
+ { include: ["<boost/graph/detail/is_distributed_selector.hpp>", private, "<boost/graph/compressed_sparse_row_graph.hpp>", public ] },
+ { include: ["<boost/graph/detail/is_distributed_selector.hpp>", private, "<boost/graph/distributed/selector.hpp>", public ] },
+ { include: ["<boost/graph/detail/labeled_graph_traits.hpp>", private, "<boost/graph/labeled_graph.hpp>", public ] },
+ { include: ["<boost/graph/detail/read_graphviz_new.hpp>", private, "<boost/graph/graphviz.hpp>", public ] },
+ { include: ["<boost/graph/detail/read_graphviz_spirit.hpp>", private, "<boost/graph/graphviz.hpp>", public ] },
+ { include: ["<boost/graph/detail/set_adaptor.hpp>", private, "<boost/graph/filtered_graph.hpp>", public ] },
+ { include: ["<boost/graph/detail/sparse_ordering.hpp>", private, "<boost/graph/cuthill_mckee_ordering.hpp>", public ] },
+ { include: ["<boost/graph/detail/sparse_ordering.hpp>", private, "<boost/graph/king_ordering.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/dijkstra_shortest_paths.hpp>", private, "<boost/graph/distributed/betweenness_centrality.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/dijkstra_shortest_paths.hpp>", private, "<boost/graph/distributed/crauser_et_al_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/dijkstra_shortest_paths.hpp>", private, "<boost/graph/distributed/delta_stepping_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/dijkstra_shortest_paths.hpp>", private, "<boost/graph/distributed/eager_dijkstra_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/filtered_queue.hpp>", private, "<boost/graph/distributed/breadth_first_search.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/filtered_queue.hpp>", private, "<boost/graph/distributed/strong_components.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/mpi_process_group.ipp>", private, "<boost/graph/distributed/mpi_process_group.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/queue.ipp>", private, "<boost/graph/distributed/queue.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/remote_update_set.hpp>", private, "<boost/graph/distributed/crauser_et_al_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/distributed/detail/remote_update_set.hpp>", private, "<boost/graph/distributed/eager_dijkstra_shortest_paths.hpp>", public ] },
+ { include: ["<boost/graph/parallel/detail/inplace_all_to_all.hpp>", private, "<boost/graph/parallel/algorithm.hpp>", public ] },
+ { include: ["<boost/graph/parallel/detail/property_holders.hpp>", private, "<boost/graph/distributed/adjacency_list.hpp>", public ] },
+ { include: ["<boost/graph/parallel/detail/property_holders.hpp>", private, "<boost/graph/distributed/named_graph.hpp>", public ] },
+ { include: ["<boost/graph/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/distributed/adjlist/handlers.hpp>", public ] },
+ { include: ["<boost/graph/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/distributed/dehne_gotz_min_spanning_tree.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/count_if.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/ext/std/array.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/filter.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/group.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/partition.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/string.hpp>", public ] },
+ { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/zip_shortest_with.hpp>", public ] },
+ { include: ["<boost/hana/detail/any_of.hpp>", private, "<boost/hana/experimental/types.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/cartesian_product.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/cycle.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/filter.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/group.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/partition.hpp>", public ] },
+ { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/permutations.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/core/common.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/div.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/minus.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/mod.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/mult.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/not.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/one.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/plus.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/while.hpp>", public ] },
+ { include: ["<boost/hana/detail/canonical_constant.hpp>", private, "<boost/hana/zero.hpp>", public ] },
+ { include: ["<boost/hana/detail/concepts.hpp>", private, "<boost/hana/equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/concepts.hpp>", private, "<boost/hana/greater_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/concepts.hpp>", private, "<boost/hana/greater.hpp>", public ] },
+ { include: ["<boost/hana/detail/concepts.hpp>", private, "<boost/hana/less.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/always.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/compose.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/fix.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/flip.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/on.hpp>", public ] },
+ { include: ["<boost/hana/detail/create.hpp>", private, "<boost/hana/functional/placeholder.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/at_key.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/basic_tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/comparing.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/experimental/view.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/ext/boost/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/ext/std/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/filter.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/find_if.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/capture.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/curry.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/demux.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/infix.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/lockstep.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/overload.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/overload_linearly.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/partial.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/placeholder.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/functional/reverse_partial.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/fuse.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/lazy.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/monadic_fold_left.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/monadic_fold_right.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/ordering.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/partition.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/dispatch_if.hpp>", private, "<boost/hana/core/dispatch.hpp>", public ] },
+ { include: ["<boost/hana/detail/ebo.hpp>", private, "<boost/hana/basic_tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/ebo.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/count_if.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/ext/std/integer_sequence.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/zip.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/zip_shortest.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/zip_shortest_with.hpp>", public ] },
+ { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/zip_with.hpp>", public ] },
+ { include: ["<boost/hana/detail/first_unsatisfied_index.hpp>", private, "<boost/hana/drop_while.hpp>", public ] },
+ { include: ["<boost/hana/detail/first_unsatisfied_index.hpp>", private, "<boost/hana/span.hpp>", public ] },
+ { include: ["<boost/hana/detail/first_unsatisfied_index.hpp>", private, "<boost/hana/take_while.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/div.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/greater_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/greater.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/is_subset.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/less_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/less.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/minus.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/mod.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/mult.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/not_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_common_embedding.hpp>", private, "<boost/hana/plus.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_duplicates.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/has_duplicates.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/hash_table.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/index_if.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/applicative.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/comonad.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/comparable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/constant.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/euclidean_ring.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/foldable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/functor.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/group.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/hashable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/integral_constant.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/iterable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/logical.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/metafunction.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/monad.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/monad_plus.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/monoid.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/orderable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/product.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/ring.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/searchable.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/sequence.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/concept/struct.hpp>", public ] },
+ { include: ["<boost/hana/detail/integral_constant.hpp>", private, "<boost/hana/fwd/integral_constant.hpp>", public ] },
+ { include: ["<boost/hana/detail/intrinsics.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/intrinsics.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/intrinsics.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/group.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/maximum.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/minimum.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/partition.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/sort.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/span.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/fwd/unique.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/group.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/maximum.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/minimum.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/partition.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/sort.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/span.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_by.hpp>", private, "<boost/hana/unique.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/fwd/greater_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/fwd/greater.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/fwd/less_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/fwd/less.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than.hpp>", private, "<boost/hana/greater_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than.hpp>", private, "<boost/hana/greater.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than.hpp>", private, "<boost/hana/less_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_than.hpp>", private, "<boost/hana/less.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_to_fwd.hpp>", private, "<boost/hana/fwd/equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_to_fwd.hpp>", private, "<boost/hana/fwd/not_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_to.hpp>", private, "<boost/hana/equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/nested_to.hpp>", private, "<boost/hana/not_equal.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/fwd/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/lazy.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/range.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/string.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/type.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/arithmetic.hpp>", private, "<boost/hana/bool.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/bool.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/range.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/string.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/comparable.hpp>", private, "<boost/hana/type.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/iterable.hpp>", private, "<boost/hana/range.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/iterable.hpp>", private, "<boost/hana/string.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/iterable.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/logical.hpp>", private, "<boost/hana/bool.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/monad.hpp>", private, "<boost/hana/lazy.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/monad.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/monad.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/orderable.hpp>", private, "<boost/hana/bool.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/orderable.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/orderable.hpp>", private, "<boost/hana/pair.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/orderable.hpp>", private, "<boost/hana/string.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/orderable.hpp>", private, "<boost/hana/tuple.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/searchable.hpp>", private, "<boost/hana/map.hpp>", public ] },
+ { include: ["<boost/hana/detail/operators/searchable.hpp>", private, "<boost/hana/set.hpp>", public ] },
+ { include: ["<boost/hana/detail/preprocessor.hpp>", private, "<boost/hana/assert.hpp>", public ] },
+ { include: ["<boost/hana/detail/std_common_type.hpp>", private, "<boost/hana/core/common.hpp>", public ] },
+ { include: ["<boost/hana/detail/struct_macros.hpp>", private, "<boost/hana/adapt_adt.hpp>", public ] },
+ { include: ["<boost/hana/detail/struct_macros.hpp>", private, "<boost/hana/adapt_struct.hpp>", public ] },
+ { include: ["<boost/hana/detail/struct_macros.hpp>", private, "<boost/hana/define_struct.hpp>", public ] },
+ { include: ["<boost/hana/detail/type_at.hpp>", private, "<boost/hana/experimental/types.hpp>", public ] },
+ { include: ["<boost/hana/detail/unpack_flatten.hpp>", private, "<boost/hana/flatten.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldl1.hpp>", private, "<boost/hana/and.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldl1.hpp>", private, "<boost/hana/ap.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldl1.hpp>", private, "<boost/hana/fold_left.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldl1.hpp>", private, "<boost/hana/functional/compose.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldl1.hpp>", private, "<boost/hana/or.hpp>", public ] },
+ { include: ["<boost/hana/detail/variadic/foldr1.hpp>", private, "<boost/hana/fold_right.hpp>", public ] },
+ { include: ["<boost/hana/detail/void_t.hpp>", private, "<boost/hana/core/common.hpp>", public ] },
+ { include: ["<boost/hana/detail/wrong.hpp>", private, "<boost/hana/core/to.hpp>", public ] },
+ { include: ["<boost/hana/detail/wrong.hpp>", private, "<boost/hana/eval.hpp>", public ] },
+ { include: ["<boost/hana/detail/wrong.hpp>", private, "<boost/hana/optional.hpp>", public ] },
+ { include: ["<boost/hana/ext/boost/fusion/detail/common.hpp>", private, "<boost/hana/ext/boost/fusion/deque.hpp>", public ] },
+ { include: ["<boost/hana/ext/boost/fusion/detail/common.hpp>", private, "<boost/hana/ext/boost/fusion/list.hpp>", public ] },
+ { include: ["<boost/hana/ext/boost/fusion/detail/common.hpp>", private, "<boost/hana/ext/boost/fusion/vector.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/binomial_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/d_ary_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/fibonacci_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/pairing_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/priority_queue.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_comparison.hpp>", private, "<boost/heap/skew_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_node.hpp>", private, "<boost/heap/binomial_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_node.hpp>", private, "<boost/heap/fibonacci_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_node.hpp>", private, "<boost/heap/pairing_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/heap_node.hpp>", private, "<boost/heap/skew_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/mutable_heap.hpp>", private, "<boost/heap/d_ary_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/ordered_adaptor_iterator.hpp>", private, "<boost/heap/d_ary_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/binomial_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/d_ary_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/fibonacci_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/pairing_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/priority_queue.hpp>", public ] },
+ { include: ["<boost/heap/detail/stable_heap.hpp>", private, "<boost/heap/skew_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/binomial_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/fibonacci_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/pairing_heap.hpp>", public ] },
+ { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/skew_heap.hpp>", public ] },
+ { include: ["<boost/icl/detail/boost_config.hpp>", private, "<boost/icl/gregorian.hpp>", public ] },
+ { include: ["<boost/icl/detail/boost_config.hpp>", private, "<boost/icl/impl_config.hpp>", public ] },
+ { include: ["<boost/icl/detail/boost_config.hpp>", private, "<boost/icl/ptime.hpp>", public ] },
+ { include: ["<boost/icl/detail/concept_check.hpp>", private, "<boost/icl/closed_interval.hpp>", public ] },
+ { include: ["<boost/icl/detail/concept_check.hpp>", private, "<boost/icl/continuous_interval.hpp>", public ] },
+ { include: ["<boost/icl/detail/concept_check.hpp>", private, "<boost/icl/discrete_interval.hpp>", public ] },
+ { include: ["<boost/icl/detail/concept_check.hpp>", private, "<boost/icl/map.hpp>", public ] },
+ { include: ["<boost/icl/detail/concept_check.hpp>", private, "<boost/icl/open_interval.hpp>", public ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/concept/interval.hpp>", public ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/interval_base_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/interval_bounds.hpp>", public ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/map.hpp>", public ] },
+ { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/type_traits/interval_type_default.hpp>", public ] },
+ { include: ["<boost/icl/detail/element_iterator.hpp>", private, "<boost/icl/interval_base_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/exclusive_less_than.hpp>", private, "<boost/icl/interval_base_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_map_algo.hpp>", private, "<boost/icl/concept/interval_associator.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_map_algo.hpp>", private, "<boost/icl/concept/interval_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_map_algo.hpp>", private, "<boost/icl/interval_base_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_set_algo.hpp>", private, "<boost/icl/concept/interval_associator.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_set_algo.hpp>", private, "<boost/icl/concept/interval_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/interval_set_algo.hpp>", private, "<boost/icl/interval_base_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/map_algo.hpp>", private, "<boost/icl/associative_element_container.hpp>", public ] },
+ { include: ["<boost/icl/detail/map_algo.hpp>", private, "<boost/icl/concept/element_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/map_algo.hpp>", private, "<boost/icl/concept/interval_associator.hpp>", public ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/interval_base_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/interval_base_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/map.hpp>", public ] },
+ { include: ["<boost/icl/detail/on_absorbtion.hpp>", private, "<boost/icl/concept/element_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/on_absorbtion.hpp>", private, "<boost/icl/interval_base_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/on_absorbtion.hpp>", private, "<boost/icl/map.hpp>", public ] },
+ { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/concept/element_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/concept/interval_associator.hpp>", public ] },
+ { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/concept/interval_map.hpp>", public ] },
+ { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/concept/interval_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/std_set.hpp>", private, "<boost/icl/concept/element_set.hpp>", public ] },
+ { include: ["<boost/icl/detail/subset_comparer.hpp>", private, "<boost/icl/concept/element_associator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private, "<boost/interprocess/allocators/private_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/node_pool.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/node_pool.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/node_pool.hpp>", private, "<boost/interprocess/allocators/private_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/node_tools.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/allocators/detail/node_tools.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/sync/spin/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/sync/spin/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/cast_tags.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/cast_tags.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/private_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/private_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/anonymous_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/allocation_type.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/containers_fwd.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/deque.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/flat_map.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/flat_set.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/list.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/map.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/pair.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/set.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/slist.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/stable_vector.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/string.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/vector.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/containers/version_type.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/creation_tags.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/errors.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/exceptions.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/file_mapping.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/flat_map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/null_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/indexes/unordered_map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/interprocess_fwd.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_external_buffer.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_heap_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_mapped_file.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/managed_xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/simple_seq_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/permissions.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/shared_memory_object.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/deleter.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/enable_shared_from_this.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/unique_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/weak_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/streams/bufferstream.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/streams/vectorstream.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/interprocess_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/lock_options.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/mutex_family.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/null_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/pthread_helpers.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/posix/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/shm/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/spin/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/spin/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/spin/wait.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/upgradable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/named_sync.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/sync_utils.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/winapi_mutex_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/winapi_semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/windows/winapi_wrapper_common.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/xsi_key.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/private_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/private_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/anonymous_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/allocation_type.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/containers_fwd.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/deque.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/flat_map.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/flat_set.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/list.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/map.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/pair.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/set.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/slist.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/stable_vector.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/string.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/vector.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/containers/version_type.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/creation_tags.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/errors.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/exceptions.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/file_mapping.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/flat_map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/null_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/indexes/unordered_map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/interprocess_fwd.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_external_buffer.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_heap_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_mapped_file.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/managed_xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/simple_seq_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/permissions.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/shared_memory_object.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/deleter.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/enable_shared_from_this.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/unique_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/weak_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/streams/bufferstream.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/streams/vectorstream.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/interprocess_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/lock_options.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/mutex_family.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/null_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/pthread_helpers.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/posix/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/shm/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/spin/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/spin/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/spin/wait.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/upgradable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/named_sync.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/sync_utils.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/winapi_mutex_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/winapi_semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/windows/winapi_wrapper_common.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/xsi_key.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_external_begin.hpp>", private, "<boost/interprocess/sync/windows/sync_utils.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/config_external_end.hpp>", private, "<boost/interprocess/sync/windows/sync_utils.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/file_wrapper.hpp>", private, "<boost/interprocess/managed_mapped_file.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/intermodule_singleton.hpp>", private, "<boost/flyweight/intermodule_holder.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/posix/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/shm/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/shm/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/windows/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/windows/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/sync/windows/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_external_buffer.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_heap_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_mapped_file.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/managed_xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/managed_mapped_file.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/managed_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/managed_windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/managed_xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/named_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/sync/shm/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/sync/shm/named_creation_functor.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/sync/upgradable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/named_proxy.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/nothrow.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/nothrow.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/file_mapping.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/shared_memory_object.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/xsi_key.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/posix/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/posix/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/spin/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/spin/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/sync/spin/wait.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/pointer_type.hpp>", private, "<boost/interprocess/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/interprocess_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_sharable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/ptime_to_timespec.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/shm/named_upgradable_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/spin/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/spin/interprocess_barrier.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/spin/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/upgradable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/named_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/named_semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/winapi_mutex_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/winapi_semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/windows/winapi_wrapper_common.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/segment_manager_helper.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/shared_memory_object.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/sync/windows/named_sync.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/file_mapping.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/std_fwd.hpp>", private, "<boost/interprocess/interprocess_fwd.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/transform_iterator.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/scoped_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/sharable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/shm/named_creation_functor.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/sync/upgradable_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/cached_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/cached_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/private_adaptive_pool.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/private_node_allocator.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/file_mapping.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/indexes/unordered_map_index.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/offset_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/deleter.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/xsi_key.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/errors.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/permissions.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/sync_utils.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/winapi_mutex_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/winapi_semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/sync/windows/winapi_wrapper_common.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/windows_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/mapped_region.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/sync/windows/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/sync/windows/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private, "<boost/interprocess/managed_xsi_shared_memory.hpp>", public ] },
+ { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private, "<boost/interprocess/mem_algo/simple_seq_fit.hpp>", public ] },
+ { include: ["<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private, "<boost/interprocess/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/posix/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/posix/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/spin/mutex.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private, "<boost/interprocess/sync/windows/condition.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private, "<boost/interprocess/sync/windows/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private, "<boost/interprocess/sync/interprocess_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private, "<boost/interprocess/sync/shm/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/file_lock.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/interprocess_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/named_condition_any.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/posix/semaphore_wrapper.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/shm/named_condition.hpp>", public ] },
+ { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/spin/semaphore.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algorithm.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algorithm.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algorithm.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/avltree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/circular_list_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/circular_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/linear_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/rbtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/sgtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/splaytree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/treap_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/any_node_and_algorithms.hpp>", private, "<boost/intrusive/any_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/array_initializer.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/array_initializer.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/avltree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/pointer_plus_bits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/rbtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/splaytree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/treap_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/avltree_node.hpp>", private, "<boost/intrusive/avl_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/avltree_node.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/bstree_algorithms_base.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/common_slist_algorithms.hpp>", private, "<boost/intrusive/circular_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/common_slist_algorithms.hpp>", private, "<boost/intrusive/linear_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/any_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/avl_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/avl_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/avltree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/bs_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/bs_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/circular_list_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/circular_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/derivation_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/linear_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/list_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/member_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/options.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/pack_options.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/parent_from_member.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/pointer_plus_bits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/pointer_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/priority_compare.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/rbtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/sg_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/sgtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/slist_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/splay_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/splaytree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/treap_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/treap_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/trivial_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/unordered_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/unordered_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/any_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/avl_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/avl_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/avltree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/bs_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/bs_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/circular_list_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/circular_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/derivation_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/linear_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/list_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/member_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/options.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/pack_options.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/parent_from_member.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/pointer_plus_bits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/pointer_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/priority_compare.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/rbtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/sg_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/sgtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/slist_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/splay_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/splaytree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/treap_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/treap_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/trivial_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/unordered_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/unordered_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/default_header_holder.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/default_header_holder.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/default_header_holder.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/container/pmr/resource_adaptor.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/avltree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/rbtree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/empty_node_checker.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/equal_to_value.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/equal_to_value.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/exception_disposer.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/exception_disposer.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/exception_disposer.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/exception_disposer.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/function_detector.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/any_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/avl_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/bs_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/list_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/slist_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/generic_hook.hpp>", private, "<boost/intrusive/unordered_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/get_value_traits.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/hashtable_node.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/has_member_function_callable_with.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/key_nodeptr_comp.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/list_iterator.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/list_node.hpp>", private, "<boost/intrusive/list_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/math.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/math.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/indexes/flat_map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/indexes/map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/indexes/unordered_map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/priority_compare.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/indexes/flat_map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/indexes/iset_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/indexes/iunordered_set_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/indexes/map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/indexes/unordered_map_index.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/segment_manager.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/linear_slist_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/any_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/avl_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/bs_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/options.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/pointer_plus_bits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/pointer_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/sg_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/splay_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/treap_set.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/node_cloner_disposer.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/node_cloner_disposer.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/node_cloner_disposer.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/node_to_value.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/parent_from_member.hpp>", private, "<boost/intrusive/member_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/parent_from_member.hpp>", private, "<boost/intrusive/parent_from_member.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/pointer_element.hpp>", private, "<boost/intrusive/pointer_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/rbtree_node.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/rbtree_node.hpp>", private, "<boost/intrusive/set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/reverse_iterator.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/reverse_iterator.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/simple_disposers.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/simple_disposers.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/simple_disposers.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/simple_disposers.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/size_holder.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/size_holder.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/size_holder.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/size_holder.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/slist_iterator.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/slist_node.hpp>", private, "<boost/intrusive/slist_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/to_raw_pointer.hpp>", private, "<boost/intrusive/member_value_traits.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/transform_iterator.hpp>", private, "<boost/intrusive/hashtable.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_iterator.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/avltree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/bs_set_hook.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/rbtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/sgtree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/splaytree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/treap.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/tree_value_compare.hpp>", private, "<boost/intrusive/bstree.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/bstree_algorithms.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/list.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/slist.hpp>", public ] },
+ { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/splaytree_algorithms.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/access_control.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/access_control.hpp>", private, "<boost/iostreams/filtering_streambuf.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/access_control.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/concept_adapter.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/device_adapter.hpp>", private, "<boost/iostreams/tee.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/direct_adapter.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/direct_adapter.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/filter_adapter.hpp>", private, "<boost/iostreams/tee.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private, "<boost/iostreams/filter/gzip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/adapter/range_adapter.hpp>", private, "<boost/iostreams/filter/gzip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/bool_trait_def.hpp>", private, "<boost/iostreams/filter/test.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/bool_trait_def.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/broken_overload_resolution/stream.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/tee.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/char_traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filter/aggregate.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filter/gzip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filtering_streambuf.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filter/newline.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filter/stdio.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/codecvt_helper.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/codecvt_holder.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/auto_link.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/auto_link.hpp>", private, "<boost/iostreams/device/mapped_file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/auto_link.hpp>", private, "<boost/iostreams/filter/bzip2.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/auto_link.hpp>", private, "<boost/iostreams/filter/zlib.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/bzip2.hpp>", private, "<boost/iostreams/filter/bzip2.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/codecvt.hpp>", private, "<boost/iostreams/positioning.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/checked_operations.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/combine.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/device/file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filter/aggregate.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filter/counter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filter/line.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filter/newline.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/flush.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/imbue.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/input_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/optimal_buffer_size.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/output_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/positioning.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/dyn_link.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/dyn_link.hpp>", private, "<boost/iostreams/device/mapped_file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/dyn_link.hpp>", private, "<boost/iostreams/filter/bzip2.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/dyn_link.hpp>", private, "<boost/iostreams/filter/zlib.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/checked_operations.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/combine.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/device/file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filter/aggregate.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filter/counter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filter/line.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filter/newline.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/flush.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/imbue.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/input_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/optimal_buffer_size.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/output_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/positioning.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/fpos.hpp>", private, "<boost/iostreams/positioning.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/overload_resolution.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/overload_resolution.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/unreachable_return.hpp>", private, "<boost/iostreams/checked_operations.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/char_traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/device/file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/device/mapped_file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/filter/bzip2.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/filter/stdio.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/filter/zlib.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/config/zlib.hpp>", private, "<boost/iostreams/filter/zlib.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/counted_array.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/default_arg.hpp>", private, "<boost/iostreams/concepts.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/checked_operations.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/flush.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/imbue.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/optimal_buffer_size.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/double_object.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/checked_operations.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/filter/gzip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/tee.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/file_handle.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/forward.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/forward.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/forward.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/fstream.hpp>", private, "<boost/iostreams/device/file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/compose.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/invert.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/tee.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/combine.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/concepts.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/constants.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/device/back_inserter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/device/file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/device/mapped_file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/device/null.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/aggregate.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/bzip2.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/gzip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/line.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/newline.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/stdio.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/test.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/filter/zlib.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/positioning.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/skip.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/iostream.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/iostream.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/is_iterator_range.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/optional.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/path.hpp>", private, "<boost/iostreams/device/file_descriptor.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/path.hpp>", private, "<boost/iostreams/device/mapped_file.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/push.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/push.hpp>", private, "<boost/iostreams/filtering_streambuf.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/push.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/resolve.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/restrict_impl.hpp>", private, "<boost/iostreams/restrict.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/restrict_impl.hpp>", private, "<boost/iostreams/slice.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select_by_size.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/code_converter.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf/chainbuf.hpp>", private, "<boost/iostreams/filtering_streambuf.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/filtering_streambuf.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/filtering_stream.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/flush.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/imbue.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private, "<boost/iostreams/stream_buffer.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/template_params.hpp>", private, "<boost/iostreams/filter/symmetric.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/template_params.hpp>", private, "<boost/iostreams/pipeline.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/chain.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/close.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/combine.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/copy.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/flush.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/imbue.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/input_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/optimal_buffer_size.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/output_sequence.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/read.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/seek.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/traits.hpp>", public ] },
+ { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/write.hpp>", public ] },
+ { include: ["<boost/iterator/detail/any_conversion_eater.hpp>", private, "<boost/iterator/is_lvalue_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/any_conversion_eater.hpp>", private, "<boost/iterator/is_readable_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/indirect_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/interoperable.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/is_lvalue_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/is_readable_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/iterator_adaptor.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/iterator_categories.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/new_iterator_tests.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/python/object_operators.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/indirect_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/interoperable.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/is_lvalue_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/is_readable_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/iterator_adaptor.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/iterator_categories.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/new_iterator_tests.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/python/object_operators.hpp>", public ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/iterator/iterator_adaptor.hpp>", public ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/iterator/transform_iterator.hpp>", public ] },
+ { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/python/object_operators.hpp>", public ] },
+ { include: ["<boost/iterator/detail/facade_iterator_category.hpp>", private, "<boost/iterator/iterator_archetypes.hpp>", public ] },
+ { include: ["<boost/iterator/detail/facade_iterator_category.hpp>", private, "<boost/iterator/iterator_facade.hpp>", public ] },
+ { include: ["<boost/lambda/detail/actions.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/arity_code.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/bind_functions.hpp>", private, "<boost/lambda/bind.hpp>", public ] },
+ { include: ["<boost/lambda/detail/control_constructs_common.hpp>", private, "<boost/lambda/exceptions.hpp>", public ] },
+ { include: ["<boost/lambda/detail/control_constructs_common.hpp>", private, "<boost/lambda/switch.hpp>", public ] },
+ { include: ["<boost/lambda/detail/function_adaptors.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/lambda_config.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/lambda_functor_base.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/lambda_functors.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/lambda_fwd.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/lambda_traits.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/member_ptr.hpp>", private, "<boost/lambda/lambda.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_actions.hpp>", private, "<boost/lambda/control_structures.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_actions.hpp>", private, "<boost/lambda/if.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_actions.hpp>", private, "<boost/lambda/lambda.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_lambda_func_base.hpp>", private, "<boost/lambda/lambda.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_return_type_traits.hpp>", private, "<boost/lambda/control_structures.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_return_type_traits.hpp>", private, "<boost/lambda/if.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operator_return_type_traits.hpp>", private, "<boost/lambda/lambda.hpp>", public ] },
+ { include: ["<boost/lambda/detail/operators.hpp>", private, "<boost/lambda/lambda.hpp>", public ] },
+ { include: ["<boost/lambda/detail/ret.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/return_type_traits.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/select_functions.hpp>", private, "<boost/lambda/core.hpp>", public ] },
+ { include: ["<boost/lambda/detail/suppress_unused.hpp>", private, "<boost/lambda/casts.hpp>", public ] },
+ { include: ["<boost/lexical_cast/detail/converter_lexical.hpp>", private, "<boost/lexical_cast/try_lexical_convert.hpp>", public ] },
+ { include: ["<boost/lexical_cast/detail/converter_numeric.hpp>", private, "<boost/lexical_cast/try_lexical_convert.hpp>", public ] },
+ { include: ["<boost/lexical_cast/detail/is_character.hpp>", private, "<boost/lexical_cast/try_lexical_convert.hpp>", public ] },
+ { include: ["<boost/lexical_cast/detail/widest_char.hpp>", private, "<boost/lexical_cast/lexical_cast_old.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private, "<boost/local_function/aux_/macro/code_/functor.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/sign.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/defaults.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/this.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/any_bind_type.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/sign.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/defaults.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/this.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/const.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/this.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/default.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_params.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/default.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/sign.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/default.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/defaults.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private, "<boost/local_function/aux_/macro/name.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private, "<boost/local_function/aux_/macro/name.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/register.hpp>", private, "<boost/local_function/aux_/macro/code_/functor.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/return.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_/append.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/return.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/sign.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/this.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/any_bind_type.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/this.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/validate_/this.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private, "<boost/local_function/aux_/macro/code_/functor.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/sign.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/line_counter.hpp>", private, "<boost/local_function.hpp>", public ] },
+ { include: ["<boost/local_function/detail/preprocessor/void_list.hpp>", private, "<boost/local_function.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/atomic.hpp>", private, "<boost/lockfree/queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/atomic.hpp>", private, "<boost/lockfree/spsc_queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/atomic.hpp>", private, "<boost/lockfree/stack.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/copy_payload.hpp>", private, "<boost/lockfree/queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/copy_payload.hpp>", private, "<boost/lockfree/spsc_queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/copy_payload.hpp>", private, "<boost/lockfree/stack.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/freelist.hpp>", private, "<boost/lockfree/queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/freelist.hpp>", private, "<boost/lockfree/stack.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/parameter.hpp>", private, "<boost/lockfree/queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/parameter.hpp>", private, "<boost/lockfree/spsc_queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/parameter.hpp>", private, "<boost/lockfree/stack.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/prefix.hpp>", private, "<boost/lockfree/spsc_queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/tagged_ptr.hpp>", private, "<boost/lockfree/queue.hpp>", public ] },
+ { include: ["<boost/lockfree/detail/tagged_ptr.hpp>", private, "<boost/lockfree/stack.hpp>", public ] },
+ { include: ["<boost/log/detail/asio_fwd.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/attachable_sstream_buf.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/attachable_sstream_buf.hpp>", private, "<boost/log/utility/formatting_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_get_value_impl.hpp>", private, "<boost/log/attributes/attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_get_value_impl.hpp>", private, "<boost/log/attributes/attribute_value.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_predicate.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_predicate.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_predicate.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_predicate.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/attribute_predicate.hpp>", private, "<boost/log/expressions/predicates/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/attr_output_impl.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/attr_output_impl.hpp>", private, "<boost/log/expressions/formatters/stream.hpp>", public ] },
+ { include: ["<boost/log/detail/attr_output_terminal.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/attr_output_terminal.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/cleanup_scope_guard.hpp>", private, "<boost/log/sinks/text_multifile_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/code_conversion.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/code_conversion.hpp>", private, "<boost/log/utility/formatting_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/code_conversion.hpp>", private, "<boost/log/utility/setup/filter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_cast.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_set.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_value.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_value_impl.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/attribute_value_set.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/clock.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/constant.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/counter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/current_process_id.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/current_process_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/current_thread_id.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/fallback_policy_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/fallback_policy.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/function.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/mutable_constant.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/scoped_attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/timer.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/time_traits.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/value_extraction_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/value_extraction.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/value_visitation_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/attributes/value_visitation.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/common.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/core/core.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/core.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/core/record.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/core/record_view.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/exceptions.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/attr_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/c_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/csv_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/format.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/if.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/max_size_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/stream.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/formatters/xml_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/is_keyword_descriptor.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/keyword_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/keyword.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/message.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/channel_severity_filter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/has_attr.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/is_debugger_present.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/predicates/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/expressions/record.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/auto_flush.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/block_size.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/capacity.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/channel.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/delimiter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/depth.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/empty_marker.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/enable_final_rotation.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/facility.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/file_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/format.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/ident.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/incomplete_marker.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/ip_version.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/iteration.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/log_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/log_source.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/max_files.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/max_size.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/message_file.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/min_free_space.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/open_mode.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/order.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/ordering_window.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/overflow_policy.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/permissions.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/registration.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/rotation_size.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/scan_method.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/severity.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/start_thread.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/target.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/time_based_rotation.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/keywords/use_impl.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/async_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/attribute_mapping.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/basic_sink_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/block_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/bounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/bounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/debug_output_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/drop_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/event_log_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/event_log_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/frontend_requirements.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/sink.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/sync_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/syslog_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/text_file_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/text_ipc_message_queue_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/text_multifile_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/text_ostream_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/unbounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/unbounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sinks/unlocked_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/basic_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/channel_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/exception_handler_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/features.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/global_logger_storage.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/logger.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/record_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/severity_channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/severity_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/severity_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/sources/threading_models.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/exception.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/regex.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/spirit_classic.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/spirit_qi.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/std_regex.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/support/xpressive.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/trivial.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/exception_handler.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/formatting_ostream_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/formatting_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/as_action.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/bind_assign.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/bind.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/bind_output.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/bind_to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/fun_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/logical.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/nop.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/functional/save_result.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/ipc/object_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/ipc/reliable_message_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/manipulators/add_value.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/manipulators/dump.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/manipulators.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/manipulators/to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/once_block.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/open_mode.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/permissions.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/record_ordering.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/setup/common_attributes.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/setup/console.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/setup/file.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/strictest_lock.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/string_literal_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/string_literal.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/type_dispatch/date_time_types.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/type_dispatch/dynamic_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/type_dispatch/standard_types.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/type_dispatch/static_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/type_dispatch/type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/unique_identifier_name.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/unused_variable.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/value_ref_fwd.hpp>", public ] },
+ { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/copy_cv.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/format.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/if.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/max_size_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/keyword.hpp>", public ] },
+ { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/expressions/predicates/channel_severity_filter.hpp>", public ] },
+ { include: ["<boost/log/detail/date_time_fmt_gen_traits_fwd.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/date_time_fmt_gen_traits_fwd.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/date_time_format_parser.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/decomposed_time.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/deduce_char_type.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/deduce_char_type.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/default_attribute_names.hpp>", private, "<boost/log/expressions/message.hpp>", public ] },
+ { include: ["<boost/log/detail/default_attribute_names.hpp>", private, "<boost/log/sources/channel_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/default_attribute_names.hpp>", private, "<boost/log/sources/severity_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/default_attribute_names.hpp>", private, "<boost/log/utility/setup/common_attributes.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/attributes/constant.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/embedded_string_type.hpp>", private, "<boost/log/utility/manipulators/add_value.hpp>", public ] },
+ { include: ["<boost/log/detail/enqueued_record.hpp>", private, "<boost/log/sinks/bounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/enqueued_record.hpp>", private, "<boost/log/sinks/unbounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/event.hpp>", private, "<boost/log/sinks/unbounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/fake_mutex.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/fake_mutex.hpp>", private, "<boost/log/sinks/unlocked_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_cast.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_name.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_set.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_value.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_value_impl.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/attribute_value_set.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/clock.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/constant.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/counter.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/current_process_id.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/current_process_name.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/current_thread_id.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/fallback_policy.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/function.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/mutable_constant.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/scoped_attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/timer.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/time_traits.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/value_extraction.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/attributes/value_visitation.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/core/core.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/core/record.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/core/record_view.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/exceptions.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/c_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/csv_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/format.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/if.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/max_size_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/stream.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/formatters/xml_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/is_keyword_descriptor.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/keyword.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/message.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/channel_severity_filter.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/has_attr.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/is_debugger_present.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/predicates/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/expressions/record.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/async_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/attribute_mapping.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/basic_sink_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/block_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/bounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/bounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/debug_output_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/drop_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/event_log_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/event_log_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/frontend_requirements.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/sink.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/sync_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/syslog_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/text_file_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/text_ipc_message_queue_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/text_multifile_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/text_ostream_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/unbounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/unbounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sinks/unlocked_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/basic_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/channel_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/exception_handler_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/features.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/global_logger_storage.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/logger.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/record_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/severity_channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/severity_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/severity_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/sources/threading_models.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/exception.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/regex.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/spirit_classic.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/spirit_qi.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/std_regex.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/support/xpressive.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/trivial.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/exception_handler.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/formatting_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/as_action.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/bind_assign.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/bind.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/bind_output.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/bind_to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/fun_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/logical.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/nop.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/functional/save_result.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/ipc/object_name.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/ipc/reliable_message_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/manipulators/add_value.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/manipulators/dump.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/manipulators/to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/once_block.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/open_mode.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/permissions.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/record_ordering.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/common_attributes.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/console.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/file.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/filter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/formatter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/from_settings.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/from_stream.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/settings.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/setup/settings_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/strictest_lock.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/string_literal.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/type_dispatch/date_time_types.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/type_dispatch/dynamic_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/type_dispatch/standard_types.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/type_dispatch/static_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/type_dispatch/type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/format.hpp>", private, "<boost/log/expressions/formatters/format.hpp>", public ] },
+ { include: ["<boost/log/detail/function_traits.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/function_traits.hpp>", private, "<boost/log/utility/record_ordering.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/if.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/max_size_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_cast.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_name.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_set.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_value.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_value_impl.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/attribute_value_set.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/clock.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/constant.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/counter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/current_process_id.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/current_process_name.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/current_thread_id.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/fallback_policy.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/function.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/mutable_constant.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/scoped_attribute.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/timer.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/time_traits.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/value_extraction.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/attributes/value_visitation.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/core/core.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/core/record.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/core/record_view.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/exceptions.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/attr.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/c_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/csv_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/format.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/if.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/max_size_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/stream.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/wrap_formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/formatters/xml_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/is_keyword_descriptor.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/keyword.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/message.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/channel_severity_filter.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/has_attr.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/is_debugger_present.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/predicates/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/expressions/record.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/async_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/attribute_mapping.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/basic_sink_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/block_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/bounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/bounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/debug_output_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/drop_on_overflow.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/event_log_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/event_log_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/frontend_requirements.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/sink.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/sync_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/syslog_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/text_file_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/text_ipc_message_queue_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/text_multifile_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/text_ostream_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/unbounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/unbounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sinks/unlocked_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/basic_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/channel_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/exception_handler_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/features.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/global_logger_storage.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/logger.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/record_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/severity_channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/severity_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/severity_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/sources/threading_models.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/exception.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/regex.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/spirit_classic.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/spirit_qi.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/std_regex.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/support/xpressive.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/trivial.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/exception_handler.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/formatting_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/as_action.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/bind_assign.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/bind.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/bind_output.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/bind_to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/fun_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/logical.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/nop.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/functional/save_result.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/ipc/object_name.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/ipc/reliable_message_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/manipulators/add_value.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/manipulators/dump.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/manipulators/to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/once_block.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/open_mode.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/permissions.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/record_ordering.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/common_attributes.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/console.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/file.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/filter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/formatter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/from_settings.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/from_stream.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/settings.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/setup/settings_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/strictest_lock.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/string_literal.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/type_dispatch/date_time_types.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/type_dispatch/dynamic_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/type_dispatch/standard_types.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/type_dispatch/static_type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/type_dispatch/type_dispatcher.hpp>", public ] },
+ { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/is_ostream.hpp>", private, "<boost/log/utility/manipulators/to_log.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/core/core.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/expressions/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/expressions/formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/expressions/formatters/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sinks/event_log_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sinks/sink.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sinks/text_file_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sinks/text_multifile_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/sources/exception_handler_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/light_function.hpp>", private, "<boost/log/support/date_time.hpp>", public ] },
+ { include: ["<boost/log/detail/light_rw_mutex.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/light_rw_mutex.hpp>", private, "<boost/log/sources/channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/light_rw_mutex.hpp>", private, "<boost/log/sources/logger.hpp>", public ] },
+ { include: ["<boost/log/detail/light_rw_mutex.hpp>", private, "<boost/log/sources/severity_channel_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/light_rw_mutex.hpp>", private, "<boost/log/sources/severity_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/locking_ptr.hpp>", private, "<boost/log/sinks/async_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/locking_ptr.hpp>", private, "<boost/log/sinks/sync_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/attributes/mutable_constant.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/sinks/basic_sink_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/sources/channel_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/sources/exception_handler_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/sources/severity_feature.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/sources/threading_models.hpp>", public ] },
+ { include: ["<boost/log/detail/locks.hpp>", private, "<boost/log/utility/strictest_lock.hpp>", public ] },
+ { include: ["<boost/log/detail/native_typeof.hpp>", private, "<boost/log/sources/record_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/native_typeof.hpp>", private, "<boost/log/utility/setup/settings.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/expressions/formatters/named_scope.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/async_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/event_log_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/sync_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/syslog_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/text_file_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/text_ipc_message_queue_backend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sinks/unlocked_frontend.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/sources/basic_logger.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/utility/ipc/reliable_message_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/utility/setup/file.hpp>", public ] },
+ { include: ["<boost/log/detail/parameter_tools.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/pp_identity.hpp>", private, "<boost/log/utility/strictest_lock.hpp>", public ] },
+ { include: ["<boost/log/detail/process_id.hpp>", private, "<boost/log/attributes/current_process_id.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/filter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/formatter_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/from_settings.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/from_stream.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/settings.hpp>", public ] },
+ { include: ["<boost/log/detail/setup_config.hpp>", private, "<boost/log/utility/setup/settings_parser.hpp>", public ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/expressions/filter.hpp>", public ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/expressions/formatter.hpp>", public ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/expressions/formatters/char_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/utility/string_literal.hpp>", public ] },
+ { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/log/detail/singleton.hpp>", private, "<boost/log/sources/global_logger_storage.hpp>", public ] },
+ { include: ["<boost/log/detail/sink_init_helpers.hpp>", private, "<boost/log/utility/setup/console.hpp>", public ] },
+ { include: ["<boost/log/detail/sink_init_helpers.hpp>", private, "<boost/log/utility/setup/file.hpp>", public ] },
+ { include: ["<boost/log/detail/snprintf.hpp>", private, "<boost/log/expressions/formatters/c_decorator.hpp>", public ] },
+ { include: ["<boost/log/detail/tagged_integer.hpp>", private, "<boost/log/sinks/attribute_mapping.hpp>", public ] },
+ { include: ["<boost/log/detail/tagged_integer.hpp>", private, "<boost/log/sinks/event_log_constants.hpp>", public ] },
+ { include: ["<boost/log/detail/thread_id.hpp>", private, "<boost/log/attributes/current_thread_id.hpp>", public ] },
+ { include: ["<boost/log/detail/threadsafe_queue.hpp>", private, "<boost/log/sinks/unbounded_fifo_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/timestamp.hpp>", private, "<boost/log/sinks/bounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/timestamp.hpp>", private, "<boost/log/sinks/unbounded_ordering_queue.hpp>", public ] },
+ { include: ["<boost/log/detail/trivial_keyword.hpp>", private, "<boost/log/expressions/keyword.hpp>", public ] },
+ { include: ["<boost/log/detail/trivial_keyword.hpp>", private, "<boost/log/trivial.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/begins_with.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/contains.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/ends_with.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/has_attr.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/is_in_range.hpp>", public ] },
+ { include: ["<boost/log/detail/unary_function_terminal.hpp>", private, "<boost/log/expressions/predicates/matches.hpp>", public ] },
+ { include: ["<boost/log/detail/unhandled_exception_count.hpp>", private, "<boost/log/sources/record_ostream.hpp>", public ] },
+ { include: ["<boost/log/detail/value_ref_visitation.hpp>", private, "<boost/log/utility/value_ref.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_digamma.hpp>", private, "<boost/math/bindings/e_float.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_digamma.hpp>", private, "<boost/math/bindings/mpfr.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_digamma.hpp>", private, "<boost/math/bindings/mpreal.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_digamma.hpp>", private, "<boost/math/bindings/rr.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/math/bindings/e_float.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/math/bindings/mpfr.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/math/bindings/mpreal.hpp>", public ] },
+ { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/math/bindings/rr.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/arcsine.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/bernoulli.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/beta.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/cauchy.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/exponential.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/extreme_value.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/fisher_f.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/gamma.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/geometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/hyperexponential.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/hypergeometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/inverse_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/inverse_gamma.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/inverse_gaussian.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/laplace.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/logistic.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/lognormal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/negative_binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/non_central_beta.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/non_central_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/normal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/pareto.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/poisson.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/rayleigh.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/skew_normal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/students_t.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/triangular.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/uniform.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/common_error_handling.hpp>", private, "<boost/math/distributions/weibull.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/arcsine.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/bernoulli.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/beta.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/cauchy.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/exponential.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/extreme_value.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/fisher_f.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/gamma.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/geometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/hyperexponential.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/hypergeometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/inverse_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/inverse_gamma.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/inverse_gaussian.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/laplace.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/logistic.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/lognormal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/negative_binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/non_central_beta.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/non_central_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/non_central_f.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/non_central_t.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/normal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/pareto.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/poisson.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/rayleigh.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/skew_normal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/students_t.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/triangular.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/uniform.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/derived_accessors.hpp>", private, "<boost/math/distributions/weibull.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_mode.hpp>", private, "<boost/math/distributions/non_central_beta.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_mode.hpp>", private, "<boost/math/distributions/non_central_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_mode.hpp>", private, "<boost/math/distributions/non_central_f.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_mode.hpp>", private, "<boost/math/distributions/skew_normal.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_quantile.hpp>", private, "<boost/math/distributions/hyperexponential.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_quantile.hpp>", private, "<boost/math/distributions/non_central_chi_squared.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/generic_quantile.hpp>", private, "<boost/math/distributions/non_central_t.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/hypergeometric_cdf.hpp>", private, "<boost/math/distributions/hypergeometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/hypergeometric_pdf.hpp>", private, "<boost/math/distributions/hypergeometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/hypergeometric_quantile.hpp>", private, "<boost/math/distributions/hypergeometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/inv_discrete_quantile.hpp>", private, "<boost/math/distributions/binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/inv_discrete_quantile.hpp>", private, "<boost/math/distributions/geometric.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/inv_discrete_quantile.hpp>", private, "<boost/math/distributions/negative_binomial.hpp>", public ] },
+ { include: ["<boost/math/distributions/detail/inv_discrete_quantile.hpp>", private, "<boost/math/distributions/poisson.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/airy_ai_bi_zero.hpp>", private, "<boost/math/special_functions/airy.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bernoulli_details.hpp>", private, "<boost/math/special_functions/bernoulli.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_derivatives_linear.hpp>", private, "<boost/math/special_functions/bessel_prime.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_i0.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_i1.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_ik.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jn.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_derivatives_asym.hpp>", private, "<boost/math/special_functions/bessel_prime.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_derivatives_series.hpp>", private, "<boost/math/special_functions/bessel_prime.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_jy_zero.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_kn.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/bessel_yn.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/erf_inv.hpp>", private, "<boost/math/special_functions/erf.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/fp_traits.hpp>", private, "<boost/math/special_functions/fpclassify.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/fp_traits.hpp>", private, "<boost/math/special_functions/sign.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/gamma_inva.hpp>", private, "<boost/math/special_functions/gamma.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/ibeta_inv_ab.hpp>", private, "<boost/math/special_functions/beta.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/ibeta_inverse.hpp>", private, "<boost/math/special_functions/beta.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/iconv.hpp>", private, "<boost/math/special_functions/bessel.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/igamma_inverse.hpp>", private, "<boost/math/special_functions/gamma.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/igamma_large.hpp>", private, "<boost/math/special_functions/gamma.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/lanczos_sse2.hpp>", private, "<boost/math/special_functions/lanczos.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/lgamma_small.hpp>", private, "<boost/math/special_functions/gamma.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/polygamma.hpp>", private, "<boost/math/special_functions/polygamma.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/round_fwd.hpp>", private, "<boost/math/special_functions/math_fwd.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/unchecked_bernoulli.hpp>", private, "<boost/math/special_functions/bernoulli.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/unchecked_factorial.hpp>", private, "<boost/math/special_functions/factorials.hpp>", public ] },
+ { include: ["<boost/math/special_functions/detail/unchecked_factorial.hpp>", private, "<boost/math/special_functions/gamma.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner1_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner2_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/polynomial_horner3_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner1_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner2_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_10.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_11.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_12.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_13.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_14.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_15.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_16.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_17.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_18.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_19.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_20.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_2.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_3.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_4.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_5.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_6.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_7.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_8.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/math/tools/detail/rational_horner3_9.hpp>", private, "<boost/math/tools/rational.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/assert_string_length.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/back_inserter.hpp>", private, "<boost/metaparse/v1/repeated1.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/back_inserter.hpp>", private, "<boost/metaparse/v1/repeated.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/back_inserter.hpp>", private, "<boost/metaparse/v1/repeated_reject_incomplete1.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/back_inserter.hpp>", private, "<boost/metaparse/v1/repeated_reject_incomplete.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/empty_string.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/front_inserter.hpp>", private, "<boost/metaparse/v1/grammar.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/is_any.hpp>", private, "<boost/metaparse/v1/one_char_except_c.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/is_any.hpp>", private, "<boost/metaparse/v1/one_char_except.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/is_char_c.hpp>", private, "<boost/metaparse/v1/lit_c.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/iterate_impl.hpp>", private, "<boost/metaparse/v1/iterate_c.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/next_digit.hpp>", private, "<boost/metaparse/v1/int_.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/no_char.hpp>", private, "<boost/metaparse/v1/fwd/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/nth_of_c.hpp>", private, "<boost/metaparse/v1/nth_of_c.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/one_char_except_not_used.hpp>", private, "<boost/metaparse/v1/one_char_except.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/one_of.hpp>", private, "<boost/metaparse/v1/one_of.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/one_of.hpp>", private, "<boost/metaparse/v1/repeated_one_of1.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/one_of.hpp>", private, "<boost/metaparse/v1/repeated_one_of.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/pop_back.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/pop_front.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/push_back_c.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/remove_trailing_no_chars.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/sequence.hpp>", private, "<boost/metaparse/v1/sequence.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/size.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/string_at.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/string.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/string_iterator.hpp>", private, "<boost/metaparse/v1/string.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/void_.hpp>", private, "<boost/metaparse/v1/fail_at_first_char_expected.hpp>", public ] },
+ { include: ["<boost/metaparse/v1/impl/void_.hpp>", private, "<boost/metaparse/v1/keyword.hpp>", public ] },
+ { include: ["<boost/move/algo/detail/adaptive_sort_merge.hpp>", private, "<boost/move/algo/adaptive_merge.hpp>", public ] },
+ { include: ["<boost/move/algo/detail/adaptive_sort_merge.hpp>", private, "<boost/move/algo/adaptive_sort.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/adaptive_merge.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/adaptive_sort.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/move.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algorithm.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/core.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/default_delete.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/iterator.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/make_unique.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/move.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/traits.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/unique_ptr.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/utility_core.hpp>", public ] },
+ { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/utility.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/adaptive_merge.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/adaptive_sort.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/move.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algorithm.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/core.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/default_delete.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/iterator.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/make_unique.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/move.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/traits.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/unique_ptr.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/utility_core.hpp>", public ] },
+ { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/utility.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/allocator_traits.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/scoped_allocator_fwd.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/scoped_allocator.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/small_vector.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/move/make_unique.hpp>", public ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/move.hpp>", public ] },
+ { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/iterator.hpp>", public ] },
+ { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/core.hpp>", public ] },
+ { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/traits.hpp>", public ] },
+ { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/utility_core.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/deque.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/flat_map.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/flat_set.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/list.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/map.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/set.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/stable_vector.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/vector.hpp>", public ] },
+ { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/thread/csbl/devector.hpp>", public ] },
+ { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/container/slist.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/pmr/memory_resource.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/pmr/polymorphic_allocator.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/ipc/message_queue.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/rbtree_best_fit.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/core.hpp>", public ] },
+ { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/traits.hpp>", public ] },
+ { include: ["<boost/move/detail/unique_ptr_meta_utils.hpp>", private, "<boost/move/default_delete.hpp>", public ] },
+ { include: ["<boost/move/detail/unique_ptr_meta_utils.hpp>", private, "<boost/move/make_unique.hpp>", public ] },
+ { include: ["<boost/move/detail/unique_ptr_meta_utils.hpp>", private, "<boost/move/unique_ptr.hpp>", public ] },
+ { include: ["<boost/mpi/detail/binary_buffer_iprimitive.hpp>", private, "<boost/mpi/packed_iarchive.hpp>", public ] },
+ { include: ["<boost/mpi/detail/binary_buffer_oprimitive.hpp>", private, "<boost/mpi/packed_oarchive.hpp>", public ] },
+ { include: ["<boost/mpi/detail/broadcast_sc.hpp>", private, "<boost/mpi/collectives/broadcast.hpp>", public ] },
+ { include: ["<boost/mpi/detail/broadcast_sc.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/communicator_sc.hpp>", private, "<boost/mpi/communicator.hpp>", public ] },
+ { include: ["<boost/mpi/detail/communicator_sc.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/computation_tree.hpp>", private, "<boost/mpi/collectives/reduce.hpp>", public ] },
+ { include: ["<boost/mpi/detail/computation_tree.hpp>", private, "<boost/mpi/collectives/scan.hpp>", public ] },
+ { include: ["<boost/mpi/detail/content_oarchive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/ignore_iprimitive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/ignore_oprimitive.hpp>", private, "<boost/mpi/skeleton_and_content.hpp>", public ] },
+ { include: ["<boost/mpi/detail/mpi_datatype_cache.hpp>", private, "<boost/mpi/datatype.hpp>", public ] },
+ { include: ["<boost/mpi/detail/packed_iprimitive.hpp>", private, "<boost/mpi/packed_iarchive.hpp>", public ] },
+ { include: ["<boost/mpi/detail/packed_oprimitive.hpp>", private, "<boost/mpi/packed_oarchive.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/gather.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/gatherv.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/reduce.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/scan.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/scatter.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/collectives/scatterv.hpp>", public ] },
+ { include: ["<boost/mpi/detail/point_to_point.hpp>", private, "<boost/mpi/communicator.hpp>", public ] },
+ { include: ["<boost/msm/front/detail/common_states.hpp>", private, "<boost/msm/front/common_states.hpp>", public ] },
+ { include: ["<boost/msm/front/detail/row2_helper.hpp>", private, "<boost/msm/front/internal_row.hpp>", public ] },
+ { include: ["<boost/msm/front/detail/row2_helper.hpp>", private, "<boost/msm/front/row2.hpp>", public ] },
+ { include: ["<boost/msm/mpl_graph/detail/adjacency_list_graph.ipp>", private, "<boost/msm/mpl_graph/adjacency_list_graph.hpp>", public ] },
+ { include: ["<boost/msm/mpl_graph/detail/graph_implementation_interface.ipp>", private, "<boost/msm/mpl_graph/mpl_graph.hpp>", public ] },
+ { include: ["<boost/msm/mpl_graph/detail/incidence_list_graph.ipp>", private, "<boost/msm/mpl_graph/incidence_list_graph.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/composite_key.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/adl_swap.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/archive_constructed.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/base_type.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/bidir_node_iterator.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/bucket_array.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/cons_stdtuple.hpp>", private, "<boost/multi_index/composite_key.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/converter.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/hash_index_args.hpp>", private, "<boost/multi_index/hashed_index_fwd.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/hash_index_iterator.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/has_tag.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/header_holder.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/invariant_assert.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/modify_key_adaptor.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/no_duplicate_tags.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/no_duplicate_tags.hpp>", private, "<boost/multi_index/tag.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_args.hpp>", private, "<boost/multi_index/ordered_index_fwd.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_args.hpp>", private, "<boost/multi_index/ranked_index_fwd.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_impl_fwd.hpp>", private, "<boost/multi_index/ordered_index_fwd.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_impl_fwd.hpp>", private, "<boost/multi_index/ranked_index_fwd.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_impl.hpp>", private, "<boost/multi_index/ordered_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/ord_index_impl.hpp>", private, "<boost/multi_index/ranked_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/promotes_arg.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnd_index_loader.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnd_index_node.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnd_index_ops.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnd_node_iterator.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/rnk_index_ops.hpp>", private, "<boost/multi_index/ranked_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/seq_index_node.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/seq_index_ops.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/serialization_version.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/unbounded.hpp>", private, "<boost/bimap/bimap.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index_container.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/hashed_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/random_access_index.hpp>", public ] },
+ { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/sequenced_index.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/big_lanczos.hpp>", private, "<boost/multiprecision/cpp_dec_float.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/big_lanczos.hpp>", private, "<boost/multiprecision/gmp.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/big_lanczos.hpp>", private, "<boost/multiprecision/mpfi.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/big_lanczos.hpp>", private, "<boost/multiprecision/mpfr.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/bitscan.hpp>", private, "<boost/multiprecision/cpp_int/misc.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/bitscan.hpp>", private, "<boost/multiprecision/integer.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/digits.hpp>", private, "<boost/multiprecision/gmp.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/digits.hpp>", private, "<boost/multiprecision/mpfi.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/digits.hpp>", private, "<boost/multiprecision/mpfr.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/dynamic_array.hpp>", private, "<boost/multiprecision/cpp_dec_float.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/float_string_cvt.hpp>", private, "<boost/multiprecision/cpp_bin_float.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/float_string_cvt.hpp>", private, "<boost/multiprecision/float128.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/generic_interconvert.hpp>", private, "<boost/multiprecision/number.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/integer_ops.hpp>", private, "<boost/multiprecision/cpp_int.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/integer_ops.hpp>", private, "<boost/multiprecision/debug_adaptor.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/integer_ops.hpp>", private, "<boost/multiprecision/gmp.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/integer_ops.hpp>", private, "<boost/multiprecision/logged_adaptor.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/integer_ops.hpp>", private, "<boost/multiprecision/tommath.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/number_base.hpp>", private, "<boost/multiprecision/traits/is_backend.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/number_base.hpp>", private, "<boost/multiprecision/traits/is_restricted_conversion.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/number_compare.hpp>", private, "<boost/multiprecision/number.hpp>", public ] },
+ { include: ["<boost/multiprecision/detail/ublas_interop.hpp>", private, "<boost/multiprecision/number.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/bounds.hpp>", private, "<boost/numeric/conversion/bounds.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/conversion_traits.hpp>", private, "<boost/numeric/conversion/conversion_traits.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/converter.hpp>", private, "<boost/numeric/conversion/converter.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/int_float_mixture.hpp>", private, "<boost/numeric/conversion/int_float_mixture.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/is_subranged.hpp>", private, "<boost/numeric/conversion/is_subranged.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/numeric_cast_traits.hpp>", private, "<boost/numeric/conversion/numeric_cast_traits.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/old_numeric_cast.hpp>", private, "<boost/numeric/conversion/cast.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/sign_mixture.hpp>", private, "<boost/numeric/conversion/sign_mixture.hpp>", public ] },
+ { include: ["<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private, "<boost/numeric/conversion/udt_builtin_mixture.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/alpha_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/arith2.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/arith.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/rounded_arith.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/rounded_transc.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/transc.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/utility.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/c99_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/division.hpp>", private, "<boost/numeric/interval/arith2.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/division.hpp>", private, "<boost/numeric/interval/arith.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/ia64_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/arith2.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/arith3.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/certain.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/explicit.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/lexicographic.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/possible.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/set.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/compare/tribool.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/ext/integer.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/interval.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/limits.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/transc.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/utility.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/ppc_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/sparc_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/arith2.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/arith3.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/arith.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/compare/certain.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/compare/lexicographic.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/compare/possible.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/compare/set.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/compare/tribool.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/ext/integer.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/transc.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/utility.hpp>", public ] },
+ { include: ["<boost/numeric/interval/detail/x86_rounding_control.hpp>", private, "<boost/numeric/interval/hw_rounding.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/extract_value_type.hpp>", private, "<boost/numeric/odeint/algebra/norm_result_type.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/extract_value_type.hpp>", private, "<boost/numeric/odeint/integrate/integrate.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/extract_value_type.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/for_each.hpp>", private, "<boost/numeric/odeint/algebra/multi_array_algebra.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/for_each.hpp>", private, "<boost/numeric/odeint/algebra/range_algebra.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/macros.hpp>", private, "<boost/numeric/odeint/algebra/range_algebra.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/norm_inf.hpp>", private, "<boost/numeric/odeint/algebra/multi_array_algebra.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/algebra/detail/norm_inf.hpp>", private, "<boost/numeric/odeint/algebra/range_algebra.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/integrate_adaptive.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/integrate_const.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_const.hpp>", private, "<boost/numeric/odeint/integrate/integrate_const.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private, "<boost/numeric/odeint/integrate/integrate_n_steps.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/integrate/detail/integrate_times.hpp>", private, "<boost/numeric/odeint/integrate/integrate_times.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/const_step_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/const_step_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/n_step_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/n_step_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/times_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/times_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/adaptive_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/adaptive_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/adaptive_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/adaptive_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/const_step_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/const_step_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/const_step_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/const_step_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/n_step_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/n_step_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/n_step_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/n_step_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/times_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/times_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/impl/times_iterator_impl.hpp>", private, "<boost/numeric/odeint/iterator/times_time_iterator.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate_adaptive.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate_const.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate_const.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate_n_steps.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp>", private, "<boost/numeric/odeint/iterator/integrate/integrate_times.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/adams_bashforth_call_algebra.hpp>", private, "<boost/numeric/odeint/stepper/adams_bashforth.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/adams_bashforth_coefficients.hpp>", private, "<boost/numeric/odeint/stepper/adams_bashforth.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/adams_moulton_call_algebra.hpp>", private, "<boost/numeric/odeint/stepper/adams_moulton.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/adams_moulton_coefficients.hpp>", private, "<boost/numeric/odeint/stepper/adams_moulton.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private, "<boost/numeric/odeint/stepper/explicit_error_generic_rk.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private, "<boost/numeric/odeint/stepper/explicit_generic_rk.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_call_algebra.hpp>", private, "<boost/numeric/odeint/stepper/explicit_error_generic_rk.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_operations.hpp>", private, "<boost/numeric/odeint/stepper/explicit_error_generic_rk.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/rotating_buffer.hpp>", private, "<boost/numeric/odeint/stepper/adams_bashforth.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/stepper/detail/rotating_buffer.hpp>", private, "<boost/numeric/odeint/stepper/adams_moulton.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/util/detail/is_range.hpp>", private, "<boost/numeric/odeint/util/copy.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/stepper/bulirsch_stoer.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/stepper/controlled_runge_kutta.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/stepper/extrapolation_stepper.hpp>", public ] },
+ { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/stepper/rosenbrock4_controller.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/config.hpp>", private, "<boost/numeric/ublas/exception.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/config.hpp>", private, "<boost/numeric/ublas/operation/num_columns.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/config.hpp>", private, "<boost/numeric/ublas/operation/num_rows.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/config.hpp>", private, "<boost/numeric/ublas/operation/size.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/config.hpp>", private, "<boost/numeric/ublas/traits.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/definitions.hpp>", private, "<boost/numeric/ublas/functional.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/duff.hpp>", private, "<boost/numeric/ublas/functional.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/iterator.hpp>", private, "<boost/numeric/ublas/storage.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/iterator.hpp>", private, "<boost/numeric/ublas/traits.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/matrix_assign.hpp>", private, "<boost/numeric/ublas/experimental/sparse_view.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/matrix_assign.hpp>", private, "<boost/numeric/ublas/matrix.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/matrix_assign.hpp>", private, "<boost/numeric/ublas/matrix_proxy.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/matrix_assign.hpp>", private, "<boost/numeric/ublas/matrix_sparse.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/matrix_assign.hpp>", private, "<boost/numeric/ublas/operation_blocked.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/raw.hpp>", private, "<boost/numeric/ublas/functional.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/returntype_deduction.hpp>", private, "<boost/numeric/ublas/traits.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/banded.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/hermitian.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/matrix_proxy.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/symmetric.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/triangular.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/temporary.hpp>", private, "<boost/numeric/ublas/vector_proxy.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/vector_assign.hpp>", private, "<boost/numeric/ublas/matrix_proxy.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/vector_assign.hpp>", private, "<boost/numeric/ublas/operation_blocked.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/vector_assign.hpp>", private, "<boost/numeric/ublas/vector.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/vector_assign.hpp>", private, "<boost/numeric/ublas/vector_proxy.hpp>", public ] },
+ { include: ["<boost/numeric/ublas/detail/vector_assign.hpp>", private, "<boost/numeric/ublas/vector_sparse.hpp>", public ] },
+ { include: ["<boost/optional/detail/old_optional_implementation.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_aligned_storage.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_config.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_factory_support.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_reference_spec.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_relops.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/optional/detail/optional_swap.hpp>", private, "<boost/optional/optional.hpp>", public ] },
+ { include: ["<boost/pending/detail/disjoint_sets.hpp>", private, "<boost/pending/disjoint_sets.hpp>", public ] },
+ { include: ["<boost/pending/detail/int_iterator.hpp>", private, "<boost/graph/matrix_as_graph.hpp>", public ] },
+ { include: ["<boost/pending/detail/property.hpp>", private, "<boost/pending/property.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/argument.hpp>", private, "<boost/phoenix/core/argument.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/actor_operator.hpp>", private, "<boost/phoenix/core/actor.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/actor_result_of.hpp>", private, "<boost/phoenix/core/actor.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/assign.hpp>", private, "<boost/phoenix/core/actor.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/call.hpp>", private, "<boost/phoenix/core/call.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/expression.hpp>", private, "<boost/phoenix/core/expression.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/function_equal.hpp>", private, "<boost/phoenix/core/function_equal.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp>", private, "<boost/phoenix/core/argument.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/expression.hpp>", private, "<boost/phoenix/core/expression.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/index_sequence.hpp>", private, "<boost/phoenix/core/actor.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/index_sequence.hpp>", private, "<boost/phoenix/core/call.hpp>", public ] },
+ { include: ["<boost/phoenix/core/detail/index_sequence.hpp>", private, "<boost/phoenix/core/function_equal.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/construct_eval.hpp>", private, "<boost/phoenix/object/construct.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/construct_expr.hpp>", private, "<boost/phoenix/object/construct.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/construct.hpp>", private, "<boost/phoenix/object/construct.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/new_eval.hpp>", private, "<boost/phoenix/object/new.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/new_expr.hpp>", private, "<boost/phoenix/object/new.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/cpp03/new.hpp>", private, "<boost/phoenix/object/new.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/const_cast.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/construct.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/dynamic_cast.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/new.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/reinterpret_cast.hpp>", public ] },
+ { include: ["<boost/phoenix/object/detail/target.hpp>", private, "<boost/phoenix/object/static_cast.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/arithmetic.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/bitwise.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/comparison.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/logical.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/define_operator.hpp>", private, "<boost/phoenix/operator/self.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/arithmetic.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/bitwise.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/comparison.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/logical.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/member.hpp>", public ] },
+ { include: ["<boost/phoenix/operator/detail/undef_operator.hpp>", private, "<boost/phoenix/operator/self.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/dynamic.hpp>", private, "<boost/phoenix/scope/dynamic.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/lambda.hpp>", private, "<boost/phoenix/scope/lambda.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/cpp03/local_gen.hpp>", private, "<boost/phoenix/scope/let.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/local_gen.hpp>", private, "<boost/phoenix/scope/lambda.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/local_gen.hpp>", private, "<boost/phoenix/scope/let.hpp>", public ] },
+ { include: ["<boost/phoenix/scope/detail/local_variable.hpp>", private, "<boost/phoenix/scope/local_variable.hpp>", public ] },
+ { include: ["<boost/phoenix/statement/detail/catch_push_back.hpp>", private, "<boost/phoenix/statement/try_catch.hpp>", public ] },
+ { include: ["<boost/phoenix/statement/detail/switch.hpp>", private, "<boost/phoenix/statement/switch.hpp>", public ] },
+ { include: ["<boost/phoenix/statement/detail/try_catch_eval.hpp>", private, "<boost/phoenix/statement/try_catch.hpp>", public ] },
+ { include: ["<boost/phoenix/statement/detail/try_catch_expression.hpp>", private, "<boost/phoenix/statement/try_catch.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/begin.hpp>", private, "<boost/phoenix/stl/algorithm/iteration.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/begin.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/begin.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/decay_array.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/decay_array.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/end.hpp>", private, "<boost/phoenix/stl/algorithm/iteration.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/end.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/end.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_equal_range.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_find.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_lower_bound.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_remove.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_remove_if.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_reverse.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_sort.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_unique.hpp>", private, "<boost/phoenix/stl/algorithm/transformation.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/algorithm/detail/has_upper_bound.hpp>", private, "<boost/phoenix/stl/algorithm/querying.hpp>", public ] },
+ { include: ["<boost/phoenix/stl/container/detail/container.hpp>", private, "<boost/phoenix/stl/container/container.hpp>", public ] },
+ { include: ["<boost/phoenix/support/detail/iterate_define.hpp>", private, "<boost/phoenix/support/iterate.hpp>", public ] },
+ { include: ["<boost/pool/detail/guard.hpp>", private, "<boost/pool/singleton_pool.hpp>", public ] },
+ { include: ["<boost/pool/detail/mutex.hpp>", private, "<boost/pool/poolfwd.hpp>", public ] },
+ { include: ["<boost/pool/detail/pool_construct.ipp>", private, "<boost/pool/object_pool.hpp>", public ] },
+ { include: ["<boost/pool/detail/pool_construct_simple.ipp>", private, "<boost/pool/object_pool.hpp>", public ] },
+ { include: ["<boost/predef/detail/_cassert.h>", private, "<boost/predef/library/c/_prefix.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/borland.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/clang.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/comeau.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/compaq.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/diab.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/digitalmars.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/dignus.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/edg.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/ekopath.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/gcc.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/gcc_xml.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/greenhills.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/hp_acc.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/iar.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/ibm.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/intel.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/kai.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/llvm.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/metaware.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/metrowerks.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/microtec.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/mpw.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/palm.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/pgi.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/sgi_mipspro.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/sunpro.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/tendra.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/visualc.h>", public ] },
+ { include: ["<boost/predef/detail/comp_detected.h>", private, "<boost/predef/compiler/watcom.h>", public ] },
+ { include: ["<boost/predef/detail/endian_compat.h>", private, "<boost/endian/arithmetic.hpp>", public ] },
+ { include: ["<boost/predef/detail/endian_compat.h>", private, "<boost/endian/buffers.hpp>", public ] },
+ { include: ["<boost/predef/detail/endian_compat.h>", private, "<boost/endian/conversion.hpp>", public ] },
+ { include: ["<boost/predef/detail/_exception.h>", private, "<boost/predef/library/std/_prefix.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/aix.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/amigaos.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/android.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/beos.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd/bsdi.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd/dragonfly.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd/free.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd/net.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/bsd/open.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/cygwin.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/haiku.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/hpux.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/ios.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/irix.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/linux.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/macos.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/os400.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/qnxnto.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/solaris.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/vms.h>", public ] },
+ { include: ["<boost/predef/detail/os_detected.h>", private, "<boost/predef/os/windows.h>", public ] },
+ { include: ["<boost/predef/detail/platform_detected.h>", private, "<boost/predef/platform/mingw.h>", public ] },
+ { include: ["<boost/predef/detail/platform_detected.h>", private, "<boost/predef/platform/windows_desktop.h>", public ] },
+ { include: ["<boost/predef/detail/platform_detected.h>", private, "<boost/predef/platform/windows_phone.h>", public ] },
+ { include: ["<boost/predef/detail/platform_detected.h>", private, "<boost/predef/platform/windows_runtime.h>", public ] },
+ { include: ["<boost/predef/detail/platform_detected.h>", private, "<boost/predef/platform/windows_store.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/alpha.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/arm.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/blackfin.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/convex.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/ia64.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/m68k.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/mips.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/parisc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/ppc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/pyramid.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/rs6k.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/sparc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/superh.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/sys370.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/sys390.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/x86/32.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/x86/64.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/x86.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/architecture/z.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/borland.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/clang.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/comeau.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/compaq.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/diab.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/digitalmars.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/dignus.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/edg.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/ekopath.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/gcc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/gcc_xml.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/greenhills.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/hp_acc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/iar.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/ibm.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/intel.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/kai.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/llvm.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/metaware.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/metrowerks.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/microtec.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/mpw.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/palm.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/pgi.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/sgi_mipspro.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/sunpro.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/tendra.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/visualc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/compiler/watcom.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/hardware/simd/arm.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/hardware/simd.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/hardware/simd/ppc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/hardware/simd/x86_amd.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/hardware/simd/x86.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/language/objc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/language/stdc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/language/stdcpp.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/c/gnu.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/c/uc.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/c/vms.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/c/zos.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/cxx.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/dinkumware.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/libcomo.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/modena.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/msl.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/roguewave.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/sgi.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/stdcpp3.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/stlport.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/library/std/vacpp.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/make.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/aix.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/amigaos.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/android.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/beos.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd/bsdi.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd/dragonfly.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd/free.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd/net.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/bsd/open.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/cygwin.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/haiku.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/hpux.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/ios.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/irix.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/linux.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/macos.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/os400.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/qnxnto.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/solaris.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/unix.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/vms.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/os/windows.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/other/endian.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/platform/mingw.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/platform/windows_desktop.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/platform/windows_phone.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/platform/windows_runtime.h>", public ] },
+ { include: ["<boost/predef/detail/test.h>", private, "<boost/predef/platform/windows_store.h>", public ] },
+ { include: ["<boost/preprocessor/arithmetic/detail/div_base.hpp>", private, "<boost/preprocessor/arithmetic/div.hpp>", public ] },
+ { include: ["<boost/preprocessor/arithmetic/detail/div_base.hpp>", private, "<boost/preprocessor/arithmetic/mod.hpp>", public ] },
+ { include: ["<boost/preprocessor/array/detail/get_data.hpp>", private, "<boost/preprocessor/array/push_back.hpp>", public ] },
+ { include: ["<boost/preprocessor/array/detail/get_data.hpp>", private, "<boost/preprocessor/array/push_front.hpp>", public ] },
+ { include: ["<boost/preprocessor/control/detail/dmc/while.hpp>", private, "<boost/preprocessor/control/while.hpp>", public ] },
+ { include: ["<boost/preprocessor/control/detail/edg/while.hpp>", private, "<boost/preprocessor/control/while.hpp>", public ] },
+ { include: ["<boost/preprocessor/control/detail/msvc/while.hpp>", private, "<boost/preprocessor/control/while.hpp>", public ] },
+ { include: ["<boost/preprocessor/control/detail/while.hpp>", private, "<boost/preprocessor/control/while.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/control/deduce_d.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/control/while.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/list/fold_left.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/list/fold_right.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/deduce_r.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/deduce_z.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/enum.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/enum_shifted.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/enum_trailing.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/for.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/repeat_from_to.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/repetition/repeat.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/seq/fold_left.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/preprocessor/seq/fold_right.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/parameter/name.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/preprocessor/list/adt.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/spirit/home/classic/utility/rule_parser.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/tti/has_template.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_nullary.hpp>", private, "<boost/parameter/preprocessor.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/local_function/aux_/preprocessor/traits/decl_sign_/any_bind_type.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/preprocessor/facilities/apply.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/scope_exit.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/spirit/home/classic/utility/rule_parser.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/typeof/template_encoding.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/split.hpp>", private, "<boost/parameter/aux_/preprocessor/for_each.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/split.hpp>", private, "<boost/parameter/name.hpp>", public ] },
+ { include: ["<boost/preprocessor/detail/split.hpp>", private, "<boost/preprocessor/facilities/is_empty.hpp>", public ] },
+ { include: ["<boost/preprocessor/facilities/detail/is_empty.hpp>", private, "<boost/preprocessor/facilities/is_empty_variadic.hpp>", public ] },
+ { include: ["<boost/preprocessor/list/detail/dmc/fold_left.hpp>", private, "<boost/preprocessor/list/fold_left.hpp>", public ] },
+ { include: ["<boost/preprocessor/list/detail/edg/fold_left.hpp>", private, "<boost/preprocessor/list/fold_left.hpp>", public ] },
+ { include: ["<boost/preprocessor/list/detail/edg/fold_right.hpp>", private, "<boost/preprocessor/list/fold_right.hpp>", public ] },
+ { include: ["<boost/preprocessor/list/detail/fold_left.hpp>", private, "<boost/preprocessor/list/fold_left.hpp>", public ] },
+ { include: ["<boost/preprocessor/list/detail/fold_right.hpp>", private, "<boost/preprocessor/list/fold_right.hpp>", public ] },
+ { include: ["<boost/preprocessor/punctuation/detail/is_begin_parens.hpp>", private, "<boost/preprocessor/punctuation/is_begin_parens.hpp>", public ] },
+ { include: ["<boost/preprocessor/repetition/detail/dmc/for.hpp>", private, "<boost/preprocessor/repetition/for.hpp>", public ] },
+ { include: ["<boost/preprocessor/repetition/detail/edg/for.hpp>", private, "<boost/preprocessor/repetition/for.hpp>", public ] },
+ { include: ["<boost/preprocessor/repetition/detail/for.hpp>", private, "<boost/preprocessor/repetition/for.hpp>", public ] },
+ { include: ["<boost/preprocessor/repetition/detail/msvc/for.hpp>", private, "<boost/preprocessor/repetition/for.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/binary_transform.hpp>", private, "<boost/preprocessor/seq/to_list.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/is_empty.hpp>", private, "<boost/preprocessor/seq/for_each.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/is_empty.hpp>", private, "<boost/preprocessor/seq/for_each_i.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/is_empty.hpp>", private, "<boost/preprocessor/seq/rest_n.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/split.hpp>", private, "<boost/preprocessor/seq/first_n.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/split.hpp>", private, "<boost/preprocessor/seq/rest_n.hpp>", public ] },
+ { include: ["<boost/preprocessor/seq/detail/to_list_msvc.hpp>", private, "<boost/preprocessor/seq/to_list.hpp>", public ] },
+ { include: ["<boost/preprocessor/slot/detail/def.hpp>", private, "<boost/preprocessor/slot/counter.hpp>", public ] },
+ { include: ["<boost/preprocessor/slot/detail/def.hpp>", private, "<boost/preprocessor/slot/slot.hpp>", public ] },
+ { include: ["<boost/preprocessor/tuple/detail/is_single_return.hpp>", private, "<boost/preprocessor/tuple/elem.hpp>", public ] },
+ { include: ["<boost/preprocessor/tuple/detail/is_single_return.hpp>", private, "<boost/preprocessor/tuple/rem.hpp>", public ] },
+ { include: ["<boost/process/detail/async_handler.hpp>", private, "<boost/process/async_system.hpp>", public ] },
+ { include: ["<boost/process/detail/async_handler.hpp>", private, "<boost/process/spawn.hpp>", public ] },
+ { include: ["<boost/process/detail/async_handler.hpp>", private, "<boost/process/system.hpp>", public ] },
+ { include: ["<boost/process/detail/basic_cmd.hpp>", private, "<boost/process/args.hpp>", public ] },
+ { include: ["<boost/process/detail/basic_cmd.hpp>", private, "<boost/process/exe.hpp>", public ] },
+ { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/child.hpp>", public ] },
+ { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/spawn.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/async_pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/async_system.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/child.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/environment.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/error.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/locale.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/search_path.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/shell.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/spawn.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/start_dir.hpp>", public ] },
+ { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/system.hpp>", public ] },
+ { include: ["<boost/process/detail/execute_impl.hpp>", private, "<boost/process/async_system.hpp>", public ] },
+ { include: ["<boost/process/detail/execute_impl.hpp>", private, "<boost/process/child.hpp>", public ] },
+ { include: ["<boost/process/detail/execute_impl.hpp>", private, "<boost/process/spawn.hpp>", public ] },
+ { include: ["<boost/process/detail/execute_impl.hpp>", private, "<boost/process/system.hpp>", public ] },
+ { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/handler.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/handler.hpp>", private, "<boost/process/start_dir.hpp>", public ] },
+ { include: ["<boost/process/detail/on_exit.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/on_exit.hpp>", private, "<boost/process/system.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/asio_fwd.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/asio_fwd.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/async_in.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/async_out.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/async_pipe.hpp>", private, "<boost/process/async_pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/basic_pipe.hpp>", private, "<boost/process/pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/close_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/close_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/cmd.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/env_init.hpp>", private, "<boost/process/env.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/environment.hpp>", private, "<boost/process/environment.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/executor.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/fd.hpp>", private, "<boost/process/posix.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/file_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/file_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/group_handle.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/group_ref.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/error.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/posix.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/io_service_ref.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/null_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/null_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/on_exit.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/pipe_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/pipe_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/search_path.hpp>", private, "<boost/process/search_path.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/shell_path.hpp>", private, "<boost/process/shell.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/signal.hpp>", private, "<boost/process/posix.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/start_dir.hpp>", private, "<boost/process/start_dir.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/use_vfork.hpp>", private, "<boost/process/posix.hpp>", public ] },
+ { include: ["<boost/process/detail/posix/wait_group.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/error.hpp>", public ] },
+ { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/shell.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/async_in.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/async_out.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/async_pipe.hpp>", private, "<boost/process/async_pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/basic_pipe.hpp>", private, "<boost/process/pipe.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/close_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/close_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/cmd.hpp>", private, "<boost/process/cmd.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/env_init.hpp>", private, "<boost/process/env.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/environment.hpp>", private, "<boost/process/environment.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/executor.hpp>", private, "<boost/process/extend.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/file_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/file_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/group_handle.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/group_ref.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/error.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/io_service_ref.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/locale.hpp>", private, "<boost/process/locale.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/null_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/null_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/on_exit.hpp>", private, "<boost/process/async.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/pipe_in.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/pipe_out.hpp>", private, "<boost/process/io.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/search_path.hpp>", private, "<boost/process/search_path.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/shell_path.hpp>", private, "<boost/process/shell.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/show_window.hpp>", private, "<boost/process/windows.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/start_dir.hpp>", private, "<boost/process/start_dir.hpp>", public ] },
+ { include: ["<boost/process/detail/windows/wait_group.hpp>", private, "<boost/process/group.hpp>", public ] },
+ { include: ["<boost/program_options/detail/cmdline.hpp>", private, "<boost/program_options/parsers.hpp>", public ] },
+ { include: ["<boost/program_options/detail/parsers.hpp>", private, "<boost/program_options/parsers.hpp>", public ] },
+ { include: ["<boost/program_options/detail/value_semantic.hpp>", private, "<boost/program_options/value_semantic.hpp>", public ] },
+ { include: ["<boost/property_map/parallel/detail/untracked_pair.hpp>", private, "<boost/property_map/parallel/distributed_property_map.hpp>", public ] },
+ { include: ["<boost/property_map/parallel/impl/distributed_property_map.ipp>", private, "<boost/property_map/parallel/distributed_property_map.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/exception_implementation.hpp>", private, "<boost/property_tree/exceptions.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/ini_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/json_parser/error.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/info_parser_error.hpp>", private, "<boost/property_tree/info_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/info_parser_read.hpp>", private, "<boost/property_tree/info_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/info_parser_write.hpp>", private, "<boost/property_tree/info_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/info_parser_writer_settings.hpp>", private, "<boost/property_tree/info_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/ptree_implementation.hpp>", private, "<boost/property_tree/ptree.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/ini_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/ptree.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/string_path.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_error.hpp>", private, "<boost/property_tree/xml_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_flags.hpp>", private, "<boost/property_tree/xml_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private, "<boost/property_tree/xml_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_utils.hpp>", private, "<boost/graph/graphml.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_write.hpp>", private, "<boost/property_tree/xml_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/detail/xml_parser_writer_settings.hpp>", private, "<boost/property_tree/xml_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/json_parser/detail/read.hpp>", private, "<boost/property_tree/json_parser.hpp>", public ] },
+ { include: ["<boost/property_tree/json_parser/detail/write.hpp>", private, "<boost/property_tree/json_parser.hpp>", public ] },
+ { include: ["<boost/proto/context/detail/callable_eval.hpp>", private, "<boost/proto/context/callable.hpp>", public ] },
+ { include: ["<boost/proto/context/detail/default_eval.hpp>", private, "<boost/proto/context/default.hpp>", public ] },
+ { include: ["<boost/proto/context/detail/null_eval.hpp>", private, "<boost/proto/context/null.hpp>", public ] },
+ { include: ["<boost/proto/detail/and_n.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/detail/any.hpp>", private, "<boost/proto/transform/impl.hpp>", public ] },
+ { include: ["<boost/proto/detail/args.hpp>", private, "<boost/proto/args.hpp>", public ] },
+ { include: ["<boost/proto/detail/as_expr.hpp>", private, "<boost/proto/domain.hpp>", public ] },
+ { include: ["<boost/proto/detail/as_lvalue.hpp>", private, "<boost/proto/transform/call.hpp>", public ] },
+ { include: ["<boost/proto/detail/as_lvalue.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/detail/basic_expr.hpp>", private, "<boost/proto/expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/decltype.hpp>", private, "<boost/proto/context/default.hpp>", public ] },
+ { include: ["<boost/proto/detail/decltype.hpp>", private, "<boost/proto/transform/default.hpp>", public ] },
+ { include: ["<boost/proto/detail/deduce_domain.hpp>", private, "<boost/proto/domain.hpp>", public ] },
+ { include: ["<boost/proto/detail/deep_copy.hpp>", private, "<boost/proto/deep_copy.hpp>", public ] },
+ { include: ["<boost/proto/detail/deprecated.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/expr.hpp>", private, "<boost/proto/expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/extends_funop_const.hpp>", private, "<boost/proto/extends.hpp>", public ] },
+ { include: ["<boost/proto/detail/extends_funop.hpp>", private, "<boost/proto/extends.hpp>", public ] },
+ { include: ["<boost/proto/detail/funop.hpp>", private, "<boost/proto/expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/generate_by_value.hpp>", private, "<boost/proto/generate.hpp>", public ] },
+ { include: ["<boost/proto/detail/ignore_unused.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/detail/ignore_unused.hpp>", private, "<boost/proto/transform/pass_through.hpp>", public ] },
+ { include: ["<boost/proto/detail/is_noncopyable.hpp>", private, "<boost/proto/args.hpp>", public ] },
+ { include: ["<boost/proto/detail/is_noncopyable.hpp>", private, "<boost/proto/transform/env.hpp>", public ] },
+ { include: ["<boost/proto/detail/lambda_matches.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/detail/make_expr_funop.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/make_expr_.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/make_expr.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/matches_.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/detail/or_n.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/detail/poly_function.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/poly_function.hpp>", private, "<boost/proto/transform/call.hpp>", public ] },
+ { include: ["<boost/proto/detail/poly_function.hpp>", private, "<boost/proto/transform/env.hpp>", public ] },
+ { include: ["<boost/proto/detail/remove_typename.hpp>", private, "<boost/proto/extends.hpp>", public ] },
+ { include: ["<boost/proto/detail/static_const.hpp>", private, "<boost/proto/transform/impl.hpp>", public ] },
+ { include: ["<boost/proto/detail/template_arity.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/detail/template_arity.hpp>", private, "<boost/proto/traits.hpp>", public ] },
+ { include: ["<boost/proto/detail/template_arity.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/detail/traits.hpp>", private, "<boost/proto/traits.hpp>", public ] },
+ { include: ["<boost/proto/detail/unpack_expr_.hpp>", private, "<boost/proto/make_expr.hpp>", public ] },
+ { include: ["<boost/proto/detail/vararg_matches_impl.hpp>", private, "<boost/proto/matches.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/call.hpp>", private, "<boost/proto/transform/call.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/construct_funop.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/construct_pod_funop.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/default_function_impl.hpp>", private, "<boost/proto/transform/default.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/fold_impl.hpp>", private, "<boost/proto/transform/fold.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/lazy.hpp>", private, "<boost/proto/transform/lazy.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/make.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/pack.hpp>", private, "<boost/proto/transform/call.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/pack.hpp>", private, "<boost/proto/transform/lazy.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/pack.hpp>", private, "<boost/proto/transform/make.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/pass_through_impl.hpp>", private, "<boost/proto/transform/pass_through.hpp>", public ] },
+ { include: ["<boost/proto/transform/detail/when.hpp>", private, "<boost/proto/transform/when.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/associative_ptr_container.hpp>", private, "<boost/ptr_container/ptr_map_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/associative_ptr_container.hpp>", private, "<boost/ptr_container/ptr_set_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/map_iterator.hpp>", private, "<boost/ptr_container/ptr_map_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/meta_functions.hpp>", private, "<boost/ptr_container/ptr_map_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/meta_functions.hpp>", private, "<boost/ptr_container/ptr_set_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/reversible_ptr_container.hpp>", private, "<boost/ptr_container/ptr_sequence_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_ptr_map_adapter.hpp>", private, "<boost/ptr_container/serialize_ptr_map.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_ptr_map_adapter.hpp>", private, "<boost/ptr_container/serialize_ptr_unordered_map.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_array.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_circular_buffer.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_deque.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_list.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_set.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_unordered_set.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private, "<boost/ptr_container/serialize_ptr_vector.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/void_ptr_iterator.hpp>", private, "<boost/ptr_container/ptr_sequence_adapter.hpp>", public ] },
+ { include: ["<boost/ptr_container/detail/void_ptr_iterator.hpp>", private, "<boost/ptr_container/ptr_set_adapter.hpp>", public ] },
+ { include: ["<boost/python/detail/borrowed_ptr.hpp>", private, "<boost/python/borrowed.hpp>", public ] },
+ { include: ["<boost/python/detail/caller.hpp>", private, "<boost/python/make_constructor.hpp>", public ] },
+ { include: ["<boost/python/detail/caller.hpp>", private, "<boost/python/make_function.hpp>", public ] },
+ { include: ["<boost/python/detail/caller.hpp>", private, "<boost/python/object/function_handle.hpp>", public ] },
+ { include: ["<boost/python/detail/construct.hpp>", private, "<boost/python/converter/obj_mgr_arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/convertible.hpp>", private, "<boost/python/cast.hpp>", public ] },
+ { include: ["<boost/python/detail/convertible.hpp>", private, "<boost/python/converter/arg_to_python.hpp>", public ] },
+ { include: ["<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private, "<boost/python/extract.hpp>", public ] },
+ { include: ["<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private, "<boost/python/object/forward.hpp>", public ] },
+ { include: ["<boost/python/detail/dealloc.hpp>", private, "<boost/python/opaque_pointer_converter.hpp>", public ] },
+ { include: ["<boost/python/detail/decref_guard.hpp>", private, "<boost/python/object/make_instance.hpp>", public ] },
+ { include: ["<boost/python/detail/defaults_def.hpp>", private, "<boost/python/overloads.hpp>", public ] },
+ { include: ["<boost/python/detail/def_helper_fwd.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/def_helper.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/def_helper.hpp>", private, "<boost/python/def.hpp>", public ] },
+ { include: ["<boost/python/detail/dependent.hpp>", private, "<boost/python/back_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/dependent.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/destroy.hpp>", private, "<boost/python/converter/obj_mgr_arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/destroy.hpp>", private, "<boost/python/converter/rvalue_from_python_data.hpp>", public ] },
+ { include: ["<boost/python/detail/exception_handler.hpp>", private, "<boost/python/exception_translator.hpp>", public ] },
+ { include: ["<boost/python/detail/force_instantiate.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/force_instantiate.hpp>", private, "<boost/python/object/class_metadata.hpp>", public ] },
+ { include: ["<boost/python/detail/force_instantiate.hpp>", private, "<boost/python/object/pointer_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/force_instantiate.hpp>", private, "<boost/python/object/value_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/force_instantiate.hpp>", private, "<boost/python/return_opaque_pointer.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/converter/arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/converter/arg_to_python.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/converter/object_manager.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/copy_const_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/copy_non_const_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/data_members.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/manage_new_object.hpp>", public ] },
+ { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/reference_existing_object.hpp>", public ] },
+ { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/make_keyword_range_fn.hpp>", private, "<boost/python/init.hpp>", public ] },
+ { include: ["<boost/python/detail/mpl_lambda.hpp>", private, "<boost/python/args.hpp>", public ] },
+ { include: ["<boost/python/detail/msvc_typeinfo.hpp>", private, "<boost/python/type_id.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/converter/builtin_converters.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/make_constructor.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/object/make_instance.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/opaque_pointer_converter.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/return_arg.hpp>", public ] },
+ { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/to_python_indirect.hpp>", public ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/class_fwd.hpp>", public ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/data_members.hpp>", public ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/object/class_metadata.hpp>", public ] },
+ { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/operators.hpp>", public ] },
+ { include: ["<boost/python/detail/nullary_function_adaptor.hpp>", private, "<boost/python/pure_virtual.hpp>", public ] },
+ { include: ["<boost/python/detail/operator_id.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/operator_id.hpp>", private, "<boost/python/operators.hpp>", public ] },
+ { include: ["<boost/python/detail/overloads_fwd.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/overloads_fwd.hpp>", private, "<boost/python/def.hpp>", public ] },
+ { include: ["<boost/python/detail/overloads_fwd.hpp>", private, "<boost/python/overloads.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/args_fwd.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/args.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/back_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/bases.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/base_type_traits.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/borrowed.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/call.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/call_method.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/cast.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/class_fwd.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/builtin_converters.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/obj_mgr_arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/pyobject_traits.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/pytype_function.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/pytype_object_mgr_traits.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/registrations.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/converter/to_python_function_type.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/copy_const_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/copy_non_const_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/data_members.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/default_call_policies.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/def.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/def_visitor.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/dict.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/enum.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/errors.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/exception_translator.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/extract.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/handle_fwd.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/handle.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/has_back_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/implicit.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/init.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/instance_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/iterator.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/list.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/long.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/lvalue_from_pytype.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/make_constructor.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/make_function.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/manage_new_object.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/module.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/module_init.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/numeric.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_attributes.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/class.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/function.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/function_object.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_fwd.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/instance.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_items.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/iterator.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/life_support.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/make_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/make_instance.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_operators.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object/pickle_support.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_protocol_core.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_protocol.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/object_slices.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/opaque_pointer_converter.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/operators.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/other.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/overloads.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/override.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/pointee.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/proxy.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/ptr.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/raw_function.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/refcount.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/reference_existing_object.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/return_by_value.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/return_internal_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/return_opaque_pointer.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/return_value_policy.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/scope.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/self.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/signature.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/slice.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/slice_nil.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/ssize_t.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/stl_iterator.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/str.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/tag.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/to_python_converter.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/to_python_indirect.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/to_python_value.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/tuple.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/type_id.hpp>", public ] },
+ { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/with_custodian_and_ward.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/args.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/call.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/call_method.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/object/make_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/object/pointer_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/object/value_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/signature.hpp>", public ] },
+ { include: ["<boost/python/detail/python_type.hpp>", private, "<boost/python/object/make_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/back_reference.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/converter/obj_mgr_arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/converter/pytype_object_mgr_traits.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/handle.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/raw_pyobject.hpp>", private, "<boost/python/object/iterator.hpp>", public ] },
+ { include: ["<boost/python/detail/referent_storage.hpp>", private, "<boost/python/converter/arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/referent_storage.hpp>", private, "<boost/python/converter/obj_mgr_arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/referent_storage.hpp>", private, "<boost/python/converter/rvalue_from_python_data.hpp>", public ] },
+ { include: ["<boost/python/detail/scope.hpp>", private, "<boost/python/def.hpp>", public ] },
+ { include: ["<boost/python/detail/sfinae.hpp>", private, "<boost/python/wrapper.hpp>", public ] },
+ { include: ["<boost/python/detail/signature.hpp>", private, "<boost/python/object/function_doc_signature.hpp>", public ] },
+ { include: ["<boost/python/detail/signature.hpp>", private, "<boost/python/object/py_function.hpp>", public ] },
+ { include: ["<boost/python/detail/string_literal.hpp>", private, "<boost/python/converter/arg_to_python.hpp>", public ] },
+ { include: ["<boost/python/detail/string_literal.hpp>", private, "<boost/python/object_core.hpp>", public ] },
+ { include: ["<boost/python/detail/target.hpp>", private, "<boost/python/iterator.hpp>", public ] },
+ { include: ["<boost/python/detail/translate_exception.hpp>", private, "<boost/python/exception_translator.hpp>", public ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/args.hpp>", public ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/bases.hpp>", public ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/init.hpp>", public ] },
+ { include: ["<boost/python/detail/type_list.hpp>", private, "<boost/python/signature.hpp>", public ] },
+ { include: ["<boost/python/detail/unwind_type.hpp>", private, "<boost/python/converter/pytype_function.hpp>", public ] },
+ { include: ["<boost/python/detail/unwrap_type_id.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/unwrap_wrapper.hpp>", private, "<boost/python/class.hpp>", public ] },
+ { include: ["<boost/python/detail/unwrap_wrapper.hpp>", private, "<boost/python/operators.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/data_members.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/default_call_policies.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/object/forward.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/return_arg.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/return_by_value.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/return_opaque_pointer.hpp>", public ] },
+ { include: ["<boost/python/detail/value_arg.hpp>", private, "<boost/python/to_python_value.hpp>", public ] },
+ { include: ["<boost/python/detail/value_is_shared_ptr.hpp>", private, "<boost/python/converter/arg_to_python.hpp>", public ] },
+ { include: ["<boost/python/detail/value_is_shared_ptr.hpp>", private, "<boost/python/to_python_value.hpp>", public ] },
+ { include: ["<boost/python/detail/void_ptr.hpp>", private, "<boost/python/converter/arg_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/void_ptr.hpp>", private, "<boost/python/converter/return_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/void_ptr.hpp>", private, "<boost/python/extract.hpp>", public ] },
+ { include: ["<boost/python/detail/void_ptr.hpp>", private, "<boost/python/lvalue_from_pytype.hpp>", public ] },
+ { include: ["<boost/python/detail/void_return.hpp>", private, "<boost/python/call.hpp>", public ] },
+ { include: ["<boost/python/detail/void_return.hpp>", private, "<boost/python/call_method.hpp>", public ] },
+ { include: ["<boost/python/detail/void_return.hpp>", private, "<boost/python/converter/return_from_python.hpp>", public ] },
+ { include: ["<boost/python/detail/void_return.hpp>", private, "<boost/python/extract.hpp>", public ] },
+ { include: ["<boost/python/detail/wrapper_base.hpp>", private, "<boost/python/object/pointer_holder.hpp>", public ] },
+ { include: ["<boost/python/detail/wrapper_base.hpp>", private, "<boost/python/wrapper.hpp>", public ] },
+ { include: ["<boost/python/suite/indexing/detail/indexing_suite_detail.hpp>", private, "<boost/python/suite/indexing/indexing_suite.hpp>", public ] },
+ { include: ["<boost/qvm/detail/cofactor_impl.hpp>", private, "<boost/qvm/mat_operations.hpp>", public ] },
+ { include: ["<boost/qvm/detail/determinant_impl.hpp>", private, "<boost/qvm/mat_operations.hpp>", public ] },
+ { include: ["<boost/qvm/detail/remove_const.hpp>", private, "<boost/qvm/mat_traits_array.hpp>", public ] },
+ { include: ["<boost/qvm/detail/remove_const.hpp>", private, "<boost/qvm/quat_traits_array.hpp>", public ] },
+ { include: ["<boost/qvm/detail/remove_const.hpp>", private, "<boost/qvm/vec_traits_array.hpp>", public ] },
+ { include: ["<boost/qvm/detail/swizzle_traits.hpp>", private, "<boost/qvm/gen/swizzle2.hpp>", public ] },
+ { include: ["<boost/qvm/detail/swizzle_traits.hpp>", private, "<boost/qvm/gen/swizzle3.hpp>", public ] },
+ { include: ["<boost/qvm/detail/swizzle_traits.hpp>", private, "<boost/qvm/gen/swizzle4.hpp>", public ] },
+ { include: ["<boost/qvm/detail/transp_impl.hpp>", private, "<boost/qvm/map_mat_mat.hpp>", public ] },
+ { include: ["<boost/qvm/detail/transp_impl.hpp>", private, "<boost/qvm/mat_operations.hpp>", public ] },
+ { include: ["<boost/random/detail/auto_link.hpp>", private, "<boost/random/random_device.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/additive_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/bernoulli_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/binomial_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/cauchy_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/chi_squared_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/discard_block.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/exponential_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/gamma_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/geometric_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/lagged_fibonacci.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/linear_feedback_shift.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/lognormal_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/negative_binomial_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/non_central_chi_squared_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/normal_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/piecewise_constant_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/piecewise_linear_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/poisson_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/subtract_with_carry.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/triangle_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/uniform_01.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/uniform_int_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/uniform_on_sphere.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/uniform_real_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/uniform_smallint.hpp>", public ] },
+ { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/xor_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/const_mod.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/const_mod.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/binomial_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/poisson_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/random_number_generator.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/shuffle_order.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/uniform_01.hpp>", public ] },
+ { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/variate_generator.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/binomial_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/poisson_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/random_number_generator.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/shuffle_order.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/uniform_01.hpp>", public ] },
+ { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/variate_generator.hpp>", public ] },
+ { include: ["<boost/random/detail/generator_bits.hpp>", private, "<boost/random/generate_canonical.hpp>", public ] },
+ { include: ["<boost/random/detail/generator_seed_seq.hpp>", private, "<boost/random/lagged_fibonacci.hpp>", public ] },
+ { include: ["<boost/random/detail/generator_seed_seq.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/generator_seed_seq.hpp>", private, "<boost/random/subtract_with_carry.hpp>", public ] },
+ { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/int_float_pair.hpp>", private, "<boost/random/exponential_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/int_float_pair.hpp>", private, "<boost/random/normal_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/additive_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/bernoulli_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/beta_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/cauchy_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/exponential_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/extreme_value_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/fisher_f_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/geometric_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/hyperexponential_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/lagged_fibonacci.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/laplace_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/linear_feedback_shift.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/lognormal_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/non_central_chi_squared_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/normal_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/piecewise_constant_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/piecewise_linear_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/shuffle_order.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/student_t_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/subtract_with_carry.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/triangle_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/uniform_int_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/uniform_on_sphere.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/uniform_real_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/uniform_smallint.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/weibull_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/xor_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/polynomial.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/ptr_helper.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/ptr_helper.hpp>", private, "<boost/random/uniform_01.hpp>", public ] },
+ { include: ["<boost/random/detail/ptr_helper.hpp>", private, "<boost/random/variate_generator.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/additive_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/discard_block.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/lagged_fibonacci.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/linear_feedback_shift.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/shuffle_order.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/subtract_with_carry.hpp>", public ] },
+ { include: ["<boost/random/detail/seed.hpp>", private, "<boost/random/xor_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/discard_block.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/inversive_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/linear_congruential.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/linear_feedback_shift.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/mersenne_twister.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/subtract_with_carry.hpp>", public ] },
+ { include: ["<boost/random/detail/seed_impl.hpp>", private, "<boost/random/xor_combine.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/generate_canonical.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/independent_bits.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/shuffle_order.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/uniform_int_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/uniform_real_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/uniform_smallint.hpp>", public ] },
+ { include: ["<boost/random/detail/uniform_int_float.hpp>", private, "<boost/random/uniform_int_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/vector_io.hpp>", private, "<boost/random/discrete_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/vector_io.hpp>", private, "<boost/random/hyperexponential_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/vector_io.hpp>", private, "<boost/random/piecewise_constant_distribution.hpp>", public ] },
+ { include: ["<boost/random/detail/vector_io.hpp>", private, "<boost/random/piecewise_linear_distribution.hpp>", public ] },
+ { include: ["<boost/range/detail/any_iterator.hpp>", private, "<boost/range/any_range.hpp>", public ] },
+ { include: ["<boost/range/detail/as_literal.hpp>", private, "<boost/range/as_literal.hpp>", public ] },
+ { include: ["<boost/range/detail/begin.hpp>", private, "<boost/range/begin.hpp>", public ] },
+ { include: ["<boost/range/detail/combine_cxx03.hpp>", private, "<boost/range/combine.hpp>", public ] },
+ { include: ["<boost/range/detail/combine_cxx11.hpp>", private, "<boost/range/combine.hpp>", public ] },
+ { include: ["<boost/range/detail/default_constructible_unary_fn.hpp>", private, "<boost/range/adaptor/filtered.hpp>", public ] },
+ { include: ["<boost/range/detail/default_constructible_unary_fn.hpp>", private, "<boost/range/adaptor/transformed.hpp>", public ] },
+ { include: ["<boost/range/detail/end.hpp>", private, "<boost/range/end.hpp>", public ] },
+ { include: ["<boost/range/detail/extract_optional_type.hpp>", private, "<boost/range/const_iterator.hpp>", public ] },
+ { include: ["<boost/range/detail/extract_optional_type.hpp>", private, "<boost/range/mutable_iterator.hpp>", public ] },
+ { include: ["<boost/range/detail/has_member_size.hpp>", private, "<boost/range/size.hpp>", public ] },
+ { include: ["<boost/range/detail/implementation_help.hpp>", private, "<boost/range/algorithm_ext/push_back.hpp>", public ] },
+ { include: ["<boost/range/detail/implementation_help.hpp>", private, "<boost/range/algorithm_ext/push_front.hpp>", public ] },
+ { include: ["<boost/range/detail/implementation_help.hpp>", private, "<boost/range/end.hpp>", public ] },
+ { include: ["<boost/range/detail/join_iterator.hpp>", private, "<boost/range/join.hpp>", public ] },
+ { include: ["<boost/range/detail/microsoft.hpp>", private, "<boost/range/atl.hpp>", public ] },
+ { include: ["<boost/range/detail/microsoft.hpp>", private, "<boost/range/mfc.hpp>", public ] },
+ { include: ["<boost/range/detail/misc_concept.hpp>", private, "<boost/range/concepts.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/adjacent_find.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/find_end.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/find_first_of.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/find.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/find_if.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/lower_bound.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/max_element.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/min_element.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/partition.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/remove.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/remove_if.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/reverse.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/search.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/search_n.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/stable_partition.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/unique.hpp>", public ] },
+ { include: ["<boost/range/detail/range_return.hpp>", private, "<boost/range/algorithm/upper_bound.hpp>", public ] },
+ { include: ["<boost/range/detail/safe_bool.hpp>", private, "<boost/range/iterator_range_core.hpp>", public ] },
+ { include: ["<boost/range/detail/str_types.hpp>", private, "<boost/range/as_array.hpp>", public ] },
+ { include: ["<boost/range/detail/str_types.hpp>", private, "<boost/range/as_literal.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/mpl/abs.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/ratio.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/gcd.hpp>", private, "<boost/ratio/mpl/gcd.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/gcd.hpp>", private, "<boost/ratio/ratio.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/lcm.hpp>", private, "<boost/ratio/mpl/lcm.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/lcm.hpp>", private, "<boost/ratio/ratio.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/sign.hpp>", private, "<boost/ratio/mpl/sign.hpp>", public ] },
+ { include: ["<boost/ratio/detail/mpl/sign.hpp>", private, "<boost/ratio/ratio.hpp>", public ] },
+ { include: ["<boost/ratio/detail/overflow_helpers.hpp>", private, "<boost/ratio/ratio.hpp>", public ] },
+ { include: ["<boost/ratio/detail/ratio_io.hpp>", private, "<boost/ratio/ratio_io.hpp>", public ] },
+ { include: ["<boost/serialization/detail/is_default_constructible.hpp>", private, "<boost/serialization/collections_load_imp.hpp>", public ] },
+ { include: ["<boost/serialization/detail/is_default_constructible.hpp>", private, "<boost/serialization/forward_list.hpp>", public ] },
+ { include: ["<boost/serialization/detail/is_default_constructible.hpp>", private, "<boost/serialization/optional.hpp>", public ] },
+ { include: ["<boost/serialization/detail/is_default_constructible.hpp>", private, "<boost/serialization/slist.hpp>", public ] },
+ { include: ["<boost/serialization/detail/shared_ptr_132.hpp>", private, "<boost/serialization/shared_ptr_132.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/property_tree/ptree_serialization.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/archive_input_unordered_map.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/archive_input_unordered_set.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/collections_load_imp.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/forward_list.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/map.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/optional.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/set.hpp>", public ] },
+ { include: ["<boost/serialization/detail/stack_constructor.hpp>", private, "<boost/serialization/slist.hpp>", public ] },
+ { include: ["<boost/signals2/detail/auto_buffer.hpp>", private, "<boost/signals2/connection.hpp>", public ] },
+ { include: ["<boost/signals2/detail/foreign_ptr.hpp>", private, "<boost/signals2/slot_base.hpp>", public ] },
+ { include: ["<boost/signals2/detail/lwm_nop.hpp>", private, "<boost/signals2/mutex.hpp>", public ] },
+ { include: ["<boost/signals2/detail/lwm_pthreads.hpp>", private, "<boost/signals2/mutex.hpp>", public ] },
+ { include: ["<boost/signals2/detail/lwm_win32_cs.hpp>", private, "<boost/signals2/mutex.hpp>", public ] },
+ { include: ["<boost/signals2/detail/null_output_iterator.hpp>", private, "<boost/signals2/connection.hpp>", public ] },
+ { include: ["<boost/signals2/detail/preprocessed_arg_type.hpp>", private, "<boost/signals2/preprocessed_signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/preprocessed_arg_type.hpp>", private, "<boost/signals2/preprocessed_slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/replace_slot_function.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/result_type_wrapper.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/signals_common.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/signals_common.hpp>", private, "<boost/signals2/slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/signals_common_macros.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/signals_common_macros.hpp>", private, "<boost/signals2/slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/signal_template.hpp>", private, "<boost/signals2/variadic_signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/slot_call_iterator.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/slot_groups.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/slot_template.hpp>", private, "<boost/signals2/variadic_slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/tracked_objects_visitor.hpp>", private, "<boost/signals2/slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/unique_lock.hpp>", private, "<boost/signals2/connection.hpp>", public ] },
+ { include: ["<boost/signals2/detail/unique_lock.hpp>", private, "<boost/signals2/signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/variadic_arg_type.hpp>", private, "<boost/signals2/variadic_signal.hpp>", public ] },
+ { include: ["<boost/signals2/detail/variadic_arg_type.hpp>", private, "<boost/signals2/variadic_slot.hpp>", public ] },
+ { include: ["<boost/signals2/detail/variadic_slot_invoker.hpp>", private, "<boost/signals2/variadic_signal.hpp>", public ] },
+ { include: ["<boost/signals/detail/signal_base.hpp>", private, "<boost/signals/signal_template.hpp>", public ] },
+ { include: ["<boost/signals/detail/signals_common.hpp>", private, "<boost/signals/connection.hpp>", public ] },
+ { include: ["<boost/signals/detail/signals_common.hpp>", private, "<boost/signals/slot.hpp>", public ] },
+ { include: ["<boost/signals/detail/slot_call_iterator.hpp>", private, "<boost/signals/signal_template.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/atomic_count.hpp>", private, "<boost/smart_ptr/intrusive_ref_counter.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/operator_bool.hpp>", private, "<boost/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/operator_bool.hpp>", private, "<boost/smart_ptr/scoped_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/operator_bool.hpp>", private, "<boost/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/operator_bool.hpp>", private, "<boost/smart_ptr/shared_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/operator_bool.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/shared_count.hpp>", private, "<boost/smart_ptr/shared_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/shared_count.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/shared_count.hpp>", private, "<boost/smart_ptr/weak_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_convertible.hpp>", private, "<boost/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_convertible.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_disable_deprecated.hpp>", private, "<boost/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_disable_deprecated.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_forward.hpp>", private, "<boost/smart_ptr/make_shared_object.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/spinlock_pool.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/enable_shared_from_this.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/scoped_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/shared_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/weak_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_nullptr_t.hpp>", private, "<boost/smart_ptr/intrusive_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_nullptr_t.hpp>", private, "<boost/smart_ptr/scoped_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_nullptr_t.hpp>", private, "<boost/smart_ptr/scoped_ptr.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_nullptr_t.hpp>", private, "<boost/smart_ptr/shared_array.hpp>", public ] },
+ { include: ["<boost/smart_ptr/detail/sp_nullptr_t.hpp>", private, "<boost/smart_ptr/shared_ptr.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/float_sort.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/integer_sort.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/string_sort.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/float_sort.hpp>", private, "<boost/sort/spreadsort/float_sort.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/integer_sort.hpp>", private, "<boost/sort/spreadsort/integer_sort.hpp>", public ] },
+ { include: ["<boost/sort/spreadsort/detail/string_sort.hpp>", private, "<boost/sort/spreadsort/string_sort.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/alternative.ipp>", private, "<boost/spirit/home/classic/core/composite/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/difference.ipp>", private, "<boost/spirit/home/classic/core/composite/difference.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/directives.ipp>", private, "<boost/spirit/home/classic/core/composite/directives.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/directives.ipp>", private, "<boost/spirit/home/classic/core/primitives/primitives.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/exclusive_or.ipp>", private, "<boost/spirit/home/classic/core/composite/exclusive_or.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/intersection.ipp>", private, "<boost/spirit/home/classic/core/composite/intersection.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/kleene_star.ipp>", private, "<boost/spirit/home/classic/core/composite/kleene_star.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/list.ipp>", private, "<boost/spirit/home/classic/core/composite/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/optional.ipp>", private, "<boost/spirit/home/classic/core/composite/optional.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/positive.ipp>", private, "<boost/spirit/home/classic/core/composite/positive.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/sequence.ipp>", private, "<boost/spirit/home/classic/core/composite/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/sequential_and.ipp>", private, "<boost/spirit/home/classic/core/composite/sequential_and.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/composite/impl/sequential_or.ipp>", private, "<boost/spirit/home/classic/core/composite/sequential_or.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/impl/match_attr_traits.ipp>", private, "<boost/spirit/home/classic/core/match.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/impl/match.ipp>", private, "<boost/spirit/home/classic/core/match.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/impl/parser.ipp>", private, "<boost/spirit/home/classic/core/parser.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp>", private, "<boost/spirit/home/classic/core/non_terminal/grammar.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/non_terminal/impl/rule.ipp>", private, "<boost/spirit/home/classic/core/non_terminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/non_terminal/impl/rule.ipp>", private, "<boost/spirit/home/classic/dynamic/stored_rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/non_terminal/impl/static.hpp>", private, "<boost/spirit/include/classic_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/non_terminal/impl/subrule.ipp>", private, "<boost/spirit/home/classic/core/non_terminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/primitives/impl/numerics.ipp>", private, "<boost/spirit/home/classic/core/primitives/numerics.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/primitives/impl/primitives.ipp>", private, "<boost/spirit/home/classic/core/primitives/primitives.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/primitives/impl/primitives.ipp>", private, "<boost/spirit/home/classic/core/scanner/skipper.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/core/scanner/impl/skipper.ipp>", private, "<boost/spirit/home/classic/core/scanner/skipper.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/debug/impl/parser_names.ipp>", private, "<boost/spirit/home/classic/debug/parser_names.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/dynamic/impl/conditions.ipp>", private, "<boost/spirit/home/classic/dynamic/for.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/dynamic/impl/conditions.ipp>", private, "<boost/spirit/home/classic/dynamic/if.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/dynamic/impl/conditions.ipp>", private, "<boost/spirit/home/classic/dynamic/while.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/dynamic/impl/select.ipp>", private, "<boost/spirit/home/classic/dynamic/select.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/dynamic/impl/switch.ipp>", private, "<boost/spirit/home/classic/dynamic/switch.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/error_handling/impl/exceptions.ipp>", private, "<boost/spirit/home/classic/error_handling/exceptions.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/iterator/impl/file_iterator.ipp>", private, "<boost/spirit/home/classic/iterator/file_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/iterator/impl/position_iterator.ipp>", private, "<boost/spirit/home/classic/iterator/position_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/meta/impl/fundamental.ipp>", private, "<boost/spirit/home/classic/meta/fundamental.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/meta/impl/parser_traits.ipp>", private, "<boost/spirit/home/classic/meta/parser_traits.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/meta/impl/refactoring.ipp>", private, "<boost/spirit/home/classic/meta/refactoring.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/meta/impl/traverse.ipp>", private, "<boost/spirit/home/classic/meta/traverse.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/symbols/impl/symbols.ipp>", private, "<boost/spirit/home/classic/symbols/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/tree/impl/parse_tree_utils.ipp>", private, "<boost/spirit/home/classic/tree/parse_tree_utils.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/tree/impl/tree_to_xml.ipp>", private, "<boost/spirit/home/classic/tree/tree_to_xml.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private, "<boost/spirit/home/classic/utility/chset.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private, "<boost/spirit/include/classic_basic_chset.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset.ipp>", private, "<boost/spirit/home/classic/utility/chset.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset_operators.ipp>", private, "<boost/spirit/home/classic/utility/chset_operators.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/chset/range_run.hpp>", private, "<boost/spirit/include/classic_range_run.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/confix.ipp>", private, "<boost/spirit/home/classic/utility/confix.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/escape_char.ipp>", private, "<boost/spirit/home/classic/utility/escape_char.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/lists.ipp>", private, "<boost/spirit/home/classic/utility/lists.hpp>", public ] },
+ { include: ["<boost/spirit/home/classic/utility/impl/regex.ipp>", private, "<boost/spirit/home/classic/utility/regex.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/alternative_function.hpp>", private, "<boost/spirit/home/karma/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/as.hpp>", private, "<boost/spirit/home/karma/directive/as.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/action/action.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/auxiliary/attr_cast.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/auxiliary/eol.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/auxiliary/lazy.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/as.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/buffer.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/center_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/columns.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/delimit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/duplicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/left_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/maxwidth.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/no_delimit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/omit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/right_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/directive/verbatim.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/and_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/not_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/optional.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/phoenix_attributes.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/repository/home/karma/directive/confix.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/repository/home/karma/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/default_width.hpp>", private, "<boost/spirit/home/karma/directive/center_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/default_width.hpp>", private, "<boost/spirit/home/karma/directive/columns.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/default_width.hpp>", private, "<boost/spirit/home/karma/directive/left_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/default_width.hpp>", private, "<boost/spirit/home/karma/directive/maxwidth.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/default_width.hpp>", private, "<boost/spirit/home/karma/directive/right_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/numeric/bool.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/enable_lit.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/char/char_generator.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/numeric/bool.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/extract_from.hpp>", private, "<boost/spirit/home/karma/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/fail_function.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/fail_function.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/fail_function.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/fail_function.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_auto.hpp>", private, "<boost/spirit/home/karma/auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_auto.hpp>", private, "<boost/spirit/include/karma_generate_auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate.hpp>", private, "<boost/spirit/home/karma/generate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/auxiliary/eol.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/binary/padding.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/char/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/char/char_generator.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/char/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/numeric/bool.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_casetag.hpp>", private, "<boost/spirit/home/karma/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/get_stricttag.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/indirect_iterator.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/indirect_iterator.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/indirect_iterator.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/indirect_iterator.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/indirect_iterator.hpp>", private, "<boost/spirit/home/karma/phoenix_attributes.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/as.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/buffer.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/center_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/left_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/maxwidth.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/directive/right_alignment.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/operator/and_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/operator/not_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/stream/format_manip.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/pass_container.hpp>", private, "<boost/spirit/home/karma/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/pass_container.hpp>", private, "<boost/spirit/home/karma/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/pass_container.hpp>", private, "<boost/spirit/home/karma/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/pass_container.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/string_compare.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/unused_delimiter.hpp>", private, "<boost/spirit/home/karma/delimit_out.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/unused_delimiter.hpp>", private, "<boost/spirit/home/karma/directive/delimit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/unused_delimiter.hpp>", private, "<boost/spirit/home/karma/directive/no_delimit.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/detail/unused_delimiter.hpp>", private, "<boost/spirit/home/karma/directive/verbatim.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/home/karma/nonterminal/grammar.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/home/karma/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/repository/home/karma/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/generator_binder.hpp>", private, "<boost/spirit/home/karma/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/generator_binder.hpp>", private, "<boost/spirit/repository/home/karma/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/parameterized.hpp>", private, "<boost/spirit/home/karma/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/nonterminal/detail/parameterized.hpp>", private, "<boost/spirit/repository/home/karma/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private, "<boost/spirit/home/karma/numeric/bool.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/bool_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private, "<boost/spirit/home/karma/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private, "<boost/spirit/home/karma/numeric/real_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/stream/detail/format_manip_auto.hpp>", private, "<boost/spirit/home/karma/format_auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/stream/detail/format_manip.hpp>", private, "<boost/spirit/home/karma/stream/format_manip.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/stream/detail/format_manip.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/karma/stream/detail/iterator_sink.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/lex/detail/sequence_function.hpp>", private, "<boost/spirit/home/lex/lexer/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/alternative_function.hpp>", private, "<boost/spirit/home/qi/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/lexer/lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/position_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/lexer/token_def.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/qi/plain_raw_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/qi/plain_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/qi/plain_tokenid.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/lex/qi/plain_tokenid_mask.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/auxiliary/attr.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/char/char_parser.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/directive/as.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/directive/matches.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/directive/raw.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/numeric/bool_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/numeric/numeric_utils.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/operator/optional.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/lex/qi/plain_raw_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/lex/qi/plain_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/lex/qi/plain_tokenid.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/lex/qi/plain_tokenid_mask.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/lex/qi/state_switcher.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/action/action.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/auxiliary/attr_cast.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/auxiliary/lazy.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/directive/lexeme.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/directive/skip.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/and_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/difference.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/not_predicate.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/optional.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/permutation.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/sequence_base.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/operator/sequential_or.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/directive/confix.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/directive/distinct.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/directive/kwd.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/directive/seek.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/repository/home/qi/operator/keywords.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/construct.hpp>", private, "<boost/spirit/home/lex/lexer/token_def.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/numeric/bool.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/enable_lit.hpp>", private, "<boost/spirit/home/qi/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/expect_function.hpp>", private, "<boost/spirit/home/qi/operator/expect.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/home/qi/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/home/qi/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/home/qi/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/home/qi/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/home/qi/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/fail_function.hpp>", private, "<boost/spirit/repository/home/qi/directive/kwd.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/parse_auto.hpp>", private, "<boost/spirit/home/qi/auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/parse_auto.hpp>", private, "<boost/spirit/include/qi_parse_auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/parse.hpp>", private, "<boost/spirit/home/qi/parse.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_container.hpp>", private, "<boost/spirit/home/qi/directive/repeat.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_container.hpp>", private, "<boost/spirit/home/qi/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_container.hpp>", private, "<boost/spirit/home/qi/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_container.hpp>", private, "<boost/spirit/home/qi/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_container.hpp>", private, "<boost/spirit/home/qi/operator/sequence_base.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/pass_function.hpp>", private, "<boost/spirit/home/qi/operator/sequential_or.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/permute_function.hpp>", private, "<boost/spirit/home/qi/operator/permutation.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/permute_function.hpp>", private, "<boost/spirit/repository/home/qi/operator/keywords.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/string_parse.hpp>", private, "<boost/spirit/home/qi/numeric/bool_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/string_parse.hpp>", private, "<boost/spirit/home/qi/numeric/real_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/string_parse.hpp>", private, "<boost/spirit/home/qi/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/string_parse.hpp>", private, "<boost/spirit/home/qi/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/unused_skipper.hpp>", private, "<boost/spirit/home/qi/directive/lexeme.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/unused_skipper.hpp>", private, "<boost/spirit/home/qi/directive/no_skip.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/unused_skipper.hpp>", private, "<boost/spirit/home/qi/directive/skip.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/unused_skipper.hpp>", private, "<boost/spirit/home/qi/skip_over.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/detail/unused_skipper.hpp>", private, "<boost/spirit/repository/home/qi/directive/distinct.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/home/qi/nonterminal/grammar.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/home/qi/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/fcall.hpp>", private, "<boost/spirit/repository/home/qi/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/parameterized.hpp>", private, "<boost/spirit/home/qi/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/parameterized.hpp>", private, "<boost/spirit/repository/home/qi/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/parser_binder.hpp>", private, "<boost/spirit/home/qi/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/nonterminal/detail/parser_binder.hpp>", private, "<boost/spirit/repository/home/qi/nonterminal/subrule.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/qi/numeric/numeric_utils.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private, "<boost/spirit/home/qi/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/stream/detail/iterator_source.hpp>", private, "<boost/spirit/home/qi/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/stream/detail/match_manip_auto.hpp>", private, "<boost/spirit/home/qi/match_auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/stream/detail/match_manip.hpp>", private, "<boost/spirit/home/qi/stream/match_manip.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/stream/detail/match_manip.hpp>", private, "<boost/spirit/home/qi/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/string/detail/tst.hpp>", private, "<boost/spirit/home/qi/string/tst.hpp>", public ] },
+ { include: ["<boost/spirit/home/qi/string/detail/tst.hpp>", private, "<boost/spirit/home/qi/string/tst_map.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/as_variant.hpp>", private, "<boost/spirit/home/support/attributes.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/endian.hpp>", private, "<boost/spirit/home/karma/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/endian.hpp>", private, "<boost/spirit/home/qi/binary/binary.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/char/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/numeric/real.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/karma/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/qi/char/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/qi/char/char.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/qi/string/lit.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/get_encoding.hpp>", private, "<boost/spirit/home/qi/string/symbols.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/auto/auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/qi/auto/auto.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/qi/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/support/attributes.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/karma/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/karma/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/karma/stream/stream.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/qi/numeric/int.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/qi/numeric/uint.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/support/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/support/lazy.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/is_spirit_tag.hpp>", private, "<boost/spirit/home/support/terminal.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/char_traits.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/char_traits.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator_tokenizer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/consts.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/consts.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator_tokenizer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/consts.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/consts.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/position_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/consts.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/debug.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/debug.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/debug.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/static_lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/generator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/generator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/generator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/position_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/generator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/static_functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/generator.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/lexer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/position_token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/static_functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/rules.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/token.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/size_t.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/size_t.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator_tokenizer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/state_machine.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/state_machine.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/generate_static.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/state_machine.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator_tokenizer.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/lexer/state_machine.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/static_functor_data.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/make_cons.hpp>", private, "<boost/spirit/home/support/make_component.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/make_cons.hpp>", private, "<boost/spirit/home/support/meta_compiler.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/make_vector.hpp>", private, "<boost/spirit/home/support/terminal.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/karma/delimit_flag.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/lex/lexer/pass_flags.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/lex/lexer/support_functions.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/qi/skip_flag.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/support/multi_pass_wrapper.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/karma/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/karma/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/qi/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/qi/operator/permutation.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/qi/operator/sequence_base.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/home/qi/operator/sequential_or.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/detail/what_function.hpp>", private, "<boost/spirit/repository/home/qi/operator/keywords.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/combine_policies.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/combine_policies.hpp>", private, "<boost/spirit/home/support/iterators/look_ahead.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/combine_policies.hpp>", private, "<boost/spirit/home/support/iterators/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/combine_policies.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/first_owner_policy.hpp>", private, "<boost/spirit/home/support/iterators/look_ahead.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/first_owner_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private, "<boost/spirit/home/support/iterators/look_ahead.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/functor_input_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private, "<boost/spirit/home/support/iterators/look_ahead.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/istream_policy.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/istream_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/lex_input_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private, "<boost/spirit/home/support/iterators/look_ahead.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/split_functor_input_policy.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/split_functor_input_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp>", private, "<boost/spirit/home/lex/lexer/lexertl/iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp>", private, "<boost/spirit/home/support/iterators/istream_iterator.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp>", private, "<boost/spirit/home/support/multi_pass.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/utree/detail/utree_detail1.hpp>", private, "<boost/spirit/home/support/utree/utree.hpp>", public ] },
+ { include: ["<boost/spirit/home/support/utree/detail/utree_detail2.hpp>", private, "<boost/spirit/home/support/utree.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/char/detail/cast_char.hpp>", private, "<boost/spirit/home/x3/char/char_class.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/char/detail/cast_char.hpp>", private, "<boost/spirit/home/x3/char/char_set.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/char/detail/cast_char.hpp>", private, "<boost/spirit/home/x3/char/unicode.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/core/proxy.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/directive/expect.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/kleene.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/list.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/optional.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/plus.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/nonterminal/detail/rule.hpp>", private, "<boost/spirit/home/x3/nonterminal/rule.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/nonterminal/detail/transform_attribute.hpp>", private, "<boost/spirit/home/x3/core/action.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/operator/detail/alternative.hpp>", private, "<boost/spirit/home/x3/operator/alternative.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/operator/detail/sequence.hpp>", private, "<boost/spirit/home/x3/operator/sequence.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/no_case_string_parse.hpp>", private, "<boost/spirit/home/x3/string/literal_string.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/string_parse.hpp>", private, "<boost/spirit/home/x3/numeric/bool_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/string_parse.hpp>", private, "<boost/spirit/home/x3/numeric/real_policies.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/string_parse.hpp>", private, "<boost/spirit/home/x3/string/literal_string.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/tst.hpp>", private, "<boost/spirit/home/x3/string/tst.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/string/detail/tst.hpp>", private, "<boost/spirit/home/x3/string/tst_map.hpp>", public ] },
+ { include: ["<boost/spirit/home/x3/support/numeric_utils/detail/extract_int.hpp>", private, "<boost/spirit/home/x3/support/numeric_utils/extract_int.hpp>", public ] },
+ { include: ["<boost/spirit/repository/home/qi/operator/detail/keywords.hpp>", private, "<boost/spirit/repository/home/qi/operator/keywords.hpp>", public ] },
+ { include: ["<boost/statechart/detail/avoid_unused_warning.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/statechart/detail/constructor.hpp>", private, "<boost/statechart/simple_state.hpp>", public ] },
+ { include: ["<boost/statechart/detail/constructor.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/statechart/detail/counted_base.hpp>", private, "<boost/statechart/event_base.hpp>", public ] },
+ { include: ["<boost/statechart/detail/leaf_state.hpp>", private, "<boost/statechart/simple_state.hpp>", public ] },
+ { include: ["<boost/statechart/detail/leaf_state.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/statechart/detail/memory.hpp>", private, "<boost/statechart/event.hpp>", public ] },
+ { include: ["<boost/statechart/detail/memory.hpp>", private, "<boost/statechart/simple_state.hpp>", public ] },
+ { include: ["<boost/statechart/detail/node_state.hpp>", private, "<boost/statechart/simple_state.hpp>", public ] },
+ { include: ["<boost/statechart/detail/node_state.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/statechart/detail/reaction_dispatcher.hpp>", private, "<boost/statechart/in_state_reaction.hpp>", public ] },
+ { include: ["<boost/statechart/detail/reaction_dispatcher.hpp>", private, "<boost/statechart/transition.hpp>", public ] },
+ { include: ["<boost/statechart/detail/rtti_policy.hpp>", private, "<boost/statechart/event_base.hpp>", public ] },
+ { include: ["<boost/statechart/detail/rtti_policy.hpp>", private, "<boost/statechart/event.hpp>", public ] },
+ { include: ["<boost/statechart/detail/rtti_policy.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/statechart/detail/state_base.hpp>", private, "<boost/statechart/state_machine.hpp>", public ] },
+ { include: ["<boost/system/detail/error_code.ipp>", private, "<boost/system/error_code.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/data/config.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/debug.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/prg_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/auto_registration.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/decorator.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/global_fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/observer.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/test_case_counter.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/test_case_template.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/test_unit.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/traverse.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tree/visitor.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/basic_cstring/bcs_char_traits.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/class_properties.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/foreach.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/lazy_ostream.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/runtime/fwd.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/setcolor.hpp>", public ] },
+ { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/utils/wrap_stringstream.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/for_each_sample.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/index_sequence.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/array.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/collection.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/fwd.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/generate.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/keywords.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/random.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/xrange.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/grid.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/initializer_list.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/join.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/sample_merge.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/singleton.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/monomorphic/zip.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/size.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/data/test_case.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/debug.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/framework.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/minimal.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/output/compiler_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/output/junit_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/output/plain_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/output/xml_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/output/xml_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/parameterized_test.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/progress_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/results_collector.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/results_reporter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/assertion.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/assertion_result.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/collection_comparison_op.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/context.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/cstring_comparison_op.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/floating_point_comparison.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/fpc_op.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/fpc_tolerance.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/interface.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/old/impl.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/old/interface.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/output_test_stream.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/auto_registration.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/decorator.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/global_fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/observer.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/test_case_counter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/test_case_template.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/test_unit.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/traverse.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tree/visitor.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/unit_test_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/unit_test_log.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/unit_test_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/unit_test_parameters.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/unit_test_suite.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/algorithm.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/basic_cstring/basic_cstring.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/basic_cstring/bcs_char_traits.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/basic_cstring/compare.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/basic_cstring/io.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/class_properties.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/custom_manip.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/foreach.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/iterator/input_iterator_facade.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/iterator/token_iterator.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/lazy_ostream.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/named_params.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/nullstream.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/argument_factory.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/argument.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/cla/argv_traverser.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/cla/parser.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/env/fetch.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/errors.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/finalize.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/modifier.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/runtime/parameter.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/setcolor.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/string_cast.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/trivial_singleton.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/wrap_stringstream.hpp>", public ] },
+ { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/utils/xml_printer.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/framework.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/results_collector.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/results_reporter.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/tree/observer.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/tree/test_case_template.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/tree/test_unit.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/unit_test_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/unit_test_log.hpp>", public ] },
+ { include: ["<boost/test/detail/fwd_decl.hpp>", private, "<boost/test/unit_test_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/framework.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/minimal.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/output/compiler_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/output/junit_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/output/plain_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/output/xml_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/output/xml_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/results_collector.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/results_reporter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tools/floating_point_comparison.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tools/output_test_stream.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tree/decorator.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tree/global_fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tree/observer.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tree/test_case_template.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tree/test_unit.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/unit_test_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/unit_test_log.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/unit_test_parameters.hpp>", public ] },
+ { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/utils/runtime/cla/parser.hpp>", public ] },
+ { include: ["<boost/test/detail/log_level.hpp>", private, "<boost/test/unit_test_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/log_level.hpp>", private, "<boost/test/unit_test_log.hpp>", public ] },
+ { include: ["<boost/test/detail/pp_variadic.hpp>", private, "<boost/test/tools/interface.hpp>", public ] },
+ { include: ["<boost/test/detail/pp_variadic.hpp>", private, "<boost/test/unit_test_suite.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/for_each_sample.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/index_sequence.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/array.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/collection.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/fwd.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/generate.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/keywords.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/random.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/generators/xrange.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/grid.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/initializer_list.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/join.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/sample_merge.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/singleton.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/monomorphic/zip.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/size.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/data/test_case.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/debug.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/framework.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/minimal.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/output/compiler_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/output/junit_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/output/plain_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/output/xml_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/output/xml_report_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/parameterized_test.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/progress_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/results_collector.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/results_reporter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/assertion.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/assertion_result.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/collection_comparison_op.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/context.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/cstring_comparison_op.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/floating_point_comparison.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/fpc_op.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/fpc_tolerance.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/interface.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/old/impl.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/old/interface.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/output_test_stream.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/auto_registration.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/decorator.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/global_fixture.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/observer.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/test_case_counter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/test_case_template.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/test_unit.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/traverse.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tree/visitor.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/unit_test_log_formatter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/unit_test_log.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/unit_test_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/unit_test_parameters.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/unit_test_suite.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/algorithm.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/basic_cstring/basic_cstring.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/basic_cstring/bcs_char_traits.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/basic_cstring/compare.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/basic_cstring/io.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/class_properties.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/custom_manip.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/foreach.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/iterator/input_iterator_facade.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/iterator/token_iterator.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/lazy_ostream.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/named_params.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/nullstream.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/argument_factory.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/argument.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/cla/argv_traverser.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/cla/parser.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/env/fetch.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/errors.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/finalize.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/modifier.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/runtime/parameter.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/setcolor.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/string_cast.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/trivial_singleton.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/wrap_stringstream.hpp>", public ] },
+ { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/utils/xml_printer.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/data/config.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/framework.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/utils/named_params.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/utils/runtime/argument.hpp>", public ] },
+ { include: ["<boost/test/detail/throw_exception.hpp>", private, "<boost/test/utils/runtime/cla/parser.hpp>", public ] },
+ { include: ["<boost/test/impl/compiler_log_formatter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/compiler_log_formatter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/cpp_main.ipp>", private, "<boost/test/included/prg_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/debug.ipp>", private, "<boost/test/included/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/debug.ipp>", private, "<boost/test/included/prg_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/debug.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/debug.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/debug.ipp>", private, "<boost/test/minimal.hpp>", public ] },
+ { include: ["<boost/test/impl/decorator.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/decorator.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/execution_monitor.ipp>", private, "<boost/test/included/execution_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/execution_monitor.ipp>", private, "<boost/test/included/prg_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/execution_monitor.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/execution_monitor.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/execution_monitor.ipp>", private, "<boost/test/minimal.hpp>", public ] },
+ { include: ["<boost/test/impl/framework.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/framework.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/junit_log_formatter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/junit_log_formatter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/plain_report_formatter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/plain_report_formatter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/progress_monitor.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/progress_monitor.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/results_collector.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/results_collector.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/results_reporter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/results_reporter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/test_main.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/test_tools.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/test_tools.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/test_tree.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/test_tree.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_log.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_log.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_main.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_main.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_monitor.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_monitor.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_parameters.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/unit_test_parameters.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/xml_log_formatter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/xml_log_formatter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/impl/xml_report_formatter.ipp>", private, "<boost/test/included/test_exec_monitor.hpp>", public ] },
+ { include: ["<boost/test/impl/xml_report_formatter.ipp>", private, "<boost/test/included/unit_test.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/bitwise_manip.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/expression_holder.hpp>", private, "<boost/test/tools/interface.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/assertion.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/old/impl.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/it_pair.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/lexicographic_manip.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/per_element_manip.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/print_helper.hpp>", private, "<boost/test/data/test_case.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/print_helper.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/print_helper.hpp>", private, "<boost/test/tools/assertion.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/print_helper.hpp>", private, "<boost/test/tools/old/impl.hpp>", public ] },
+ { include: ["<boost/test/tools/detail/tolerance_manip.hpp>", private, "<boost/test/test_tools.hpp>", public ] },
+ { include: ["<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private, "<boost/thread/concurrent_queues/sync_deque.hpp>", public ] },
+ { include: ["<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private, "<boost/thread/concurrent_queues/sync_priority_queue.hpp>", public ] },
+ { include: ["<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private, "<boost/thread/concurrent_queues/sync_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/barrier.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/caller_context.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/completion_latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/deque_adaptor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/deque_base.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/deque_views.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/queue_adaptor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/queue_base.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/queue_op_status.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/queue_views.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/sync_bounded_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/sync_deque.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/sync_priority_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/sync_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/sync_timed_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/condition.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/exceptions.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/basic_thread_pool.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/executor_adaptor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/generic_executor_ref.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/inline_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/loop_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/scheduler.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/serial_executor_cont.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/serial_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/thread_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/executors/work.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/experimental/parallel/v1/exception_list.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/experimental/parallel/v2/task_region.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/externally_locked.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/externally_locked_stream.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/future_error_code.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/future_error.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/future_status.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/launch.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/wait_for_all.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/futures/wait_for_any.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/is_locked_by_this_thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/lockable_traits.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/lock_algorithms.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/lock_traits.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/lock_types.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/null_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/ostream_buffer.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/pthread/mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/pthread/once_atomic.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/pthread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/pthread/thread_data.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/pthread/timespec.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/reverse_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/scoped_thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/shared_lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/shared_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/strict_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/synchronized_value.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/testable_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/thread_functors.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/tss.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/user_scheduler.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/v2/shared_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/v2/thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/win32/interlocked_read.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/win32/thread_data.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/win32/thread_heap_alloc.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/win32/thread_primitives.hpp>", public ] },
+ { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/xtime.hpp>", public ] },
+ { include: ["<boost/thread/detail/counter.hpp>", private, "<boost/thread/completion_latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/counter.hpp>", private, "<boost/thread/latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/barrier.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/completion_latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/basic_thread_pool.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/generic_executor_ref.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/inline_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/loop_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/serial_executor_cont.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/serial_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/executors/thread_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/externally_locked_stream.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/latch.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/lockable_adapter.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/null_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/ostream_buffer.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/poly_lockable.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/condition_variable_fwd.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/condition_variable.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/shared_mutex_assert.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/pthread/shared_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/reverse_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/scoped_thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/shared_lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/strict_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/thread_functors.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/thread_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/user_scheduler.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/win32/mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/win32/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/win32/shared_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/pthread/once_atomic.hpp>", public ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/pthread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/win32/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/invoker.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/is_convertible.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/lockable_wrapper.hpp>", private, "<boost/thread/lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/lockable_wrapper.hpp>", private, "<boost/thread/strict_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/memory.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/deque_adaptor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/deque_base.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/deque_views.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/queue_adaptor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/queue_base.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/queue_op_status.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/queue_views.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/sync_bounded_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/sync_deque.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/sync_priority_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/sync_queue.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/exceptional_ptr.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/basic_thread_pool.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/generic_executor_ref.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/inline_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/loop_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/serial_executor_cont.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/serial_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/executors/thread_executor.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/experimental/parallel/v2/task_region.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/externally_locked_stream.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/future.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/futures/wait_for_any.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/lock_concepts.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/lock_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/lock_types.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/pthread/once_atomic.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/pthread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/reverse_lock.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/scoped_thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/synchronized_value.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/thread_functors.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/thread_guard.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/user_scheduler.hpp>", public ] },
+ { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/win32/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/nullary_function.hpp>", private, "<boost/thread/barrier.hpp>", public ] },
+ { include: ["<boost/thread/detail/nullary_function.hpp>", private, "<boost/thread/executors/work.hpp>", public ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/condition_variable.hpp>", public ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/once.hpp>", public ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/recursive_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/thread_only.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread_group.hpp>", private, "<boost/thread/thread.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread_heap_alloc.hpp>", private, "<boost/thread/tss.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread.hpp>", private, "<boost/thread/thread_only.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread_interruption.hpp>", private, "<boost/thread/pthread/shared_mutex_assert.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread_interruption.hpp>", private, "<boost/thread/pthread/shared_mutex.hpp>", public ] },
+ { include: ["<boost/thread/detail/thread_interruption.hpp>", private, "<boost/thread/thread_only.hpp>", public ] },
+ { include: ["<boost/thread/executors/detail/scheduled_executor_base.hpp>", private, "<boost/thread/executors/scheduled_thread_pool.hpp>", public ] },
+ { include: ["<boost/thread/executors/detail/scheduled_executor_base.hpp>", private, "<boost/thread/executors/scheduler.hpp>", public ] },
+ { include: ["<boost/thread/executors/detail/scheduled_executor_base.hpp>", private, "<boost/thread/executors/scheduling_adaptor.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/array.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/cmath.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/complex.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/functional.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/memory.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/random.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/regex.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/algorithm>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/array>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/bitset>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/cmath>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/complex>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/deque>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/exception>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/fstream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/functional>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/iomanip>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/ios>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/iostream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/istream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/iterator>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/limits>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/list>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/locale>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/map>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/memory>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/new>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/numeric>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/ostream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/queue>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/random>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/regex>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/set>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/sstream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/stack>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/stdexcept>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/streambuf>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/string>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/strstream>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/tuple>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/typeinfo>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/type_traits>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/unordered_map>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/unordered_set>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/utility>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/valarray>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tr1/vector>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/tuple.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/type_traits.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/unordered_map.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/unordered_set.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config_all.hpp>", private, "<boost/tr1/utility.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/array.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/cmath.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/complex.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/functional.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/memory.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/random.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/regex.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/tuple.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/type_traits.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/unordered_map.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/unordered_set.hpp>", public ] },
+ { include: ["<boost/tr1/detail/config.hpp>", private, "<boost/tr1/utility.hpp>", public ] },
+ { include: ["<boost/tr1/detail/functor2iterator.hpp>", private, "<boost/tr1/random.hpp>", public ] },
+ { include: ["<boost/tr1/detail/math_overloads.hpp>", private, "<boost/tr1/complex.hpp>", public ] },
+ { include: ["<boost/tti/detail/ddata.hpp>", private, "<boost/tti/has_data.hpp>", public ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/has_member_data.hpp>", public ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/has_member_function.hpp>", public ] },
+ { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/has_type.hpp>", public ] },
+ { include: ["<boost/tti/detail/dfunction.hpp>", private, "<boost/tti/has_function.hpp>", public ] },
+ { include: ["<boost/tti/detail/dmem_data.hpp>", private, "<boost/tti/has_member_data.hpp>", public ] },
+ { include: ["<boost/tti/detail/dmem_fun.hpp>", private, "<boost/tti/has_member_function.hpp>", public ] },
+ { include: ["<boost/tti/detail/dmem_type.hpp>", private, "<boost/tti/member_type.hpp>", public ] },
+ { include: ["<boost/tti/detail/dnotype.hpp>", private, "<boost/tti/member_type.hpp>", public ] },
+ { include: ["<boost/tti/detail/dstatic_mem_data.hpp>", private, "<boost/tti/has_static_member_data.hpp>", public ] },
+ { include: ["<boost/tti/detail/dstatic_mem_fun.hpp>", private, "<boost/tti/has_static_member_function.hpp>", public ] },
+ { include: ["<boost/tti/detail/dtemplate.hpp>", private, "<boost/tti/has_template.hpp>", public ] },
+ { include: ["<boost/tti/detail/dtemplate_params.hpp>", private, "<boost/tti/has_template.hpp>", public ] },
+ { include: ["<boost/tti/detail/dtype.hpp>", private, "<boost/tti/has_type.hpp>", public ] },
+ { include: ["<boost/tti/detail/dvm_template_params.hpp>", private, "<boost/tti/has_template.hpp>", public ] },
+ { include: ["<boost/tuple/detail/tuple_basic.hpp>", private, "<boost/tuple/tuple.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/any_cast.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/binding_of.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/call.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/check_match.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/is_empty.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/param.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/access.hpp>", private, "<boost/type_erasure/typeid_of.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/adapt_to_vtable.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/adapt_to_vtable.hpp>", private, "<boost/type_erasure/call.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/adapt_to_vtable.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/any_base.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/auto_link.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/check_call.hpp>", private, "<boost/type_erasure/call.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/check_map.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/check_map.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/const.hpp>", private, "<boost/type_erasure/free.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/const.hpp>", private, "<boost/type_erasure/member.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/const.hpp>", private, "<boost/type_erasure/operators.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/construct.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/dynamic_vtable.hpp>", private, "<boost/type_erasure/dynamic_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/extract_concept.hpp>", private, "<boost/type_erasure/call.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/extract_concept.hpp>", private, "<boost/type_erasure/check_match.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/extract_concept.hpp>", private, "<boost/type_erasure/require_match.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/deduced.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/get_signature.hpp>", private, "<boost/type_erasure/call.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/instantiate.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/instantiate.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/macro.hpp>", private, "<boost/type_erasure/free.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/macro.hpp>", private, "<boost/type_erasure/member.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/dynamic_any_cast.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/is_subconcept.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/null.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/is_subconcept.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/register_binding.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/any.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/builtin.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/constructible.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/param.hpp>", public ] },
+ { include: ["<boost/type_erasure/detail/vtable.hpp>", private, "<boost/type_erasure/binding.hpp>", public ] },
+ { include: ["<boost/type_index/detail/compile_time_type_info.hpp>", private, "<boost/type_index/ctti_type_index.hpp>", public ] },
+ { include: ["<boost/type_index/detail/ctti_register_class.hpp>", private, "<boost/type_index.hpp>", public ] },
+ { include: ["<boost/type_index/detail/stl_register_class.hpp>", private, "<boost/type_index.hpp>", public ] },
+ { include: ["<boost/type_index/runtime_cast/detail/runtime_cast_impl.hpp>", private, "<boost/type_index/runtime_cast/boost_shared_ptr_cast.hpp>", public ] },
+ { include: ["<boost/type_index/runtime_cast/detail/runtime_cast_impl.hpp>", private, "<boost/type_index/runtime_cast/pointer_cast.hpp>", public ] },
+ { include: ["<boost/type_index/runtime_cast/detail/runtime_cast_impl.hpp>", private, "<boost/type_index/runtime_cast/reference_cast.hpp>", public ] },
+ { include: ["<boost/type_index/runtime_cast/detail/runtime_cast_impl.hpp>", private, "<boost/type_index/runtime_cast/std_shared_ptr_cast.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/common_type_impl.hpp>", private, "<boost/type_traits/common_type.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/add_const.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/has_trivial_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/intrinsics.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_class.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_convertible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_empty.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_enum.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_function.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_member_function_pointer.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/is_pod.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_and_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_and.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_or_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_or.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_xor_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_bit_xor.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_divides_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_divides.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_equal_to.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_greater_equal.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_greater.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_left_shift_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_left_shift.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_less_equal.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_less.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_logical_and.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_logical_or.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_minus_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_minus.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_modulus_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_modulus.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_multiplies_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_multiplies.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_not_equal_to.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_plus_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_plus.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_right_shift_assign.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_binary_operator.hpp>", private, "<boost/type_traits/has_right_shift.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_postfix_operator.hpp>", private, "<boost/type_traits/has_post_decrement.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_postfix_operator.hpp>", private, "<boost/type_traits/has_post_increment.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_complement.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_dereference.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_logical_not.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_negate.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_pre_decrement.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_pre_increment.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_unary_minus.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/has_prefix_operator.hpp>", private, "<boost/type_traits/has_unary_plus.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/ice_and.hpp>", private, "<boost/type_traits/ice.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/ice_eq.hpp>", private, "<boost/type_traits/ice.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/ice_not.hpp>", private, "<boost/type_traits/ice.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/ice_or.hpp>", private, "<boost/type_traits/ice.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/is_function_ptr_helper.hpp>", private, "<boost/type_traits/is_function.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/is_function_ptr_tester.hpp>", private, "<boost/type_traits/is_function.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/is_mem_fun_pointer_impl.hpp>", private, "<boost/type_traits/is_member_function_pointer.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private, "<boost/type_traits/is_member_function_pointer.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/mp_defer.hpp>", private, "<boost/type_traits/common_type.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/assign/list_of.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/assign/ptr_list_of.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/ptr_container/nullable.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/has_new_operator.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/ice.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_abstract.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_assignable.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_class.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_constructible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_convertible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_copy_assignable.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_copy_constructible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_default_constructible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_destructible.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_function.hpp>", public ] },
+ { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/is_member_function_pointer.hpp>", public ] },
+ { include: ["<boost/units/detail/absolute_impl.hpp>", private, "<boost/units/absolute.hpp>", public ] },
+ { include: ["<boost/units/detail/cmath_impl.hpp>", private, "<boost/units/cmath.hpp>", public ] },
+ { include: ["<boost/units/detail/conversion_impl.hpp>", private, "<boost/units/conversion.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_impl.hpp>", private, "<boost/units/dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/dimensionless_unit.hpp>", private, "<boost/units/cmath.hpp>", public ] },
+ { include: ["<boost/units/detail/dimensionless_unit.hpp>", private, "<boost/units/lambda.hpp>", public ] },
+ { include: ["<boost/units/detail/dimensionless_unit.hpp>", private, "<boost/units/quantity.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/base_dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/base_unit.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/derived_dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/make_system.hpp>", public ] },
+ { include: ["<boost/units/detail/dim_impl.hpp>", private, "<boost/units/dim.hpp>", public ] },
+ { include: ["<boost/units/detail/linear_algebra.hpp>", private, "<boost/units/heterogeneous_system.hpp>", public ] },
+ { include: ["<boost/units/detail/linear_algebra.hpp>", private, "<boost/units/homogeneous_system.hpp>", public ] },
+ { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/scale.hpp>", public ] },
+ { include: ["<boost/units/detail/ordinal.hpp>", private, "<boost/units/base_dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/ordinal.hpp>", private, "<boost/units/base_unit.hpp>", public ] },
+ { include: ["<boost/units/detail/prevent_redefinition.hpp>", private, "<boost/units/base_dimension.hpp>", public ] },
+ { include: ["<boost/units/detail/prevent_redefinition.hpp>", private, "<boost/units/base_unit.hpp>", public ] },
+ { include: ["<boost/units/detail/push_front_if.hpp>", private, "<boost/units/heterogeneous_system.hpp>", public ] },
+ { include: ["<boost/units/detail/push_front_or_add.hpp>", private, "<boost/units/heterogeneous_system.hpp>", public ] },
+ { include: ["<boost/units/detail/sort.hpp>", private, "<boost/units/make_system.hpp>", public ] },
+ { include: ["<boost/units/detail/static_rational_power.hpp>", private, "<boost/units/pow.hpp>", public ] },
+ { include: ["<boost/units/detail/static_rational_power.hpp>", private, "<boost/units/scale.hpp>", public ] },
+ { include: ["<boost/units/detail/unscale.hpp>", private, "<boost/units/heterogeneous_system.hpp>", public ] },
+ { include: ["<boost/units/detail/utility.hpp>", private, "<boost/units/io.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/alpha_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/deuteron_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/electromagnetic_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/electron_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/helion_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/muon_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/neutron_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/physico-chemical_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/proton_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/tau_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/triton_constants.hpp>", public ] },
+ { include: ["<boost/units/systems/detail/constants.hpp>", private, "<boost/units/systems/si/codata/universal_constants.hpp>", public ] },
+ { include: ["<boost/unordered/detail/fwd.hpp>", private, "<boost/unordered/unordered_map_fwd.hpp>", public ] },
+ { include: ["<boost/unordered/detail/fwd.hpp>", private, "<boost/unordered/unordered_set_fwd.hpp>", public ] },
+ { include: ["<boost/unordered/detail/map.hpp>", private, "<boost/unordered/unordered_map.hpp>", public ] },
+ { include: ["<boost/unordered/detail/set.hpp>", private, "<boost/unordered/unordered_set.hpp>", public ] },
+ { include: ["<boost/utility/detail/in_place_factory_prefix.hpp>", private, "<boost/utility/in_place_factory.hpp>", public ] },
+ { include: ["<boost/utility/detail/in_place_factory_prefix.hpp>", private, "<boost/utility/typed_in_place_factory.hpp>", public ] },
+ { include: ["<boost/utility/detail/in_place_factory_suffix.hpp>", private, "<boost/utility/in_place_factory.hpp>", public ] },
+ { include: ["<boost/utility/detail/in_place_factory_suffix.hpp>", private, "<boost/utility/typed_in_place_factory.hpp>", public ] },
+ { include: ["<boost/uuid/detail/config.hpp>", private, "<boost/uuid/uuid.hpp>", public ] },
+ { include: ["<boost/uuid/detail/uuid_generic.hpp>", private, "<boost/uuid/uuid.hpp>", public ] },
+ { include: ["<boost/uuid/detail/uuid_x86.hpp>", private, "<boost/uuid/uuid.hpp>", public ] },
+ { include: ["<boost/variant/detail/apply_visitor_binary.hpp>", private, "<boost/variant/apply_visitor.hpp>", public ] },
+ { include: ["<boost/variant/detail/apply_visitor_delayed.hpp>", private, "<boost/variant/apply_visitor.hpp>", public ] },
+ { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/apply_visitor.hpp>", public ] },
+ { include: ["<boost/variant/detail/backup_holder.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/config.hpp>", private, "<boost/variant/variant_fwd.hpp>", public ] },
+ { include: ["<boost/variant/detail/config.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/element_index.hpp>", private, "<boost/variant/get.hpp>", public ] },
+ { include: ["<boost/variant/detail/enable_recursive_fwd.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/enable_recursive.hpp>", private, "<boost/variant/recursive_variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/forced_return.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/generic_result_type.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/hash_variant.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/initializer.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/make_variant_list.hpp>", private, "<boost/variant/recursive_variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/make_variant_list.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/move.hpp>", private, "<boost/variant/recursive_wrapper.hpp>", public ] },
+ { include: ["<boost/variant/detail/move.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/multivisitors_cpp11_based.hpp>", private, "<boost/variant/multivisitors.hpp>", public ] },
+ { include: ["<boost/variant/detail/multivisitors_cpp14_based.hpp>", private, "<boost/variant/multivisitors.hpp>", public ] },
+ { include: ["<boost/variant/detail/multivisitors_preprocessor_based.hpp>", private, "<boost/variant/multivisitors.hpp>", public ] },
+ { include: ["<boost/variant/detail/over_sequence.hpp>", private, "<boost/variant/recursive_variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/over_sequence.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/substitute_fwd.hpp>", private, "<boost/variant/recursive_variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/substitute_fwd.hpp>", private, "<boost/variant/variant_fwd.hpp>", public ] },
+ { include: ["<boost/variant/detail/variant_io.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/variant/detail/visitation_impl.hpp>", private, "<boost/variant/variant.hpp>", public ] },
+ { include: ["<boost/vmd/detail/assert.hpp>", private, "<boost/vmd/assert.hpp>", public ] },
+ { include: ["<boost/vmd/detail/equal.hpp>", private, "<boost/vmd/equal.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_array.hpp>", private, "<boost/vmd/is_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_empty_array.hpp>", private, "<boost/vmd/is_empty_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_empty.hpp>", private, "<boost/vmd/is_empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_empty_tuple.hpp>", private, "<boost/vmd/is_parens_empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_identifier.hpp>", private, "<boost/vmd/is_identifier.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/is_empty_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/is_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_number.hpp>", private, "<boost/vmd/is_number.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_seq.hpp>", private, "<boost/vmd/is_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_tuple.hpp>", private, "<boost/vmd/is_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/is_type.hpp>", private, "<boost/vmd/is_type.hpp>", public ] },
+ { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/elem.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_arity.hpp>", private, "<boost/vmd/is_multi.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_arity.hpp>", private, "<boost/vmd/is_unary.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/elem.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_enum.hpp>", private, "<boost/vmd/enum.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_size.hpp>", private, "<boost/vmd/size.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_to_array.hpp>", private, "<boost/vmd/to_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_to_list.hpp>", private, "<boost/vmd/to_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_to_seq.hpp>", private, "<boost/vmd/to_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_to_tuple.hpp>", private, "<boost/vmd/to_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/sequence_type.hpp>", private, "<boost/vmd/get_type.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/array/to_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/array/to_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_identifier.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_number.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/assert_is_type.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/elem.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/enum.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/equal.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/get_type.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/identity.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_empty_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_empty_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_identifier.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_multi.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_number.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_parens_empty.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_type.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/is_unary.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/list/to_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/list/to_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/not_equal.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/is_vmd_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/pop_back.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/pop_front.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/push_back.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/push_front.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/remove.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/size.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/to_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/to_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/seq/to_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/size.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/to_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/to_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/to_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/to_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/is_vmd_tuple.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/pop_back.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/pop_front.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/push_back.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/push_front.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/remove.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/size.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/to_array.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/to_list.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/tuple/to_seq.hpp>", public ] },
+ { include: ["<boost/vmd/detail/setup.hpp>", private, "<boost/vmd/vmd.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/access.hpp>", private, "<boost/xpressive/regex_iterator.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/icase.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/optimize.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/regex_domain.hpp>", private, "<boost/xpressive/basic_regex.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/regex_domain.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/basic_regex.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/results_cache.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/regex_algorithms.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/core/sub_match_vector.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/basic_regex.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/regex_algorithms.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/regex_iterator.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/sub_match.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/traits/cpp_regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/traits/null_regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/xpressive_typeof.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/dynamic/parse_charset.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/dynamic/parser_enum.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/dynamic/parser.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/dynamic/parser_traits.hpp>", private, "<boost/xpressive/regex_compiler.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/static/compile.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/static/grammar.hpp>", private, "<boost/xpressive/basic_regex.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/static/modifier.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/static/type_traits.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/regex_iterator.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/regex_actions.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/regex_primitives.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/traits/null_regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/traits/cpp_regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/never_true.hpp>", private, "<boost/xpressive/traits/null_regex_traits.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/save_restore.hpp>", private, "<boost/xpressive/regex_algorithms.hpp>", public ] },
+ { include: ["<boost/xpressive/detail/utility/sequence_stack.hpp>", private, "<boost/xpressive/match_results.hpp>", public ] },
+ { include: ["<boost/xpressive/traits/detail/c_ctype.hpp>", private, "<boost/xpressive/traits/c_regex_traits.hpp>", public ] },
+]
diff --git a/clang-6.intrinsics.imp b/clang-6.intrinsics.imp
new file mode 100644
index 0000000..a5f5254
--- /dev/null
+++ b/clang-6.intrinsics.imp
@@ -0,0 +1,59 @@
+# These mappings based on #error pragmas in the header files below in clang 6.0.0
+[
+ { include: ["<adxintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx2intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512bitalgintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512bwintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512cdintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512dqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512erintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512fintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512ifmaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512ifmavlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512pfintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmi2intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmiintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmivlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlbitalgintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlbwintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlcdintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vldqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlvbmi2intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlvnniintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vnniintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vpopcntdqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vpopcntdqvlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avxintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<bmi2intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<bmiintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<cetintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<clflushoptintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<clwbintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<clzerointrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<f16cintrin.h>", private, "<emmintrin.h>", public ] },
+ { include: ["<fma4intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<fmaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<fxsrintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<gfniintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<ia32intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<lwpintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<lzcntintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<mwaitxintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<pkuintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<rdseedintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<rtmintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<shaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<tbmintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<vaesintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<vpclmulqdqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<xopintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<xsavecintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<xsaveintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<xsaveoptintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<xsavesintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<xtestintrin.h>", private, "<immintrin.h>", public ] },
+# files that list two possible public headers
+ { include: ["<prfchwintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<prfchwintrin.h>", private, "<mm3dnow.h>", public ] },
+]
diff --git a/dist.sh b/dist.sh
deleted file mode 100755
index c4a0e1d..0000000
--- a/dist.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-##===--------- dist.sh - package up binary distribution of IWYU -----------===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file is distributed under the University of Illinois Open Source
-# License. See LICENSE.TXT for details.
-#
-##===----------------------------------------------------------------------===##
-
-set -eu
-
-# Create clean dist directory
-rm -rf dist
-mkdir dist
-
-# Assume that Release+Asserts build exists.
-ln -f ../../../../../build/Release+Asserts/bin/include-what-you-use dist/
-ln -f fix_includes.py dist/
-ln -f README.txt dist/
-ln -f LICENSE.TXT dist/
-
-pushd dist > /dev/null
-
-# Build archive name to the following pattern:
-# include-what-you-use-<ver>-<arch>-<distro>-<release>.tar.gz
-ARCHIVE=include-what-you-use-3.3-$(uname -m)-$(lsb_release -si)-$(lsb_release -sr).tar.gz
-tar -cvzf $ARCHIVE *
-
-popd > /dev/null
-
diff --git a/docs/IWYUMappings.md b/docs/IWYUMappings.md
index 9fbff07..36276a9 100644
--- a/docs/IWYUMappings.md
+++ b/docs/IWYUMappings.md
@@ -1,4 +1,4 @@
-## IWYU Mappings ##
+# IWYU Mappings #
One of the difficult problems for IWYU is distinguishing between which header contains a symbol definition and which header is the actual documented header to include for that symbol.
@@ -12,13 +12,11 @@ However, many mappings are toolchain- and version-dependent. Symbol homes and `#
Any mappings outside of the default set can therefore be specified as external *mapping files*.
-
-### Default Mappings ###
+## Default Mappings ##
IWYU's default mappings are hard-coded in `iwyu_include_picker.cc`, and are very GCC-centric. There are both symbol- and include mappings for GNU libstdc++ and libc.
-
-### Mapping Files ###
+## Mapping Files ##
The mapping files conventionally use the `.imp` file extension, for "Iwyu MaPping" (terrible, I know). They use a [JSON](http://json.org/) meta-format with the following general form:
@@ -29,9 +27,9 @@ The mapping files conventionally use the `.imp` file extension, for "Iwyu MaPpin
Directives can be one of the literal strings:
- * `include`
- * `symbol`
- * `ref`
+* `include`
+* `symbol`
+* `ref`
and data varies between the directives, see below.
@@ -39,13 +37,12 @@ Note that you can mix directives of different kinds within the same mapping file
IWYU uses LLVM's YAML/JSON parser to interpret the mapping files, and it has some idiosyncrasies:
- * Comments use a Python-style `#` prefix, not Javascript's `//`
- * Single-word strings can be left un-quoted
+* Comments use a Python-style `#` prefix, not Javascript's `//`
+* Single-word strings can be left un-quoted
If the YAML parser is ever made more rigorous, it might be wise not to lean on non-standard behavior, so apart from comment style, try to keep mapping files in line with the JSON spec.
-
-#### Include Mappings ####
+### Include Mappings ###
The `include` directive specifies a mapping between two include names (relative path, including quotes or angle brackets.)
@@ -53,10 +50,10 @@ This is typically used to map from a private implementation detail header to a p
Data for this directive is a list of four strings containing:
- * The include name to map from
- * The visibility of the include name to map from
- * The include name to map to
- * The visibility of the include name to map to
+* The include name to map from
+* The visibility of the include name to map from
+* The include name to map to
+* The visibility of the include name to map to
For example;
@@ -70,17 +67,16 @@ Include mappings support a special wildcard syntax for the first entry:
The `@` prefix is a signal that the remaining content is a regex, and can be used to re-map a whole subdirectory of private headers to a public facade header.
-
-#### Symbol Mappings ####
+### Symbol Mappings ###
The `symbol` directive maps from a qualified symbol name to its authoritative header.
Data for this directive is a list of four strings containing:
- * The symbol name to map from
- * The visibility of the symbol
- * The include name to map to
- * The visibility of the include name to map to
+* The symbol name to map from
+* The visibility of the symbol
+* The include name to map to
+* The visibility of the include name to map to
For example;
@@ -90,8 +86,7 @@ The symbol visibility is largely redundant -- it must always be `private`. It is
Unlike `include`, `symbol` directives do not support the `@`-prefixed regex syntax in the first entry. Track the [following bug](https://github.com/include-what-you-use/include-what-you-use/issues/233) for updates.
-
-#### Mapping Refs ####
+### Mapping Refs ###
The last kind of directive, `ref`, is used to pull in another mapping file, much like the C preprocessor's `#include` directive. Data for this directive is a single string: the filename to include.
@@ -102,8 +97,7 @@ For example;
The rationale for the `ref` directive was to make it easier to compose project-specific mappings from a set of library-oriented mapping files. For example, IWYU might ship with mapping files for [Boost](http://www.boost.org), the SCL, various C standard libraries, the Windows API, the [Poco Library](http://pocoproject.org), etc. Depending on what your specific project uses, you could easily create an aggregate mapping file with refs to the relevant mappings.
-
-#### Specifying Mapping Files ####
+### Specifying Mapping Files ###
Mapping files are specified on the command-line using the `--mapping_file` switch:
diff --git a/docs/IWYUPragmas.md b/docs/IWYUPragmas.md
index fba0ff6..7108af1 100644
--- a/docs/IWYUPragmas.md
+++ b/docs/IWYUPragmas.md
@@ -1,23 +1,21 @@
-## IWYU pragmas ##
+# IWYU pragmas #
IWYU pragmas are used to give IWYU information that isn't obvious from the source code, such as how different files relate to each other and which includes to never remove or include.
All pragmas start with `// IWYU pragma: ` or `/* IWYU pragma: `. They are case-sensitive and spaces are significant.
-
-### IWYU pragma: keep ###
+## IWYU pragma: keep ##
This pragma applies to a single `#include` directive or forward declaration. It forces IWYU to keep an inclusion even if it is deemed unnecessary.
main.cc:
#include <vector> // IWYU pragma: keep
-
+
class ForwardDeclaration; // IWYU pragma: keep
In this case, `std::vector` isn't used, so `<vector>` would normally be discarded, but the pragma instructs IWYU to leave it. Similarly the class `ForwardDeclaration` isn't used but is kept because of the pragma on it.
-
-### IWYU pragma: export ###
+## IWYU pragma: export ##
This pragma applies to a single `#include` directive. It says that the current file is to be considered the provider of any symbol from the included file.
@@ -36,8 +34,7 @@ Here, since `detail/constants.h` and `detail/types.h` have both been exported, I
In contrast, since `<vector>` has not been exported from `facade.h`, it will be suggested as an additional include.
-
-### IWYU pragma: begin_exports/end_exports ###
+## IWYU pragma: begin_exports/end_exports ##
This pragma applies to a set of `#include` directives. It declares that the including file is to be considered the provider of any symbol from these included files. This is the same as decorating every `#include` directive with `IWYU pragma: export`.
@@ -45,12 +42,11 @@ This pragma applies to a set of `#include` directives. It declares that the incl
// IWYU pragma: begin_exports
#include "detail/constants.h"
#include "detail/types.h"
- // IWYU pragma: end_exports
+ // IWYU pragma: end_exports
#include <vector> // don't export stuff from <vector>
-
-### IWYU pragma: private ###
+## IWYU pragma: private ##
This pragma applies to the current header file. It says that any symbol from this file will be provided by another, optionally named, file.
@@ -77,8 +73,7 @@ Using the type `Private` in `main.cc` will cause IWYU to suggest that you includ
Using the type `Private2` in `main.cc` will cause IWYU to suggest that you include `private2.h`, but will also result in a warning that there's no public header for `private2.h`.
-
-### IWYU pragma: no_include ###
+## IWYU pragma: no_include ##
This pragma applies to the current source file. It declares that the named file should not be suggested for inclusion by IWYU.
@@ -101,8 +96,7 @@ This is useful when you know a symbol definition is already available via some u
The `no_include` pragma is somewhat similar to `private`, but is employed at point of use rather than at point of declaration.
-
-### IWYU pragma: no_forward_declare ###
+## IWYU pragma: no_forward_declare ##
This pragma applies to the current source file. It says that the named symbol should not be suggested for forward-declaration by IWYU.
@@ -123,8 +117,7 @@ IWYU would normally suggest forward-declaring `Public` directly in `main.cc`, bu
This is useful when you know a symbol declaration is already available in a source file via some unrelated header and you want to preserve that implicit dependency, or when IWYU does not correctly understand that the definition is necessary.
-
-### IWYU pragma: friend ###
+## IWYU pragma: friend ##
This pragma applies to the current header file. It says that any file matching the given regular expression will be considered a friend, and is allowed to include this header even if it's private. Conceptually similar to `friend` in C++.
@@ -147,8 +140,7 @@ If the expression contains spaces, it must be enclosed in quotes.
AlsoPrivate p;
-
-### IWYU pragma: associated ###
+## IWYU pragma: associated ##
Associated headers have special significance in IWYU, they're analyzed together with their .cpp file to give an optimal result for the whole component.
@@ -169,8 +161,7 @@ You can explicitly mark an arbitrary `#include` directive as denoting the associ
You can mark multiple `#include` directives as associated and they will all be considered as such.
-
-### Which pragma should I use? ###
+## Which pragma should I use? ##
Ideally, IWYU should be smart enough to understand your intentions (and intentions of the authors of libraries you use), so the first answer should always be: none.
@@ -178,13 +169,13 @@ In practice, intentions are not so clear -- it might be ambiguous whether an `#i
IWYU pragmas have some overlap, so it can sometimes be hard to choose one over the other. Here's a guide based on how I understand them at the moment:
- * Use `IWYU pragma: keep` to force IWYU to keep any `#include` directive that would be discarded under its normal policies.
- * Use `IWYU pragma: export` to tell IWYU that one header serves as the provider for all symbols in another, included header (e.g. facade headers). Use `IWYU pragma: begin_exports/end_exports` for a whole group of included headers.
- * Use `IWYU pragma: no_include` to tell IWYU that the file in which the pragma is defined should never `#include` a specific header (the header may already be included via some other `#include`.)
- * Use `IWYU pragma: no_forward_declare` to tell IWYU that the file in which the pragma is defined should never forward-declare a specific symbol (a forward declaration may already be available via some other `#include`.)
- * Use `IWYU pragma: private` to tell IWYU that the header in which the pragma is defined is private, and should not be included directly.
- * Use `IWYU pragma: private, include "public.h"` to tell IWYU that the header in which the pragma is defined is private, and `public.h` should always be included instead.
- * Use `IWYU pragma: friend ".*favorites.*"` to override `IWYU pragma: private` selectively, so that a set of files identified by a regex can include the file even if it's private.
+* Use `IWYU pragma: keep` to force IWYU to keep any `#include` directive that would be discarded under its normal policies.
+* Use `IWYU pragma: export` to tell IWYU that one header serves as the provider for all symbols in another, included header (e.g. facade headers). Use `IWYU pragma: begin_exports/end_exports` for a whole group of included headers.
+* Use `IWYU pragma: no_include` to tell IWYU that the file in which the pragma is defined should never `#include` a specific header (the header may already be included via some other `#include`.)
+* Use `IWYU pragma: no_forward_declare` to tell IWYU that the file in which the pragma is defined should never forward-declare a specific symbol (a forward declaration may already be available via some other `#include`.)
+* Use `IWYU pragma: private` to tell IWYU that the header in which the pragma is defined is private, and should not be included directly.
+* Use `IWYU pragma: private, include "public.h"` to tell IWYU that the header in which the pragma is defined is private, and `public.h` should always be included instead.
+* Use `IWYU pragma: friend ".*favorites.*"` to override `IWYU pragma: private` selectively, so that a set of files identified by a regex can include the file even if it's private.
The pragmas come in three different classes;
diff --git a/docs/WhatIsAUse.md b/docs/WhatIsAUse.md
index df86d5d..ca383ee 100644
--- a/docs/WhatIsAUse.md
+++ b/docs/WhatIsAUse.md
@@ -1,4 +1,4 @@
-## What Is a Use? ##
+# What Is a Use? #
(*Disclaimer:* the information here is accurate as of 12 May 2011, when it was written. Specifics of IWYU's policy, and even philosophy, may have changed since then. We'll try to remember to update this file as that happens, but may occasionally forget. The further we are from May 2011, the more you should take the below with a grain of salt.)
@@ -21,8 +21,7 @@ Does `bar.cc` "use" `std::ostream`, such that it should `#include <ostream>`? Y
But IWYU doesn't (at least, modulo bugs). This is because of its attempt to analyze "author intent".
-
-### Author Intent ###
+## Author Intent ##
If code has `typedef Foo MyTypedef`, and you write `MyTypedef var;`, you are using `MyTypedef`, but are you also using `Foo`? The answer depends on the _intent_ of the person who wrote the typedef.
@@ -47,8 +46,7 @@ Another case where author intent turns up is in function return types. Consider
If you write `GetSingletonObject()->methodOnFoo()`, are you "using" `Foo::methodOnFoo`, such that you should `#include "foo.h"`? Or are you supposed to be able to operate on the results of `GetSingletonObject` without needing to include the definition of the returned type? The answer is: it depends on the author intent. Sometimes the author is willing to provide the definition of the return type, sometimes it is not.
-
-#### Re-Exporting ####
+### Re-Exporting ###
When the author of a file is providing a definition of a symbol from somewhere else, we say that the file is "re-exporting" that symbol. In the first `OutputEmitter` example, we say that `foo.h` is re-exporting `ostream`. As a result, people who `#include "foo.h"` get a definition of `ostream` along for free, even if they don't directly `#include <ostream>` themselves. Another way of thinking about it is: if file A re-exports symbol B, we can pretend that A defines B, even if it doesn't.
@@ -56,8 +54,7 @@ When the author of a file is providing a definition of a symbol from somewhere e
A more accurate include-what-you-use rule is this: "If you use a symbol, you must either `#include` the definition of the symbol, or `#include` a file that re-exports the symbol."
-
-### Manual re-export identifiers ###
+## Manual re-export identifiers ##
You can mark that one file is re-exporting symbols from another via an IWYU pragma in your source code:
@@ -67,13 +64,11 @@ This tells IWYU that if some other file uses symbols defined in `private.h`, the
The full list of IWYU pragmas is defined in [IWYUPragmas.md](IWYUPragmas.md).
-
-### Automatic re-export ###
+## Automatic re-export ##
In certain situations, IWYU will decide that one file is exporting a symbol from another even without the use of a pragma. These are places where the author intent is usually to re-export, such as with the `typedef` example above. In each of these cases, a simple technique can be used to override IWYU's decision to re-export.
-
-#### Automatic re-export: typedefs ####
+### Automatic re-export: typedefs ###
If you write
@@ -81,9 +76,9 @@ If you write
IWYU has to decide whether your file should re-export `Foo` or not. Here is how it gauges author intent:
- * If you (the typedef author), directly `#include` the definition of the underlying type, then IWYU assumes you mean to re-export it.
- * If you (the typedef author), explicitly provide a forward-declare of the underlying type, but do not directly `#include` its definition, then IWYU assumes you do not mean to re-export it.
- * Otherwise, IWYU assumes you do not mean to re-export it.
+* If you (the typedef author), directly `#include` the definition of the underlying type, then IWYU assumes you mean to re-export it.
+* If you (the typedef author), explicitly provide a forward-declare of the underlying type, but do not directly `#include` its definition, then IWYU assumes you do not mean to re-export it.
+* Otherwise, IWYU assumes you do not mean to re-export it.
For example:
@@ -100,8 +95,7 @@ If IWYU says you intend to re-export the underlying type, then nobody who uses y
IWYU supports this in its analysis. If you are using `Typedef1` in your code and `#include "foo.h"` anyway, IWYU will suggest you remove it, since you are getting the definition of `Foo` via the typedef.
-
-#### Automatic re-export: Function return values ####
+### Automatic re-export: Function return values ###
The same rule applies with the return value in a function declaration:
@@ -142,8 +136,7 @@ Here is an example of the rule in action:
In this case, IWYU will say that `baz.cc` does not need to `#include "foo.h"`, since `bar.h` re-exports it.
-
-#### Automatic re-export: Conversion constructors ####
+### Automatic re-export: Conversion constructors ###
Consider the following code:
diff --git a/docs/WhyIWYU.md b/docs/WhyIWYU.md
index 91b989f..929d614 100644
--- a/docs/WhyIWYU.md
+++ b/docs/WhyIWYU.md
@@ -1,23 +1,20 @@
-## Why Include What You Use? ##
+# Why Include What You Use? #
Are there any concrete benefits to a strict include-what-you-use policy? We like to think so.
-
-### Faster Compiles ###
+## Faster Compiles ##
Every .h file you bring in when compiling a source file lengthens the time to compile, as the bytes have to be read, preprocessed, and parsed. If you're not actually using a .h file, you remove that cost. With template code, where entire instantiations have to be in .h files, this can be hundreds of thousands of bytes of code. In one case at Google, running include-what-you-use over a .cc file improved its compile time by 30%.
Here, the main benefit of include-what-you-use comes from the flip side: "don't include what you don't use."
-
-### Fewer Recompiles ###
+## Fewer Recompiles ##
Many build tools, such as `make`, provide a mechanism for automatically figuring out what .h files a .cc file depends on. These mechanisms typically look at `#include` lines. When unnecessary `#includes` are listed, the build system is more likely to recompile in cases where it's not necessary.
Again, the main advantage here is from "don't include what you don't use."
-
-### Allow Refactoring ###
+## Allow Refactoring ##
Suppose you refactor `foo.h` so it no longer uses vectors. You'd like to remove `#include <vector>` from `foo.h`, to reduce compile time -- template class files such as `vector` can include a lot of code. But can you? In theory yes, but in practice maybe not: some other file may be #including you and using vectors, and depending (probably unknowingly) on your `#include <vector>` to compile. Your refactor could break code far away from you.
@@ -25,8 +22,7 @@ This is most compelling for a very large codebase (such as Google's). In a smal
Here, it's the actual 'include what you use' policy that saves the day. If everyone who uses vector is #including `<vector>` themselves, then you can remove `<vector>` without fear of breaking anything.
-
-### Self-documentation ###
+## Self-documentation ##
When you can trust the `#include` lines to accurately reflect what is used in the file, you can use them to help you understand the code. Looking at them, in itself, can help you understand what this file needs in order to do its work. If you use the optional 'commenting' feature of `fix_includes.py`, you can see what symbols -- what functions and classes -- are used by this code. It's like a pared-down version of doxygen markup, but totally automated and present where the code is (rather than in a separate web browser).
@@ -34,15 +30,13 @@ The 'commented' `#include` lines can also make it simpler to match function call
(The downside, of course, is the comments can get out of date as the code changes, so unless you run IWYU often, you still have to take the comments with a grain of salt. Nothing is free. :-) )
-
-### Dependency Cutting ###
+## Dependency Cutting ##
Again, this makes the most sense for large code-bases. Suppose your binaries are larger than you would expect, and upon closer examination use symbols that seem totally irrelevant. Where do they come from? Why are they there? With include-what-you-use, you can easily determine this by seeing who includes the files that define these symbols: those includers, and those alone, are responsible for the use.
Once you know where a symbol is used in your binary, you can see how practical it is to remove that use, perhaps by breaking up the relevant .h files into two parts, and fixing up all callers. Again it's IWYU to the rescue: with include-what-you-use, figuring out the callers that need fixing is easy.
-
-### Why Forward-Declare? ###
+## Why Forward-Declare? ##
Include-what-you-use tries very hard to figure out when a forward-declare can be used instead of an `#include` (IWYU would be about 90% less code if it didn't bother with trying to forward-declare).
diff --git a/docs/WhyIWYUIsDifficult.md b/docs/WhyIWYUIsDifficult.md
index 3fe5f0c..1960b68 100644
--- a/docs/WhyIWYUIsDifficult.md
+++ b/docs/WhyIWYUIsDifficult.md
@@ -1,11 +1,10 @@
-## Why Include What You Use Is Difficult ##
+# Why Include What You Use Is Difficult #
This section is informational, for folks who are wondering why include-what-you-use requires so much code and yet still has so many errors.
Include-what-you-use has the most problems with templates and macros. If your code doesn't use either, IWYU will probably do great. And, you're probably not actually programming in C++...
-
-### Use Versus Forward Declare ###
+## Use Versus Forward Declare ##
Include-what-you-use has to be able to tell when a symbol is being used in a way that you can forward-declare it. Otherwise, if you wrote
@@ -30,8 +29,7 @@ But that's not enough: when instantiating the templates, we need to keep track o
In this case, the caller of `MyFunc` is not using the full type of `MyClass`, because the template parameter is only used as a pointer. On the other hand, the file that defines `MyFunc` is using the full type information for `MyClass`. The end result is that the caller can forward-declare `MyClass`, but the file defining `MyFunc` has to `#include "myclass.h"`.
-
-### Handling Template Arguments ###
+## Handling Template Arguments ##
Even figuring out what types are 'used' with a template can be difficult. Consider the following two declarations:
@@ -54,8 +52,7 @@ Even normal template arguments can be confusing. Consider this templated functio
and you call `MyFunc(FunctionReturningAFunctionPointer())`. What types are being used where, in this case?
-
-### Who is Responsible for Dependent Template Types? ###
+## Who is Responsible for Dependent Template Types? ##
If you say `vector<MyClass> v;`, it's clear that you, and not `vector.h` are responsible for the use of `MyClass`, even though all the functions that use `MyClass` are defined in `vector.h`. (OK, technically, these functions are not "defined" in a particular location, they're instantiated from template methods written in `vector.h`, but for us it works out the same.)
@@ -79,8 +76,7 @@ In C++, `strchr` is a templatized function (different impls for `char*` and `con
As you can imagine, distinguishing all these cases is extremely difficult. To get it exactly right would require re-implementing C++'s (byzantine) lookup rules, which we have not yet tackled.
-
-### Template Template Types ###
+## Template Template Types ##
Let's say you have a function
@@ -90,8 +86,7 @@ Let's say you have a function
And you call `MyFunc<hash_set>`. Who is responsible for the 'use' of `hash<string>`, and thus needs to `#include "myhash.h"`? I think it has to be the caller, even if the caller never uses the `string` type in its file at all. This is rather counter-intuitive. Luckily, it's also rather rare.
-
-### Typedefs ###
+## Typedefs ##
Suppose you `#include` a file `"foo.h"` that has typedef `hash_map<Foo, Bar> MyMap;`. And you have this code:
@@ -108,13 +103,11 @@ The compiler sees this as syntactic sugar for `find<hash_map<Foo, Bar, hash<Foo>
Not only is the template argument `hash_map` instead of `MyMap`, it includes all the default template arguments, with no indication they're default arguments. All the tricks we used above to intelligently ignore default template arguments are worthless here. We have to jump through lots of hoops so this code doesn't require you to `#include` not only `<hash_map>`, but `<alloc>` and `<utility>` as well.
-
-### Macros ###
+## Macros ##
It's no surprise macros cause a huge problem for include-what-you-use. Basically, all the problems of templates also apply to macros, but worse: with templates you can analyze the uninstantiated template, but with macros, you can't analyze the uninstantiated macro -- it likely doesn't even parse cleanly in isolation. As a result, we have very few tools to distinguish when the author of a macro is responsible for a symbol used in a macro, and when the caller of the macro is responsible.
-
-### Includes with Side Effects ###
+## Includes with Side Effects ##
While not a major problem, this indicates the myriad "gotchas" that exist around include-what-you-use: removing an `#include` and replacing it with a forward-declare may be dangerous even if no symbols are fully used from the `#include`. Consider the following code:
@@ -136,8 +129,7 @@ Another case is a header file like this:
We might think we can remove an `#include` of `foo.h` and replace it by `#include "module_writer.h"`, but that is likely to break the build if `module_writer.h` requires `MODULE_NAME` be defined. Since my file doesn't participate in this dependency at all, it won't even notice it. IWYU needs to keep track of dependencies between files it's not even trying to analyze!
-
-### Private Includes ###
+## Private Includes ##
Suppose you write `vector<int> v;`. You are using vector, and thus have to `#include <vector>`. Even this seemingly easy case is difficult, because vector isn't actually defined in `<vector>`; it's defined in `<bits/stl_vector.h>`. The C++ standard library has hundreds of private files that users are not supposed to `#include` directly. Third party libraries have hundreds more. There's no general way to distinguish private from public headers; we have to manually construct the proper mapping.
@@ -145,19 +137,26 @@ In the future, we hope to provide a way for users to annotate if a file is publi
The mappings themselves can be ambiguous. For instance, `NULL` is provided by many files, including `stddef.h`, `stdlib.h`, and more. If you use `NULL`, what header file should IWYU suggest? We have rules to try to minimize the number of `#includes` you have to add; it can get rather involved.
-
-### Unparsed Code ###
+## Unparsed Code ##
Conditional `#includes` are a problem for IWYU when the condition is false:
- #if _MSC_VER
- #include <foo>
+ #if defined(LOG_VERBOSE)
+ #include <verbose_logger.h>
#endif
-If we're not running under windows (and IWYU does not currently run under windows), we have no way of telling if foo is a necessary `#include` or not.
+ ...
+
+ void StartProcess() {
+ #if defined(LOG_VERBOSE)
+ LogVerbose("Starting process");
+ #endif
+ ...
+ }
+If you're running IWYU without that preprocessor definition set, it has no way of telling if `verbose_logger.h` is a necessary `#include` or not.
-### Placing New Includes and Forward-Declares ###
+## Placing New Includes and Forward-Declares ##
Figuring out where to insert new `#includes` and forward-declares is a complex problem of its own (one that is the responsibility of `fix_includes.py`). In general, we want to put new `#includes` with existing `#includes`. But the existing `#includes` may be broken up into sections, either because of conditional `#includes` (with `#ifdefs`), or macros (such as `#define __GNU_SOURCE`), or for other reasons. Some forward-declares may need to come early in the file, and some may prefer to come later (after we're in an appropriate namespace, for instance).
diff --git a/fix_includes.py b/fix_includes.py
index 37c535f..7a686b5 100755
--- a/fix_includes.py
+++ b/fix_includes.py
@@ -104,6 +104,12 @@ _ENDIF_RE = re.compile(r'\s*#\s*endif\b')
_NAMESPACE_START_RE = re.compile(r'\s*(namespace\b[^{]*{\s*)+(//.*)?$|'
r'\s*(U_NAMESPACE_BEGIN)|'
r'\s*(HASH_NAMESPACE_DECLARATION_START)')
+# Also detect Allman and mixed style namespaces. Use a continue regex for
+# validation and to correctly set the line info.
+_NAMESPACE_START_ALLMAN_RE = re.compile(r'\s*(namespace\b[^{]*)+(//.*)?$')
+_NAMESPACE_START_MIXED_RE = re.compile(
+ r'\s*(namespace\b[^{]*{\s*)+(namespace\b[^{]*)+(//.*)?$')
+_NAMESPACE_CONTINUE_ALLMAN_MIXED_RE = re.compile(r'\s*{\s*(//.*)?$')
_NAMESPACE_END_RE = re.compile(r'\s*(})|'
r'\s*(U_NAMESPACE_END)|'
r'\s*(HASH_NAMESPACE_DECLARATION_END)')
@@ -124,8 +130,12 @@ _HEADER_GUARD_DEFINE_RE = re.compile(r'\s*#\s*define\s+')
# We annotate every line in the source file by the re it matches, or None.
# Note that not all of the above RE's are represented here; for instance,
# we fold _C_COMMENT_START_RE and _C_COMMENT_END_RE into _COMMENT_LINE_RE.
+# The _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE is also set on lines when Allman
+# and mixed namespaces are detected but the RE is too easy to match to add
+# under normal circumstances (must always be proceded by Allman/mixed).
_LINE_TYPES = [_COMMENT_LINE_RE, _BLANK_LINE_RE,
- _NAMESPACE_START_RE, _NAMESPACE_END_RE,
+ _NAMESPACE_START_RE, _NAMESPACE_START_ALLMAN_RE,
+ _NAMESPACE_START_MIXED_RE, _NAMESPACE_END_RE,
_IF_RE, _ELSE_RE, _ENDIF_RE,
_INCLUDE_RE, _FORWARD_DECLARE_RE,
_HEADER_GUARD_RE, _HEADER_GUARD_DEFINE_RE,
@@ -310,7 +320,7 @@ class IWYUOutputParser(object):
self.filename = '<unknown file>'
self.lines_by_section = {} # key is an RE, value is a list of lines
- def _ProcessOneLine(self, line):
+ def _ProcessOneLine(self, line, basedir=None):
"""Reads one line of input, updates self, and returns False at EORecord.
If the line matches one of the hard-coded section names, updates
@@ -337,7 +347,8 @@ class IWYUOutputParser(object):
if m:
# Check or set the filename (if the re has a group, it's for filename).
if section_re.groups >= 1:
- this_filename = m.group(1)
+ this_filename = NormalizeFilePath(basedir, m.group(1))
+
if (self.current_section is not None and
this_filename != self.filename):
raise FixIncludesError('"%s" section for %s comes after "%s" for %s'
@@ -388,7 +399,8 @@ class IWYUOutputParser(object):
FixIncludesError: for malformed-looking lines in the iwyu output.
"""
for line in iwyu_output:
- if not self._ProcessOneLine(line): # returns False at end-of-record
+ if not self._ProcessOneLine(line, flags.basedir):
+ # returns False at end-of-record
break
else: # for/else
return None # at EOF
@@ -683,6 +695,7 @@ def _CalculateLineTypesAndKeys(file_lines, iwyu_record):
"""
seen_types = set()
in_c_style_comment = False
+ in_allman_or_mixed_namespace = False
for line_info in file_lines:
if line_info.line is None:
line_info.type = None
@@ -706,6 +719,10 @@ def _CalculateLineTypesAndKeys(file_lines, iwyu_record):
in_c_style_comment = False
elif in_c_style_comment:
line_info.type = _COMMENT_LINE_RE
+ elif (in_allman_or_mixed_namespace and
+ _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE.match(line_info.line)):
+ in_allman_or_mixed_namespace = False
+ line_info.type = _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE
else:
for type_re in _LINE_TYPES:
# header-guard-define-re has a two-part decision criterion: it
@@ -719,6 +736,10 @@ def _CalculateLineTypesAndKeys(file_lines, iwyu_record):
line_info.type = type_re
if type_re == _INCLUDE_RE:
line_info.key = m.group(1) # get the 'key' for the #include.
+ elif type_re in (_NAMESPACE_START_ALLMAN_RE,
+ _NAMESPACE_START_MIXED_RE):
+ # set in_allman_or_mixed_namespace to true to find the next {
+ in_allman_or_mixed_namespace = True
break
else: # for/else
line_info.type = None # means we didn't match any re
@@ -968,14 +989,26 @@ def _DeleteEmptyNamespaces(file_lines):
start_line = 0
while start_line < len(file_lines):
line_info = file_lines[start_line]
- if line_info.deleted or line_info.type != _NAMESPACE_START_RE:
+ if (line_info.deleted or
+ (line_info.type != _NAMESPACE_START_RE and
+ line_info.type != _NAMESPACE_START_ALLMAN_RE and
+ line_info.type != _NAMESPACE_START_MIXED_RE)):
start_line += 1
continue
- # Because multiple namespaces can be on one line
- # ("namespace foo { namespace bar { ..."), we need to count.
- # We use the max because line may have 0 '{'s if it's a macro.
- # TODO(csilvers): ignore { in comments.
- namespace_depth = max(line_info.line.count('{'), 1)
+ if line_info.type in (_NAMESPACE_START_RE, _NAMESPACE_START_MIXED_RE):
+ # Because multiple namespaces can be on one line
+ # ("namespace foo { namespace bar { ..."), we need to count.
+ # We use the max because line may have 0 '{'s if it's a macro.
+ # TODO(csilvers): ignore { in comments.
+ namespace_depth = max(line_info.line.count('{'), 1)
+ elif line_info.type == _NAMESPACE_START_ALLMAN_RE:
+ # For Allman namespaces, keep the start line and increment
+ # the namespace depths when the actual brace is encountered.
+ namespace_depth = 0
+ else:
+ # We should have handled all the namespace styles above!
+ assert False, ('unknown namespace type',
+ _LINE_TYPES.index(line_info.type))
end_line = start_line + 1
while end_line < len(file_lines):
line_info = file_lines[end_line]
@@ -983,9 +1016,16 @@ def _DeleteEmptyNamespaces(file_lines):
end_line += 1
elif line_info.type in (_COMMENT_LINE_RE, _BLANK_LINE_RE):
end_line += 1 # ignore blank lines
- elif line_info.type == _NAMESPACE_START_RE: # nested namespace
+ elif line_info.type == _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE:
+ namespace_depth += 1
+ end_line += 1
+ elif line_info.type in (_NAMESPACE_START_RE, _NAMESPACE_START_MIXED_RE):
+ # nested namespace
namespace_depth += max(line_info.line.count('{'), 1)
end_line += 1
+ elif line_info.type == _NAMESPACE_START_ALLMAN_RE:
+ # nested Allman namespace
+ end_line += 1
elif line_info.type == _NAMESPACE_END_RE:
namespace_depth -= max(line_info.line.count('}'), 1)
end_line += 1
@@ -1189,7 +1229,10 @@ def _ShouldInsertBlankLine(decorated_move_span, next_decorated_move_span,
file_lines[next_line].type == _COMMENT_LINE_RE):
next_line += 1
return (next_line and next_line < len(file_lines) and
- file_lines[next_line].type in (_NAMESPACE_START_RE, None))
+ file_lines[next_line].type in (_NAMESPACE_START_RE,
+ _NAMESPACE_START_ALLMAN_RE,
+ _NAMESPACE_START_MIXED_RE,
+ None))
# We never insert a blank line between two spans of the same kind.
# Nor do we ever insert a blank line at EOF.
@@ -1256,9 +1299,11 @@ def _GetToplevelReorderSpans(file_lines):
line_info = file_lines[line_number]
if line_info.deleted:
continue
- if line_info.type == _NAMESPACE_START_RE:
+ if line_info.type in (_NAMESPACE_START_RE, _NAMESPACE_START_MIXED_RE):
# The 'max' is because the namespace-re may be a macro.
namespace_depth += max(line_info.line.count('{'), 1)
+ elif line_info.type == _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE:
+ namespace_depth += 1
elif line_info.type == _NAMESPACE_END_RE:
namespace_depth -= max(line_info.line.count('}'), 1)
if namespace_depth > 0:
@@ -1281,12 +1326,12 @@ def _GetToplevelReorderSpans(file_lines):
return good_reorder_spans
-def _GetFirstNamespaceLevelReorderSpan(file_lines):
- """Returns the first reorder-span inside a namespace, if it's easy to do.
+def _GetNamespaceLevelReorderSpans(file_lines):
+ """Returns a list of reorder-spans inside namespaces, if it's easy to do.
This routine is meant to handle the simple case where code consists
of includes and forward-declares, and then a 'namespace
- my_namespace'. We return the reorder span of the inside-namespace
+ my_namespace'. We return the reorder spans of the inside-namespace
forward-declares, which is a good place to insert new
inside-namespace forward-declares (rather than putting these new
forward-declares at the top level).
@@ -1296,71 +1341,162 @@ def _GetFirstNamespaceLevelReorderSpan(file_lines):
it then continues until it finds a forward-declare line, or a
non-namespace contentful line. In the former case, it figures out
the reorder-span this forward-declare line is part of, while in the
- latter case it creates a new reorder-span. It returns
- (enclosing_namespaces, reorder_span).
+ latter case it creates a new reorder-span. A list of these namespace
+ reorder spans are returned so they can all be checked. These elements
+ are in the form (enclosing_namespace, reorder_span).
Arguments:
file_lines: an array of LineInfo objects with .type and
- .reorder_span filled in.
+ .reorder_span filled in.
Returns:
- (None, None) if we could not find a first namespace-level
- reorder-span, or (enclosing_namespaces, reorder_span), where
- enclosing_namespaces is a string that looks like (for instance)
+ [] if we could not find any namespace-level reorder-spans, or
+ [(enclosing_namespace, reorder_span), ...], where enclosing_namespace
+ is a string that looks like (for instance)
'namespace ns1 { namespace ns2 {', and reorder-span is a
[start_line, end_line) pair.
"""
- simple_namespace_re = re.compile(r'^\s*namespace\s+([^{\s]+)\s*\{\s*(//.*)?$')
- namespace_prefix = ''
- for line_number in range(len(file_lines)):
- line_info = file_lines[line_number]
+ def _GetNamespaceNames(namespace_line):
+ """Returns a list of namespace names given a namespace line. Anonymous
+ namespaces will return an empty string
+ """
+ namespace_re = re.compile(r'\s*namespace\b(.*)')
+ namespaces = []
+ namespace_line = namespace_line.split("/")[0] # remove C++ comments
+ namespace_line = namespace_line.split("{") # extract all namespaces
+ for namespace in namespace_line:
+ m = namespace_re.match(namespace)
+ if m:
+ namespaces.append(m.group(1).strip())
- if line_info.deleted:
- continue
+ return namespaces
- # If we're an empty line, just ignore us. Likewise with #include
- # lines, which aren't 'contentful' for our purposes, and the
- # header guard, which is (by definition) the only kind of #ifdef
- # that we can be inside and still considered at the "top level".
- if line_info.type in (_COMMENT_LINE_RE, _BLANK_LINE_RE, _INCLUDE_RE,
- _HEADER_GUARD_RE, _HEADER_GUARD_DEFINE_RE,
- _PRAGMA_ONCE_LINE_RE):
- continue
+ namespace_reorder_spans = {}
+ try:
+ namespace_prefixes = []
+ pending_namespace_prefix = ''
+ ifdef_depth = 0
- # If we're a 'contentful' line such as a (non-header-guard) #ifdef, bail.
- elif line_info.type in (_IF_RE, _NAMESPACE_END_RE, _ELSE_RE, _ENDIF_RE,
- None): # None is a 'normal' contentful line
- # TODO(csilvers): we could probably keep going if there are no
- # braces on the line. We could also keep track of our #ifdef
- # depth instead of bailing on #else and #endif, and only accept
- # the fwd-decl-inside-namespace if it's at ifdef-depth 0.
- break
+ for line_number, line_info in enumerate(file_lines):
+ if line_info.deleted:
+ continue
- elif line_info.type == _NAMESPACE_START_RE:
- # Only handle the simple case of 'namespace <foo> {'
- m = simple_namespace_re.match(line_info.line)
- if not m:
- break
- namespace_prefix += ('namespace %s { ' % m.group(1).strip())
+ # If we're an empty line, just ignore us. Likewise with #include
+ # lines, which aren't 'contentful' for our purposes, and the
+ # header guard, which is (by definition) the only kind of #ifdef
+ # that we can be inside and still considered at the "top level".
+ if line_info.type in (_COMMENT_LINE_RE,
+ _BLANK_LINE_RE,
+ _INCLUDE_RE,
+ _HEADER_GUARD_RE,
+ _HEADER_GUARD_DEFINE_RE,
+ _PRAGMA_ONCE_LINE_RE):
+ continue
- elif line_info.type == _FORWARD_DECLARE_RE:
- # If we're not in a namespace, keep going. Otherwise, this is
- # just the situation we're looking for!
- if namespace_prefix:
- return (namespace_prefix, line_info.reorder_span)
+ # If we're a 'contentful' line such as a (non-header-guard) #ifdef, add
+ # to the ifdef depth. If we encounter #endif, reduce the ifdef depth.
+ # Only keep track of namespaces when ifdef depth is 0
+ elif line_info.type == _IF_RE:
+ ifdef_depth += 1
- else:
- # We should have handled all the cases above!
- assert False, ('unknown line-info type',
- _LINE_TYPES.index(line_info.type))
+ elif line_info.type == _ELSE_RE:
+ continue
- # We stopped because we hit a contentful line (or, possibly, a
- # weird-looking namespace). If we're inside the first-namespace,
- # return this position as a good place to insert forward-declares.
- if namespace_prefix:
- return (namespace_prefix, (line_number, line_number))
- return (None, None)
+ elif line_info.type == _ENDIF_RE:
+ ifdef_depth -= 1
+
+ elif ifdef_depth != 0:
+ continue # skip lines until we're outside of an ifdef block
+
+ # Build the simplified namespace dictionary. When any new namespace is
+ # encountered, add the namespace to the list using the next line to cover
+ # namespaces without forward declarations. When a forward declare is
+ # found, update the dictionary using the existing namespace span that the
+ # forward declare contains. Once a contentful line (None) has been found
+ # or any exception occurs, return the results that have been found. Any
+ # forward declare that wasn't able to have a proper namespace name found
+ # will still propagate to the top of the file.
+ elif line_info.type == _NAMESPACE_START_RE:
+ for namespace in _GetNamespaceNames(line_info.line):
+ if not namespace:
+ namespace_prefixes.append('namespace {')
+ else:
+ namespace_prefixes.append('namespace %s {' % namespace)
+
+ namespace_reorder_spans[' '.join(namespace_prefixes)] = (
+ line_number+1, line_number+1)
+
+ elif line_info.type == _NAMESPACE_START_ALLMAN_RE:
+ pending_namespace_prefix = ''
+ namespaces = _GetNamespaceNames(line_info.line)
+ if len(namespaces) != 1:
+ raise FixIncludesError('Allman namespace found containing multiple '
+ 'names: %s', line_info.line)
+ for namespace in namespaces:
+ if not namespace:
+ pending_namespace_prefix += 'namespace'
+ else:
+ pending_namespace_prefix += 'namespace %s' % namespace
+
+ elif line_info.type == _NAMESPACE_START_MIXED_RE:
+ # For mixed namespace styles, we need to append normalized prefixes
+ # using regular and Allman style. Treat the first elements as
+ # normal and only treat the final element as Allman. By the
+ # nature of mixed namespaces, there will always be more than
+ # one namespace so it is okay to assume that _GetNamespaceNames
+ # will always return multiple records.
+ pending_namespace_prefix = ''
+ namespaces = _GetNamespaceNames(line_info.line)
+ for namespace in namespaces[:-1]:
+ if not namespace:
+ namespace_prefixes.append('namespace {')
+ else:
+ namespace_prefixes.append('namespace %s {' % namespace)
+
+ if not namespaces[-1]:
+ pending_namespace_prefix += 'namespace'
+ else:
+ pending_namespace_prefix += 'namespace %s' % namespaces[-1]
+
+ elif line_info.type == _NAMESPACE_CONTINUE_ALLMAN_MIXED_RE:
+ # Append to the simplified allman namespace.
+ if pending_namespace_prefix == '':
+ raise FixIncludesError('Namespace bracket found without an associated '
+ 'namespace name at line: %s', line_number)
+ pending_namespace_prefix += ' {'
+ namespace_prefixes.append(pending_namespace_prefix)
+ namespace_reorder_spans[' '.join(namespace_prefixes)] = (
+ line_number+1, line_number+1)
+
+ elif line_info.type == _NAMESPACE_END_RE:
+ # Remove C++ comments and count the ending brackets.
+ namespace_end_count = line_info.line.split("/")[0].count("}")
+ namespace_prefixes = namespace_prefixes[:-namespace_end_count]
+
+ elif line_info.type == _FORWARD_DECLARE_RE:
+ # If we're not in a namespace, keep going. Otherwise, this is
+ # just the situation we're looking for! Update the dictionary
+ # with the better reorder span
+ if len(namespace_prefixes) > 0:
+ namespace_reorder_spans[' '.join(namespace_prefixes)] = (
+ line_info.reorder_span)
+
+ elif line_info.type == None:
+ break
+
+ else:
+ # We should have handled all the cases above!
+ assert False, ('unknown line-info type',
+ _LINE_TYPES.index(line_info.type))
+ except Exception as why:
+ # Namespace detection could be tricky so take what we have and return.
+ print('DEBUG: Namespace detection returned prematurely because of an '
+ 'exception: %s' % (why))
+ pass
+
+ # return a reverse sorted list so longest matches are checked first
+ return sorted(namespace_reorder_spans.items(), reverse=True)
# These are potential 'kind' arguments to _FirstReorderSpanWith.
@@ -1757,19 +1893,21 @@ def _DecoratedMoveSpanLines(iwyu_record, file_lines, move_span_lines, flags):
# If we're a forward-declare inside a namespace, see if there's a
# reorder span inside the same namespace we can fit into.
if kind == _FORWARD_DECLARE_KIND:
- (namespace_prefix, possible_reorder_span) = \
- _GetFirstNamespaceLevelReorderSpan(file_lines)
- if (namespace_prefix and possible_reorder_span and
- firstline.line.startswith(namespace_prefix)):
- # Great, we can go into this reorder_span. We also need to
- # modify all-lines because this line doesn't need the
- # namespace prefix anymore. Make sure we can do that before
- # succeeding.
- new_firstline = _RemoveNamespacePrefix(firstline.line, namespace_prefix)
- if new_firstline:
- assert all_lines[first_contentful_line] == firstline.line
- all_lines[first_contentful_line] = new_firstline
- reorder_span = possible_reorder_span
+ namespace_reorder_spans = _GetNamespaceLevelReorderSpans(file_lines)
+ for namespace_prefix, possible_reorder_span in namespace_reorder_spans:
+ if (namespace_prefix and possible_reorder_span and
+ firstline.line.startswith(namespace_prefix)):
+ # Great, we can go into this reorder_span. We also need to
+ # modify all-lines because this line doesn't need the
+ # namespace prefix anymore. Make sure we can do that before
+ # succeeding.
+ new_firstline = _RemoveNamespacePrefix(firstline.line, namespace_prefix)
+ if new_firstline:
+ assert all_lines[first_contentful_line] == firstline.line
+ all_lines[first_contentful_line] = new_firstline
+ sort_key = re.sub(r'\s+', '', new_firstline)
+ reorder_span = possible_reorder_span
+ break
# If that didn't work out, find a top-level reorder span to go into.
if reorder_span is None:
@@ -1885,7 +2023,9 @@ def _GetSymbolNameFromForwardDeclareLine(line):
"""
iwyu_namespace_re = re.compile(r'namespace ([^{]*) { ')
symbolname_re = re.compile(r'([A-Za-z0-9_]+)')
- namespaces_in_line = iwyu_namespace_re.findall(line)
+ # Turn anonymous namespaces into their proper symbol representation.
+ namespaces_in_line = iwyu_namespace_re.findall(line.replace(
+ "namespace {", "namespace (anonymous namespace) {"))
symbols_in_line = symbolname_re.findall(line)
symbol_name = symbols_in_line[-1]
if (namespaces_in_line):
@@ -1929,7 +2069,7 @@ def FixFileLines(iwyu_record, file_lines, flags):
# For every move-span in our file -- that's every #include and
# forward-declare we saw -- 'decorate' the move-range to allow us
# to sort them.
- move_spans = set([fl.move_span for fl in file_lines if fl.move_span])
+ move_spans = OrderedSet([fl.move_span for fl in file_lines if fl.move_span])
decorated_move_spans = []
for (start_line, end_line) in move_spans:
decorated_span = _DecoratedMoveSpanLines(iwyu_record, file_lines,
@@ -1963,7 +2103,10 @@ def FixFileLines(iwyu_record, file_lines, flags):
# Add a sentinel decorated move-span, to make life easy, and sort.
decorated_move_spans.append(((len(file_lines), len(file_lines)),
_EOF_KIND, '', []))
- decorated_move_spans.sort()
+ if flags.reorder:
+ decorated_move_spans.sort()
+ else:
+ decorated_move_spans.sort(key=lambda x: x[0:-2])
# Now go through all the lines of the input file and construct the
# output file. Before we get to the next reorder-span, we just
@@ -2061,7 +2204,7 @@ def FixManyFiles(iwyu_records, flags):
return files_fixed
-def ProcessIWYUOutput(f, files_to_process, flags):
+def ProcessIWYUOutput(f, files_to_process, flags, cwd):
"""Fix the #include and forward-declare lines as directed by f.
Given a file object that has the output of the include_what_you_use
@@ -2074,12 +2217,17 @@ def ProcessIWYUOutput(f, files_to_process, flags):
flags: commandline flags, as parsed by optparse. The only flag
we use directly is flags.ignore_re, to indicate files not to
process; we also pass the flags to other routines.
+ cwd: the current working directory, externalized for testing.
Returns:
The number of files that had to be modified (because they weren't
already all correct). In dry_run mode, returns the number of
files that would have been modified.
"""
+ if files_to_process is not None:
+ files_to_process = [NormalizeFilePath(cwd, fname)
+ for fname in files_to_process]
+
# First collect all the iwyu data from stdin.
# Maintain sort order by using OrderedDict instead of dict
@@ -2093,7 +2241,7 @@ def ProcessIWYUOutput(f, files_to_process, flags):
except FixIncludesError as why:
print('ERROR: %s' % why)
continue
- filename = iwyu_record.filename
+ filename = NormalizeFilePath(flags.basedir, iwyu_record.filename)
if files_to_process is not None and filename not in files_to_process:
print('(skipping %s: not listed on commandline)' % filename)
continue
@@ -2101,6 +2249,10 @@ def ProcessIWYUOutput(f, files_to_process, flags):
print('(skipping %s: it matches --ignore_re, which is %s)' % (
filename, flags.ignore_re))
continue
+ if flags.only_re and not re.search(flags.only_re, filename):
+ print('(skipping %s: it does not match --only_re, which is %s)' % (
+ filename, flags.only_re))
+ continue
if filename in iwyu_output_records:
iwyu_output_records[filename].Merge(iwyu_record)
@@ -2122,6 +2274,17 @@ def ProcessIWYUOutput(f, files_to_process, flags):
return FixManyFiles(contentful_records, flags)
+def NormalizeFilePath(basedir, filename):
+ """ Normalize filename to be comparable.
+
+ If basedir has a value and filename is not already absolute, make filename
+ absolute. Otherwise return filename as-is.
+ """
+ if basedir and not os.path.isabs(filename):
+ return os.path.normpath(os.path.join(basedir, filename))
+ return filename
+
+
def SortIncludesInFiles(files_to_process, flags):
"""For each file in files_to_process, sort its #includes.
@@ -2140,6 +2303,7 @@ def SortIncludesInFiles(files_to_process, flags):
"""
sort_only_iwyu_records = []
for filename in files_to_process:
+ filename = NormalizeFilePath(flags.basedir, filename)
# An empty iwyu record has no adds or deletes, so its only effect
# is to cause us to sort the #include lines. (Since fix_includes
# gets all its knowledge of where forward-declare lines are from
@@ -2169,6 +2333,13 @@ def main(argv):
parser.add_option('--nosafe_headers', action='store_false',
dest='safe_headers')
+ parser.add_option('--reorder', action='store_true', default=False,
+ help=('Re-order lines relative to other similar lines '
+ '(e.g. headers relative to other headers)'))
+ parser.add_option('--noreorder', action='store_false', dest='reorder',
+ help=('Do not re-order lines relative to other similar '
+ 'lines.'))
+
parser.add_option('-s', '--sort_only', action='store_true',
help=('Just sort #includes of files listed on cmdline;'
' do not add or remove any #includes'))
@@ -2183,6 +2354,10 @@ def main(argv):
help=('fix_includes.py will skip editing any file whose'
' name matches this regular expression.'))
+ parser.add_option('--only_re', default=None,
+ help='fix_includes.py will skip editing any file whose'
+ ' name does not match this regular expression.')
+
parser.add_option('--separate_project_includes', default=None,
help=('Sort #includes for current project separately'
' from all other #includes. This flag specifies'
@@ -2192,10 +2367,6 @@ def main(argv):
' same project. If not specified, project #includes'
' will be sorted with other non-system #includes.'))
- parser.add_option('--invoking_command_line', default=None,
- help=('Internal flag used by iwyu.py, It should be the'
- ' command line used to invoke iwyu.py'))
-
parser.add_option('-m', '--keep_iwyu_namespace_format', action='store_true',
default=False,
help=('Keep forward-declaration namespaces in IWYU format, '
@@ -2206,6 +2377,11 @@ def main(argv):
parser.add_option('--nokeep_iwyu_namespace_format', action='store_false',
dest='keep_iwyu_namespace_format')
+ parser.add_option('--basedir', '-p', default=None,
+ help=('Specify the base directory. fix_includes will '
+ 'interpret non-absolute filenames relative to this '
+ 'path.'))
+
(flags, files_to_modify) = parser.parse_args(argv[1:])
if files_to_modify:
files_to_modify = set(files_to_modify)
@@ -2223,7 +2399,7 @@ def main(argv):
sys.exit('FATAL ERROR: -s flag requires a list of filenames')
return SortIncludesInFiles(files_to_modify, flags)
else:
- return ProcessIWYUOutput(sys.stdin, files_to_modify, flags)
+ return ProcessIWYUOutput(sys.stdin, files_to_modify, flags, cwd=os.getcwd())
if __name__ == '__main__':
diff --git a/fix_includes_test.py b/fix_includes_test.py
index 11e09f5..a8c1236 100755
--- a/fix_includes_test.py
+++ b/fix_includes_test.py
@@ -36,11 +36,12 @@ class FakeFlags(object):
self.comments = True
self.dry_run = False
self.ignore_re = None
+ self.only_re = None
self.safe_headers = False
self.separate_project_includes = None
- self.invoking_command_line = 'iwyu.py my_targets'
- self.find_affected_targets = True
self.keep_iwyu_namespace_format = False
+ self.reorder = True
+ self.basedir = None
class FixIncludesBase(unittest.TestCase):
@@ -119,7 +120,7 @@ class FixIncludesBase(unittest.TestCase):
self.expected_after_map[filename] = expected_after_contents
def ProcessAndTest(self, iwyu_output, cmdline_files=None, unedited_files=[],
- expected_num_modified_files=None):
+ expected_num_modified_files=None, cwd=None):
"""For all files mentioned in iwyu_output, compare expected and actual.
Arguments:
@@ -132,6 +133,8 @@ class FixIncludesBase(unittest.TestCase):
but fix_files has chosen not to edit for some reason.
expected_num_modified_files: what we expect ProcessIWYUOutput to
return. If None, suppress this check.
+ cwd: working directory passed to ProcessIWYUOutput, used to normalize
+ paths in cmdline_files. If None, no normalization occurs.
"""
filenames = re.findall('^(\S+) should add these lines:', iwyu_output, re.M)
if not filenames: # This is the other possible starting-line
@@ -140,13 +143,15 @@ class FixIncludesBase(unittest.TestCase):
expected_after = []
for filename in fix_includes.OrderedSet(filenames): # uniquify
+ filename = fix_includes.NormalizeFilePath(self.flags.basedir, filename)
if filename not in unedited_files:
expected_after.extend(self.expected_after_map[filename])
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
cmdline_files,
- self.flags)
+ self.flags,
+ cwd=cwd)
if expected_after != self.actual_after_contents:
print("=== Expected:")
@@ -245,7 +250,7 @@ int main() { return 0; }
# we can't use the normal ProcessAndTest.
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
- None, self.flags)
+ None, self.flags, None)
self.assertListEqual([], self.actual_after_contents) # 'no diffs'
self.assertEqual(0, num_modified_files)
@@ -269,7 +274,7 @@ int main() { return 0; }
# we can't use the normal ProcessAndTest.
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
- None, self.flags)
+ None, self.flags, None)
self.assertListEqual([], self.actual_after_contents) # 'no diffs'
self.assertEqual(0, num_modified_files)
@@ -306,6 +311,78 @@ The full include-list for empty_namespace:
self.RegisterFileContents({'empty_namespace': infile})
self.ProcessAndTest(iwyu_output)
+ def testRemoveEmptyAllmanNamespace(self):
+ """Tests we remove a namespace with Allman braces if we remove all fwd-decls inside it."""
+ infile = """\
+// Copyright 2010
+
+#include <stdio.h>
+
+namespace ns ///-
+{ ///-
+class Foo; ///-
+namespace ns2 ///-
+{ ///-
+namespace ns3 ///-
+{ ///-
+class Bar; ///-
+} ///-
+} ///-
+class Baz; ///-
+} ///-
+ ///-
+int main() { return 0; }
+"""
+ iwyu_output = """\
+empty_namespace should add these lines:
+
+empty_namespace should remove these lines:
+- class Foo; // lines 7-7
+- namespace ns { namespace ns2 { namespace ns3 { class Bar; } } } // lines 12-12
+- namespace ns { class Baz; } } // lines 15-15
+
+The full include-list for empty_namespace:
+#include <stdio.h>
+---
+"""
+ self.RegisterFileContents({'empty_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testRemoveEmptyMixedNamespace(self):
+ """Tests we remove a namespace with mixed braces if we remove all fwd-decls inside it."""
+ infile = """\
+// Copyright 2010
+
+#include <stdio.h>
+
+namespace ns ///-
+{ ///-
+class Foo; ///-
+namespace ns2 { namespace ns3 ///-
+{ ///-
+class Bar; ///-
+} ///-
+} ///-
+class Baz; ///-
+} ///-
+ ///-
+int main() { return 0; }
+"""
+ iwyu_output = """\
+empty_namespace should add these lines:
+
+empty_namespace should remove these lines:
+- class Foo; // lines 7-7
+- namespace ns { namespace ns2 { namespace ns3 { class Bar; } } } // lines 10-10
+- namespace ns { class Baz; } } // lines 13-13
+
+The full include-list for empty_namespace:
+#include <stdio.h>
+---
+"""
+ self.RegisterFileContents({'empty_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
def testRemovePartOfEmptyNamespace(self):
"""Tests we remove a namespace if empty, but not enclosing namespaces."""
infile = """\
@@ -339,6 +416,78 @@ namespace maps_transit_realtime { namespace service_alerts { class StaticService
self.RegisterFileContents({'empty_internal_namespace': infile})
self.ProcessAndTest(iwyu_output)
+ def testRemovePartOfEmptyAllmanNamespace(self):
+ """Tests we remove a namespace with Allman braces if empty, but not enclosing namespaces."""
+ infile = """\
+// Copyright 2010
+
+namespace maps_transit_realtime
+{
+namespace service_alerts
+{
+class StaticServiceAlertStore;
+namespace trigger ///-
+{ ///-
+class Trigger; ///-
+} // namespace trigger ///-
+namespace ui ///-
+{ ///-
+class Alert; ///-
+} // namespace ui ///-
+} // namespace service_alerts
+} // namespace maps_transit_realtime
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+empty_internal_namespace should add these lines:
+
+empty_internal_namespace should remove these lines:
+- namespace maps_transit_realtime { namespace service_alerts { namespace trigger { class Trigger; } } } // lines 10-10
+- namespace maps_transit_realtime { namespace service_alerts { namespace ui { class Alert; } } } // lines 14-14
+
+The full include-list for empty_internal_namespace:
+namespace maps_transit_realtime { namespace service_alerts { class StaticServiceAlertStore; } } // lines 7-7
+---
+"""
+ self.RegisterFileContents({'empty_internal_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testRemovePartOfEmptyMixedNamespace(self):
+ """Tests we remove a namespace with mixed braces if empty, but not enclosing namespaces."""
+ infile = """\
+// Copyright 2010
+
+namespace maps_transit_realtime
+{
+class StaticServiceAlertStore;
+namespace service_alerts { namespace trigger ///-
+{ ///-
+class Trigger; ///-
+} // namespace trigger ///-
+namespace ui ///-
+{ ///-
+class Alert; ///-
+} // namespace ui ///-
+} // namespace service_alerts ///-
+} // namespace maps_transit_realtime
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+empty_internal_namespace should add these lines:
+
+empty_internal_namespace should remove these lines:
+- namespace maps_transit_realtime { namespace service_alerts { namespace trigger { class Trigger; } } } // lines 8-8
+- namespace maps_transit_realtime { namespace service_alerts { namespace ui { class Alert; } } } // lines 12-12
+
+The full include-list for empty_internal_namespace:
+namespace maps_transit_realtime { class StaticServiceAlertStore; } // lines 5-5
+---
+"""
+ self.RegisterFileContents({'empty_internal_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
def testRemoveEmptyIfdef(self):
"""Tests we remove an #ifdef if we remove all #includes inside it."""
# Also makes sure we reorder properly around the removed ifdef.
@@ -954,20 +1103,14 @@ template <typename T> class Baz; // lines 9-9
self.RegisterFileContents({'add_fwd_decl_with_hdr_guard': infile})
self.ProcessAndTest(iwyu_output)
- def testDoNotAddForwardDeclareInsideNamespaceWithContentfulLine(self):
- """Tests that for 'confusing' code, we keep fwd-decl at the top."""
+ def testAddForwardDeclareInsideNamespaceWithIfDef(self):
+ """Tests that ifdef blocks are ignored when finding namespaces."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
-///+namespace ns {
-///+namespace ns2 {
-///+class NsBang;
-///+template <typename T> class NsBaz;
-///+} // namespace ns2
-///+} // namespace ns
template <typename T> class Baz;
#ifdef THIS_IS_A_CONTENTFUL_LINE
@@ -978,8 +1121,10 @@ namespace ns {
namespace ns2 {
+///+class NsBang;
class NsFoo;
template <typename T> class NsBar;
+///+template <typename T> class NsBaz;
}
@@ -988,13 +1133,13 @@ template <typename T> class NsBar;
int main() { return 0; }
"""
iwyu_output = """\
-do_not_add_fwd_decl_inside_namespace should add these lines:
+add_forward_declares_after_ifdef_code should add these lines:
namespace ns { namespace ns2 { class NsBang; } }
namespace ns { namespace ns2 { template <typename T> class NsBaz; } }
-do_not_add_fwd_decl_inside_namespace should remove these lines:
+add_forward_declares_after_ifdef_code should remove these lines:
-The full include-list for do_not_add_fwd_decl_inside_namespace:
+The full include-list for add_forward_declares_after_ifdef_code:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
namespace ns { namespace ns2 { class NsBang; } }
@@ -1004,7 +1149,7 @@ namespace ns { namespace ns2 { template <typename T> class NsBaz; } }
template <typename T> class Baz; // lines 6-6
---
"""
- self.RegisterFileContents({'do_not_add_fwd_decl_inside_namespace': infile})
+ self.RegisterFileContents({'add_forward_declares_after_ifdef_code': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithoutForwardDeclaresAlready(self):
@@ -1020,7 +1165,7 @@ template <typename T> class Baz;
namespace ns {
namespace ns2 { // we sure do love nesting our namespaces!
-
+///-
///+namespace ns3 {
///+class NsBang;
///+template <typename T> class NsBaz;
@@ -1049,7 +1194,41 @@ template <typename T> class Baz; // lines 6-6
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace_without_fwd_decl':
- infile})
+ infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testAddForwardDeclareInsideNamespaceWithCompactEndings(self):
+ """Tests we put fwd-decls inside an ns when using compact namespace endings."""
+ infile = """\
+// Copyright 2010
+
+namespace ns { namespace ns1 { namespace ns2 {
+class Ns2Bang;
+}} // namespace ns2 // namespace ns1
+///+class NsBar;
+class NsBaz;
+ ///-
+namespace ns3 { namespace ns4 { ///-
+class Ns4Bye; ///-
+}} // namespace ns4 // namespace ns3 ///-
+} // namespace ns
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+add_fwd_decl_inside_namespace_without_compact_endings should add these lines:
+namespace ns { class NsBar; }
+
+add_fwd_decl_inside_namespace_without_compact_endings should remove these lines:
+- namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { namespace ns4 { class Ns4Bye; } } } } } // lines 9-9
+
+The full include-list for add_fwd_decl_inside_namespace_without_compact_endings:
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } } // lines 4-4
+namespace ns { class NsBaz; } // lines 6-6
+---
+"""
+ self.RegisterFileContents({'add_fwd_decl_inside_namespace_without_compact_endings':
+ infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithUnnamedNamespace(self):
@@ -1062,7 +1241,6 @@ template <typename T> class Baz; // lines 6-6
class Bar;
namespace ns {
-///+
///+class NsBang;
///+template <typename T> class NsBaz;
@@ -1084,14 +1262,249 @@ add_fwd_decl_inside_namespace_unnamed_ns should remove these lines:
The full include-list for add_fwd_decl_inside_namespace_unnamed_ns:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
+namespace ns { namespace { class NsFoo; } } // lines 10-10
+namespace ns { class NsBang; }
+namespace ns { template <typename T> class NsBaz; }
+namespace ns { namespace { template <typename T> class NsBar; } } // lines 11-11
+---
+"""
+ self.RegisterFileContents({'add_fwd_decl_inside_namespace_unnamed_ns':
+ infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testAddForwardDeclareInsideNamespacesWithUnnamedNamespaceAndContent(self):
+ """Tests that nested namespaces with forward declares still get new additions."""
+ infile = """\
+// Copyright 2010
+
+#include "foo.h"
+
+class Bar;
+///+class Baz;
+
+namespace ns {
+///+class NsBang;
+///+template <typename T> class NsBaz;
+
+namespace {
+///+class NsBaz;
+class NsFoo;
+template <typename T> class NsBar;
+}
+
+namespace ns1 {
+///+class Ns1Bar;
+///+class Ns1Baz;
+class Ns1Foo;
+
+int ns_int = 5; // here's my contentful line
+}
+}
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+add_fwd_decl_inside_namespaces_with_existing_content should add these lines:
+class Baz;
+namespace ns { class NsBang; }
+namespace ns { template <typename T> class NsBaz; }
+namespace ns { namespace { class NsBaz; } }
+namespace ns { namespace ns1 { class Ns1Bar; } }
+namespace ns { namespace ns1 { class Ns1Baz; } }
+
+add_fwd_decl_inside_namespaces_with_existing_content should remove these lines:
+
+The full include-list for add_fwd_decl_inside_namespaces_with_existing_content:
+#include "foo.h" // lines 3-3
+class Bar; // lines 5-5
+class Baz;
+namespace ns { namespace { class NsFoo; } } // lines 10-10
+namespace ns { namespace { class NsBaz; } }
+namespace ns { class NsBang; }
+namespace ns { template <typename T> class NsBaz; }
+namespace ns { namespace { template <typename T> class NsBar; } } // lines 11-11
+namespace ns { namespace ns1 { class Ns1Foo; } } // lines 15-15
+namespace ns { namespace ns1 { class Ns1Bar; } }
+namespace ns { namespace ns1 { class Ns1Baz; } }
+---
+"""
+ self.RegisterFileContents({'add_fwd_decl_inside_namespaces_with_existing_content':
+ infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testAddForwardDeclareInsideAllmanNamespacesWithUnnamedNamespaceAndContent(self):
+ """Tests that nested Allman namespaces with forward declares still get new additions."""
+ infile = """\
+// Copyright 2010
+
+#include "foo.h"
+
+class Bar;
+///+class Baz;
+
+namespace ns
+{
+///+class NsBang;
+///+template <typename T> class NsBaz;
+
+namespace
+{
+///+class NsBaz;
+class NsFoo;
+template <typename T> class NsBar;
+}
+
+namespace ns1
+{
+///+class Ns1Bar;
+///+class Ns1Baz;
+class Ns1Foo;
+
+int ns_int = 5; // here's my contentful line
+}
+}
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+add_fwd_decl_inside_allman_namespaces_with_existing_content should add these lines:
+class Baz;
+namespace ns { class NsBang; }
+namespace ns { template <typename T> class NsBaz; }
+namespace ns { namespace { class NsBaz; } }
+namespace ns { namespace ns1 { class Ns1Bar; } }
+namespace ns { namespace ns1 { class Ns1Baz; } }
+
+add_fwd_decl_inside_allman_namespaces_with_existing_content should remove these lines:
+
+The full include-list for add_fwd_decl_inside_allman_namespaces_with_existing_content:
+#include "foo.h" // lines 3-3
+class Bar; // lines 5-5
+class Baz;
namespace ns { namespace { class NsFoo; } } // lines 12-12
+namespace ns { namespace { class NsBaz; } }
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { template <typename T> class NsBar; } } // lines 13-13
+namespace ns { namespace ns1 { class Ns1Foo; } } // lines 18-18
+namespace ns { namespace ns1 { class Ns1Bar; } }
+namespace ns { namespace ns1 { class Ns1Baz; } }
---
"""
- self.RegisterFileContents({'add_fwd_decl_inside_namespace_unnamed_ns':
- infile})
+ self.RegisterFileContents({'add_fwd_decl_inside_allman_namespaces_with_existing_content':
+ infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testAddForwardDeclareInsideMixedNamespacesWithUnnamedNamespaceAndContent(self):
+ """Tests that nested mixed namespaces with forward declares still get new additions."""
+ infile = """\
+// Copyright 2010
+
+#include "bar.h"
+///+
+///+class Baz;
+///+
+namespace ns { namespace ns1 { namespace ns2
+{
+///+class Ns2Bang;
+///+template <typename T> class Ns2Baz;
+///+
+namespace
+{
+///+class NsaBaz;
+class NsaFoo;
+template <typename T> class NsaBar;
+} // namespace
+namespace ns3 {
+///+class Ns3Bar;
+///+class Ns3Baz;
+class Ns3Foo;
+///+
+int ns3_int = 5; // here's my contentful line
+} // namespace ns3
+} // namespace ns2
+} // namespace ns1
+} // namespace ns
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+add_fwd_decl_inside_mixed_namespaces_with_existing_content should add these lines:
+class Baz;
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } }
+namespace ns { namespace ns1 { namespace ns2 { template <typename T> class Ns2Baz; } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaBaz; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bar; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } }
+
+add_fwd_decl_inside_mixed_namespaces_with_existing_content should remove these lines:
+
+The full include-list for add_fwd_decl_inside_mixed_namespaces_with_existing_content:
+#include "bar.h" // lines 3-3
+#include "foo.h"
+class Baz;
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } }
+namespace ns { namespace ns1 { namespace ns2 { template <typename T> class Ns2Baz; } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaFoo; } } } } // lines 8-8
+namespace ns { namespace ns1 { namespace ns2 { namespace { template <typename T> class NsaBar; } } } } // lines 9-9
+namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaBaz; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bar; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Foo; } } } } // lines 12-12
+---
+"""
+ self.RegisterFileContents({'add_fwd_decl_inside_mixed_namespaces_with_existing_content':
+ infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testAddForwardDeclareInsideNestedNamespacesAndTopLevelForComplexNamespaces(self):
+ """Tests that nested namespaces still get new additions while putting hard to resolve forward declares at the top."""
+ infile = """\
+// Copyright 2010
+
+///+namespace ns {
+///+class NsBang;
+///+namespace ns1 {
+///+Ns1Bang;
+///+} // namespace ns1
+///+} // namespace ns
+///+
+namespace ns { namespace ns1 { namespace ns2 {
+class Ns2Bang;
+class Ns2Bar; ///-
+///+class Ns2Baz;
+///+
+namespace ns3 {
+///+class Ns3Bang;
+class Ns3Baz;
+} // namespace ns3
+} // namespace ns2
+} // namespace ns1
+} // namespace ns
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces should add these lines:
+namespace ns { class NsBang; }
+namespace ns { namespace ns1 { Ns1Bang; }
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Baz; } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bang; } } } }
+
+add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces should remove these lines:
+- namespace ns { namespace ns1 { namespace ns2 { class Ns2Bar; } } } // lines 5-5
+
+The full include-list for add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces:
+namespace ns { class NsBang; }
+namespace ns { namespace ns1 { Ns1Bang; }
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } } // lines 4-4
+namespace ns { namespace ns1 { namespace ns2 { class Ns2Baz; } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bang; } } } }
+namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } } // lines 7-7
+---
+"""
+ self.RegisterFileContents({'add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces':
+ infile})
self.ProcessAndTest(iwyu_output)
def testRemoveNamespaces(self):
@@ -2309,12 +2722,12 @@ The full include-list for simple_with_comment.h:
#define IDENTIFYING_HEADER_GUARD_LINES_H_
namespace foo {
-// The namespace decl should come before this #define, not after.
-// It will, unless we wrongly say the #define is a header-guard define.
///+namespace bar {
///+class Baz;
///+} // namespace bar
///+
+// The namespace decl should come before this #define, not after.
+// It will, unless we wrongly say the #define is a header-guard define.
#define NOT_A_HEADER_GUARD_LINE 1
}
@@ -2563,6 +2976,59 @@ The full include-list for iterative_namespace:
self.RegisterFileContents({'iterative_namespace': infile})
self.ProcessAndTest(iwyu_output)
+ def testIterativeAllmanNamespaceDelete(self):
+ """Tests deleting an Allman namespace with an emptied #ifdef inside it."""
+ infile = """\
+// Copyright 2010
+ ///-
+namespace foo ///-
+{ ///-
+#ifdef FWD_DECL ///-
+class Bar; ///-
+#endif ///-
+} ///-
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+iterative_namespace should add these lines:
+
+iterative_namespace should remove these lines:
+- class Bar; // lines 6-6
+
+The full include-list for iterative_namespace:
+---
+"""
+ self.RegisterFileContents({'iterative_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
+ def testIterativeMixedNamespaceDelete(self):
+ """Tests deleting a namespace with mixed braces with an emptied #ifdef inside it."""
+ infile = """\
+// Copyright 2010
+ ///-
+namespace foo { namespace baz ///-
+{ ///-
+#ifdef FWD_DECL ///-
+class Bar; ///-
+#endif ///-
+} ///-
+} ///-
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+iterative_namespace should add these lines:
+
+iterative_namespace should remove these lines:
+- class Bar; // lines 6-6
+
+The full include-list for iterative_namespace:
+---
+"""
+ self.RegisterFileContents({'iterative_namespace': infile})
+ self.ProcessAndTest(iwyu_output)
+
def testIterativeIfdefDelete(self):
"""Tests deleting an ifdef with an emptied namespace inside it."""
infile = """\
@@ -2905,6 +3371,97 @@ The full include-list for changed:
self.flags.ignore_re = 'nch'
self.ProcessAndTest(iwyu_output, unedited_files=['unchanged'])
+ def testOnlyRe(self):
+ """Test the behavior of the --only_re flag."""
+ changed_infile = """\
+// Copyright 2010
+
+#include <notused.h> ///-
+///+#include <stdio.h>
+#include "used.h"
+///+#include "used2.h"
+
+int main() { return 0; }
+"""
+ unchanged_infile = """\
+// Copyright 2010
+
+#include <notused.h>
+#include "used.h"
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+output should add these lines:
+#include <stdio.h>
+#include "used2.h"
+
+output should remove these lines:
+- #include <notused.h> // lines 3-3
+
+The full include-list for output:
+#include <stdio.h>
+#include "used.h"
+#include "used2.h"
+---
+"""
+ # Have the exact same iwyu output for 'alice.cpp' as for 'bob.cpp'.
+ iwyu_output = (iwyu_output.replace('output', 'alice.cpp') +
+ iwyu_output.replace('output', 'bob.cpp'))
+
+ self.RegisterFileContents({'alice.cpp': changed_infile,
+ 'bob.cpp': unchanged_infile})
+ # only alice.cpp should be edited, since it matches only_re.
+ self.flags.only_re = 'lice'
+ self.ProcessAndTest(iwyu_output, unedited_files=['bob.cpp'])
+
+ def testIgnoreAndOnlyRe(self):
+ """Test the behavior of both --ignore_re and --only_re flags."""
+ changed_infile = """\
+// Copyright 2010
+
+#include <notused.h> ///-
+///+#include <stdio.h>
+#include "used.h"
+///+#include "used2.h"
+
+int main() { return 0; }
+"""
+ unchanged_infile = """\
+// Copyright 2010
+
+#include <notused.h>
+#include "used.h"
+
+int main() { return 0; }
+"""
+ iwyu_output = """\
+output should add these lines:
+#include <stdio.h>
+#include "used2.h"
+
+output should remove these lines:
+- #include <notused.h> // lines 3-3
+
+The full include-list for output:
+#include <stdio.h>
+#include "used.h"
+#include "used2.h"
+---
+"""
+ # Have the exact same iwyu output for 'alice.cpp' as for 'bob.cpp' and 'charlie.cpp'
+ iwyu_output = (iwyu_output.replace('output', 'alice.cpp') +
+ iwyu_output.replace('output', 'bob.cpp') +
+ iwyu_output.replace('output', 'charlie.cpp'))
+
+ self.RegisterFileContents({'alice.cpp': changed_infile,
+ 'bob.cpp': unchanged_infile,
+ 'charlie.cpp': changed_infile})
+ # only alice.cpp should be edited, since it matches only_re and not ignore_re
+ self.flags.only_re = 'li'
+ self.flags.ignore_re = 'char'
+ self.ProcessAndTest(iwyu_output, unedited_files=['bob.cpp', 'charlie.cpp'])
+
def testSortIncludes(self):
"""Test sorting includes only -- like running fix_includes.py -s."""
infile = """\
@@ -3279,7 +3836,7 @@ The full include-list for dry_run:
"""
self.RegisterFileContents({'dry_run': infile})
num_modified_files = fix_includes.ProcessIWYUOutput(
- StringIO(iwyu_output), ['dry_run'], self.flags)
+ StringIO(iwyu_output), ['dry_run'], self.flags, None)
self.assertListEqual([], self.actual_after_contents)
self.assertEqual(1, num_modified_files)
@@ -3341,7 +3898,7 @@ template <typename T> class Baz;
namespace ns {
-
+///-
///+class NsFoo;
///+namespace ns2 { namespace ns3 { class NsBaz; } }
///+namespace ns2 { namespace ns3 { template <typename T> class NsBang; } }
@@ -3424,6 +3981,87 @@ namespace ns { namespace ns4 { class Baz; } }
self.RegisterFileContents({'add_fwd_declare_keep_iwyu_namespace': infile})
self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
+ def testBasedir(self):
+ self.flags.basedir = "/project/build/"
+ iwyu_output = """\
+../src/source.cc should add these lines:
+
+../src/source.cc should remove these lines:
+- #include <unused.h> // lines 1-1
+
+The full include-list for ../src/source.cc:
+#include <used.h>
+---
+"""
+ infile = """\
+#include <unused.h> ///-
+#include <used.h>
+
+int main() { return 0; }
+"""
+ self.RegisterFileContents({'/project/src/source.cc': infile})
+ self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
+
+ def testBasedirWithFilesToProcess(self):
+ self.flags.basedir = "/project/build/"
+ iwyu_output = """\
+../src/changed.cc should add these lines:
+
+../src/changed.cc should remove these lines:
+- #include <unused.h> // lines 1-1
+
+The full include-list for ../src/changed.cc:
+#include <used.h>
+---
+"""
+ changed_file = """\
+#include <unused.h> ///-
+#include <used.h>
+
+int main() { return 0; }
+"""
+ unchanged_file = """\
+#include <unused.h>
+#include <used.h>
+
+int main() { return 0; }
+"""
+
+ iwyu_output += iwyu_output.replace('changed.cc', 'unchanged.cc')
+
+ self.RegisterFileContents({
+ '/project/src/changed.cc': changed_file,
+ '/project/src/unchanged.cc': unchanged_file
+ })
+ self.ProcessAndTest(iwyu_output, cmdline_files=['/project/src/changed.cc'],
+ unedited_files=['/project/src/unchanged.cc'])
+
+ def testBasedirWithRelativeCmdlineFiles(self):
+ self.flags.basedir = "/project/build/"
+ iwyu_output = """\
+../src/changed.cc should add these lines:
+
+../src/changed.cc should remove these lines:
+- #include <unused.h> // lines 1-1
+
+The full include-list for ../src/changed.cc:
+#include <used.h>
+---
+"""
+ changed_file = """\
+#include <unused.h> ///-
+#include <used.h>
+
+int main() { return 0; }
+"""
+
+ self.RegisterFileContents({
+ # File path is normalized to absolute by ProcessIWYUOutput.
+ '/project/src/changed.cc': changed_file,
+ })
+ self.ProcessAndTest(iwyu_output, cmdline_files=['changed.cc'],
+ cwd='/project/src')
+
def testMain(self):
"""Make sure calling main doesn't crash. Inspired by a syntax-error bug."""
# Give an empty stdin so we don't actually try to parse anything.
@@ -3440,6 +4078,106 @@ namespace ns { namespace ns4 { class Baz; } }
self.assertRaises(SystemExit, fix_includes.main,
['fix_includes.py', '-s'])
+ def testReorderingInclusions(self):
+ """Show that the --reorder flag causes #includes to be sorted."""
+ infile = """\
+// namespace B
+namespace B { class BC; } // B
+// namespace A
+namespace A { class AC; } // A
+// b
+#include "b" // b
+// c
+#include <c> // c
+// a
+#include <a> // a
+// a
+#include "a" // a
+// asdf
+#ifdef asdf
+// x
+#include <x> // x
+// endif
+#endif
+"""
+ expected_output = """\
+// namespace B
+namespace B { class BC; } // B
+// namespace A
+namespace A { class AC; } // A
+// a
+#include <a> // a
+// c
+#include <c> // c
+// a
+#include "a" // a
+// b
+#include "b" // b
+// asdf
+#ifdef asdf
+// x
+#include <x> // x
+// endif
+#endif
+"""
+ self.RegisterFileContents({'inclusions_reordered.cc': infile})
+ self.flags.reorder = True
+ num_files_modified = fix_includes.SortIncludesInFiles(
+ ['inclusions_reordered.cc'], self.flags)
+ self.assertListEqual(expected_output.strip().split('\n'),
+ self.actual_after_contents)
+ self.assertEqual(1, num_files_modified)
+
+ def testNoReorderingInclusions(self):
+ """Show that the --noreorder flag causes #includes not to be sorted."""
+ infile = """\
+// namespace B
+namespace B { class BC; } // B
+// namespace A
+namespace A { class AC; } // A
+// b
+#include "b" // b
+// c
+#include <c> // c
+// a
+#include <a> // a
+// a
+#include "a" // a
+// asdf
+#ifdef asdf
+// x
+#include <x> // x
+// endif
+#endif
+"""
+ expected_output = """\
+// namespace B
+namespace B { class BC; } // B
+// namespace A
+namespace A { class AC; } // A
+// c
+#include <c> // c
+// a
+#include <a> // a
+// b
+#include "b" // b
+// a
+#include "a" // a
+// asdf
+#ifdef asdf
+// x
+#include <x> // x
+// endif
+#endif
+"""
+ self.RegisterFileContents({'inclusions_not_reordered.cc': infile})
+ self.flags.reorder = False
+ num_files_modified = fix_includes.SortIncludesInFiles(
+ ['inclusions_not_reordered.cc'], self.flags)
+ self.assertListEqual(expected_output.strip().split('\n'),
+ self.actual_after_contents)
+ self.assertEqual(1, num_files_modified)
+
class FileInfoTest(unittest.TestCase):
""" Unit test for file info detection """
diff --git a/gcc-8.intrinsics.imp b/gcc-8.intrinsics.imp
new file mode 100644
index 0000000..80b3edd
--- /dev/null
+++ b/gcc-8.intrinsics.imp
@@ -0,0 +1,60 @@
+# These mappings based on #error pragmas in the header files below in gcc 8.1.0
+# backwards compatibility tested on gcc 4.8.4, 4.9.3, 6.2.0, 7.3.0
+[
+ { include: ["<adxintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<avx2intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx5124fmapsintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<avx5124vnniwintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<avx512bitalgintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<avx512bwintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512cdintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512dqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512erintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512fintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512ifmaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512ifmavlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512pfintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmi2intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmi2vlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmiintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vbmivlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlbwintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vldqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vnniintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vnnivlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avx512vpopcntdqintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<avx512vpopcntdqvlintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<avxintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<bmi2intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<bmiintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<cetintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<clflushoptintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<clwbintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<fma4intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<fmaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<gfniintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<ia32intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<lwpintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<lzcntintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<movdirintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<pconfigintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<pkuintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<rdseedintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<rtmintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<shaintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<tbmintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<vpclmulqdqintrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<wbnoinvdintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<xopintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<xsavecintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<xsavesintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<xtestintrin.h>", private, "<immintrin.h>", public ] },
+# files that list two possible public headers
+ { include: ["<f16intrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<f16intrin.h>", private, "<immintrin.h>", public ] },
+ { include: ["<prfchwintrin.h>", private, "<x86intrin.h>", public ] },
+ { include: ["<prfchwintrin.h>", private, "<mm3dnow.h>", public ] },
+# one rule for backwards compatibility with gcc 6.1 and 6.2
+ { include: ["<pcommitintrin.h>", private, "<x86intrin.h>", public ] },
+]
diff --git a/gcc.stl.headers.imp b/gcc.stl.headers.imp
index b53e041..4cf858e 100644
--- a/gcc.stl.headers.imp
+++ b/gcc.stl.headers.imp
@@ -1,79 +1,199 @@
# GCC STL headers
[
- # ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include' {ext/,tr1/,}* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { include: ["<$2>", private, "<$1>", public ] },@' | grep -e bits/ -e tr1_impl/ | sort -u)
- # I removed a lot of 'meaningless' dependencies -- for instance,
- # <functional> //includes <bits/stringfwd.h>, but if someone is
- # using strings, <functional> isn't enough to satisfy iwyu.
- # We may need to add other dirs in future versions of gcc.
+ # Headers explicitly annotated with `@headername`
+ # ( cd /usr/include/c++/8 && grep -r headername | perl -nle 'm/^([^:]+).*@headername\{([^,]*)\}/ && print qq@ { include: ["<$1>", private, "<$2>", public ] },@' | sort -u )
+ { include: ["<backward/auto_ptr.h>", private, "<memory>", public ] },
+ { include: ["<backward/backward_warning.h>", private, "<iosfwd>", public ] },
+ { include: ["<backward/binders.h>", private, "<functional>", public ] },
{ include: ["<bits/algorithmfwd.h>", private, "<algorithm>", public ] },
+ { include: ["<bits/allocated_ptr.h>", private, "<memory>", public ] },
{ include: ["<bits/allocator.h>", private, "<memory>", public ] },
- { include: ["<bits/atomic_word.h>", private, "<ext/atomicity.h>", public ] },
- { include: ["<bits/basic_file.h>", private, "<fstream>", public ] },
+ { include: ["<bits/alloc_traits.h>", private, "<memory>", public ] },
+ { include: ["<bits/atomic_base.h>", private, "<atomic>", public ] },
+ { include: ["<bits/atomic_lockfree_defines.h>", private, "<atomic>", public ] },
{ include: ["<bits/basic_ios.h>", private, "<ios>", public ] },
+ { include: ["<bits/basic_ios.tcc>", private, "<ios>", public ] },
{ include: ["<bits/basic_string.h>", private, "<string>", public ] },
{ include: ["<bits/basic_string.tcc>", private, "<string>", public ] },
- { include: ["<bits/boost_sp_shared_count.h>", private, "<memory>", public ] },
- { include: ["<bits/c++io.h>", private, "<ext/stdio_sync_filebuf.h>", public ] },
- { include: ["<bits/c++config.h>", private, "<cstddef>", public ] },
+ { include: ["<bits/boost_concept_check.h>", private, "<iterator>", public ] },
+ { include: ["<bits/c++0x_warning.h>", private, "<iosfwd>", public ] },
{ include: ["<bits/char_traits.h>", private, "<string>", public ] },
- { include: ["<bits/cmath.tcc>", private, "<cmath>", public ] },
- { include: ["<bits/codecvt.h>", private, "<fstream>", public ] },
- { include: ["<bits/cxxabi_tweaks.h>", private, "<cxxabi.h>", public ] },
+ { include: ["<bits/codecvt.h>", private, "<locale>", public ] },
+ { include: ["<bits/concept_check.h>", private, "<iterator>", public ] },
+ { include: ["<bits/cpp_type_traits.h>", private, "<ext/type_traits>", public ] },
+ { include: ["<bits/cxxabi_forced.h>", private, "<cxxabi.h>", public ] },
{ include: ["<bits/deque.tcc>", private, "<deque>", public ] },
+ { include: ["<bits/exception_defines.h>", private, "<exception>", public ] },
+ { include: ["<bits/exception_ptr.h>", private, "<exception>", public ] },
+ { include: ["<bits/forward_list.h>", private, "<forward_list>", public ] },
+ { include: ["<bits/forward_list.tcc>", private, "<forward_list>", public ] },
+ { include: ["<bits/fs_dir.h>", private, "<filesystem>", public ] },
+ { include: ["<bits/fs_fwd.h>", private, "<filesystem>", public ] },
+ { include: ["<bits/fs_ops.h>", private, "<filesystem>", public ] },
+ { include: ["<bits/fs_path.h>", private, "<filesystem>", public ] },
{ include: ["<bits/fstream.tcc>", private, "<fstream>", public ] },
- { include: ["<bits/functional_hash.h>", private, "<unordered_map>", public ] },
- { include: ["<bits/gslice.h>", private, "<valarray>", public ] },
+ { include: ["<bits/functexcept.h>", private, "<exception>", public ] },
+ { include: ["<bits/functional_hash.h>", private, "<functional>", public ] },
{ include: ["<bits/gslice_array.h>", private, "<valarray>", public ] },
- { include: ["<bits/hashtable.h>", private, "<unordered_map>", public ] },
- { include: ["<bits/hashtable.h>", private, "<unordered_set>", public ] },
+ { include: ["<bits/gslice.h>", private, "<valarray>", public ] },
+ { include: ["<bits/hash_bytes.h>", private, "<functional>", public ] },
{ include: ["<bits/indirect_array.h>", private, "<valarray>", public ] },
- { include: ["<bits/ios_base.h>", private, "<iostream>", public ] },
+ { include: ["<bits/invoke.h>", private, "<functional>", public ] },
{ include: ["<bits/ios_base.h>", private, "<ios>", public ] },
- { include: ["<bits/ios_base.h>", private, "<iomanip>", public ] },
+ { include: ["<bits/istream.tcc>", private, "<istream>", public ] },
+ { include: ["<bits/list.tcc>", private, "<list>", public ] },
{ include: ["<bits/locale_classes.h>", private, "<locale>", public ] },
+ { include: ["<bits/locale_classes.tcc>", private, "<locale>", public ] },
+ { include: ["<bits/locale_conv.h>", private, "<locale>", public ] },
{ include: ["<bits/locale_facets.h>", private, "<locale>", public ] },
{ include: ["<bits/locale_facets_nonio.h>", private, "<locale>", public ] },
+ { include: ["<bits/locale_facets_nonio.tcc>", private, "<locale>", public ] },
+ { include: ["<bits/locale_facets.tcc>", private, "<locale>", public ] },
{ include: ["<bits/localefwd.h>", private, "<locale>", public ] },
{ include: ["<bits/mask_array.h>", private, "<valarray>", public ] },
- { include: ["<bits/ostream.tcc>", private, "<ostream>", public ] },
+ { include: ["<bits/memoryfwd.h>", private, "<memory>", public ] },
+ { include: ["<bits/move.h>", private, "<utility>", public ] },
+ { include: ["<bits/nested_exception.h>", private, "<exception>", public ] },
{ include: ["<bits/ostream_insert.h>", private, "<ostream>", public ] },
- { include: ["<bits/postypes.h>", private, "<iostream>", public ] },
+ { include: ["<bits/ostream.tcc>", private, "<ostream>", public ] },
+ { include: ["<bits/parse_numbers.h>", private, "<chrono>", public ] },
+ { include: ["<bits/postypes.h>", private, "<iosfwd>", public ] },
+ { include: ["<bits/predefined_ops.h>", private, "<algorithm>", public ] },
+ { include: ["<bits/ptr_traits.h>", private, "<memory>", public ] },
+ { include: ["<bits/quoted_string.h>", private, "<iomanip>", public ] },
+ { include: ["<bits/random.h>", private, "<random>", public ] },
+ { include: ["<bits/random.tcc>", private, "<random>", public ] },
+ { include: ["<bits/range_access.h>", private, "<iterator>", public ] },
+ { include: ["<bits/refwrap.h>", private, "<functional>", public ] },
+ { include: ["<bits/regex_automaton.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_automaton.tcc>", private, "<regex>", public ] },
+ { include: ["<bits/regex_compiler.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_compiler.tcc>", private, "<regex>", public ] },
+ { include: ["<bits/regex_constants.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_error.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_executor.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_executor.tcc>", private, "<regex>", public ] },
+ { include: ["<bits/regex.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_scanner.h>", private, "<regex>", public ] },
+ { include: ["<bits/regex_scanner.tcc>", private, "<regex>", public ] },
+ { include: ["<bits/regex.tcc>", private, "<regex>", public ] },
+ { include: ["<bits/shared_ptr_atomic.h>", private, "<memory>", public ] },
+ { include: ["<bits/shared_ptr_base.h>", private, "<memory>", public ] },
+ { include: ["<bits/shared_ptr.h>", private, "<memory>", public ] },
{ include: ["<bits/slice_array.h>", private, "<valarray>", public ] },
- { include: ["<bits/stl_algo.h>", private, "<algorithm>", public ] },
+ { include: ["<bits/specfun.h>", private, "<cmath>", public ] },
+ { include: ["<bits/sstream.tcc>", private, "<sstream>", public ] },
+ { include: ["<bits/std_function.h>", private, "<functional>", public ] },
+ { include: ["<bits/std_mutex.h>", private, "<mutex>", public ] },
{ include: ["<bits/stl_algobase.h>", private, "<algorithm>", public ] },
+ { include: ["<bits/stl_algo.h>", private, "<algorithm>", public ] },
{ include: ["<bits/stl_bvector.h>", private, "<vector>", public ] },
{ include: ["<bits/stl_construct.h>", private, "<memory>", public ] },
{ include: ["<bits/stl_deque.h>", private, "<deque>", public ] },
{ include: ["<bits/stl_function.h>", private, "<functional>", public ] },
{ include: ["<bits/stl_heap.h>", private, "<queue>", public ] },
- { include: ["<bits/stl_iterator.h>", private, "<iterator>", public ] },
{ include: ["<bits/stl_iterator_base_funcs.h>", private, "<iterator>", public ] },
{ include: ["<bits/stl_iterator_base_types.h>", private, "<iterator>", public ] },
+ { include: ["<bits/stl_iterator.h>", private, "<iterator>", public ] },
{ include: ["<bits/stl_list.h>", private, "<list>", public ] },
{ include: ["<bits/stl_map.h>", private, "<map>", public ] },
{ include: ["<bits/stl_multimap.h>", private, "<map>", public ] },
{ include: ["<bits/stl_multiset.h>", private, "<set>", public ] },
{ include: ["<bits/stl_numeric.h>", private, "<numeric>", public ] },
{ include: ["<bits/stl_pair.h>", private, "<utility>", public ] },
- { include: ["<bits/stl_pair.h>", private, "<tr1/utility>", public ] },
{ include: ["<bits/stl_queue.h>", private, "<queue>", public ] },
{ include: ["<bits/stl_raw_storage_iter.h>", private, "<memory>", public ] },
{ include: ["<bits/stl_relops.h>", private, "<utility>", public ] },
{ include: ["<bits/stl_set.h>", private, "<set>", public ] },
{ include: ["<bits/stl_stack.h>", private, "<stack>", public ] },
{ include: ["<bits/stl_tempbuf.h>", private, "<memory>", public ] },
- { include: ["<bits/stl_tree.h>", private, "<map>", public ] },
- { include: ["<bits/stl_tree.h>", private, "<set>", public ] },
{ include: ["<bits/stl_uninitialized.h>", private, "<memory>", public ] },
{ include: ["<bits/stl_vector.h>", private, "<vector>", public ] },
- { include: ["<bits/stream_iterator.h>", private, "<iterator>", public ] },
- { include: ["<bits/streambuf.tcc>", private, "<streambuf>", public ] },
{ include: ["<bits/streambuf_iterator.h>", private, "<iterator>", public ] },
+ { include: ["<bits/streambuf.tcc>", private, "<streambuf>", public ] },
+ { include: ["<bits/stream_iterator.h>", private, "<iterator>", public ] },
{ include: ["<bits/stringfwd.h>", private, "<string>", public ] },
+ { include: ["<bits/string_view.tcc>", private, "<string_view>", public ] },
+ { include: ["<bits/uniform_int_dist.h>", private, "<random>", public ] },
+ { include: ["<bits/unique_ptr.h>", private, "<memory>", public ] },
+ { include: ["<bits/unordered_map.h>", private, "<unordered_map>", public ] },
+ { include: ["<bits/unordered_set.h>", private, "<unordered_set>", public ] },
{ include: ["<bits/valarray_after.h>", private, "<valarray>", public ] },
{ include: ["<bits/valarray_array.h>", private, "<valarray>", public ] },
+ { include: ["<bits/valarray_array.tcc>", private, "<valarray>", public ] },
{ include: ["<bits/valarray_before.h>", private, "<valarray>", public ] },
{ include: ["<bits/vector.tcc>", private, "<vector>", public ] },
+ { include: ["<decimal/decimal.h>", private, "<decimal>", public ] },
+ { include: ["<experimental/bits/fs_dir.h>", private, "<experimental/filesystem>", public ] },
+ { include: ["<experimental/bits/fs_fwd.h>", private, "<experimental/filesystem>", public ] },
+ { include: ["<experimental/bits/fs_ops.h>", private, "<experimental/filesystem>", public ] },
+ { include: ["<experimental/bits/fs_path.h>", private, "<experimental/filesystem>", public ] },
+ { include: ["<experimental/bits/shared_ptr.h>", private, "<experimental/memory>", public ] },
+ { include: ["<experimental/bits/string_view.tcc>", private, "<experimental/string_view>", public ] },
+ { include: ["<ext/cast.h>", private, "<ext/pointer.h>", public ] },
+ { include: ["<ext/random.tcc>", private, "<ext/random>", public ] },
+ { include: ["<ext/rc_string_base.h>", private, "<ext/vstring.h>", public ] },
+ { include: ["<ext/ropeimpl.h>", private, "<ext/rope>", public ] },
+ { include: ["<ext/sso_string_base.h>", private, "<ext/vstring.h>", public ] },
+ { include: ["<ext/vstring_fwd.h>", private, "<ext/vstring.h>", public ] },
+ { include: ["<ext/vstring.tcc>", private, "<ext/vstring.h>", public ] },
+ { include: ["<ext/vstring_util.h>", private, "<ext/vstring.h>", public ] },
+ { include: ["<tr1/bessel_function.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/beta_function.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/ell_integral.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/exp_integral.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/functional_hash.h>", private, "<tr1/functional>", public ] },
+ { include: ["<tr1/gamma.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/hypergeometric.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/legendre_function.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/modified_bessel_func.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/poly_hermite.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/poly_laguerre.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/random.h>", private, "<tr1/random>", public ] },
+ { include: ["<tr1/random.tcc>", private, "<tr1/random>", public ] },
+ { include: ["<tr1/riemann_zeta.tcc>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/shared_ptr.h>", private, "<tr1/memory>", public ] },
+ { include: ["<tr1/special_function_util.h>", private, "<tr1/cmath>", public ] },
+ { include: ["<tr1/unordered_map.h>", private, "<tr1/unordered_map>", public ] },
+ { include: ["<tr1/unordered_set.h>", private, "<tr1/unordered_set>", public ] },
+ { include: ["<tr2/dynamic_bitset.tcc>", private, "<tr2/dynamic_bitset>", public ] },
+ # ( cd /usr/include/x86_64-linux-gnu/c++/8 && grep -r headername | perl -nle 'm/^([^:]+).*@headername\{([^,]*)\}/ && print qq@ { include: ["<$1>", private, "<$2>", public ] },@' | sort -u )
+ { include: ["<bits/basic_file.h>", private, "<ios>", public ] },
+ { include: ["<bits/c++allocator.h>", private, "<memory>", public ] },
+ { include: ["<bits/c++config.h>", private, "<iosfwd>", public ] },
+ { include: ["<bits/c++io.h>", private, "<ios>", public ] },
+ { include: ["<bits/c++locale.h>", private, "<locale>", public ] },
+ { include: ["<bits/cpu_defines.h>", private, "<iosfwd>", public ] },
+ { include: ["<bits/ctype_base.h>", private, "<locale>", public ] },
+ { include: ["<bits/ctype_inline.h>", private, "<locale>", public ] },
+ { include: ["<bits/error_constants.h>", private, "<system_error>", public ] },
+ { include: ["<bits/messages_members.h>", private, "<locale>", public ] },
+ { include: ["<bits/opt_random.h>", private, "<random>", public ] },
+ { include: ["<bits/os_defines.h>", private, "<iosfwd>", public ] },
+ { include: ["<bits/time_members.h>", private, "<locale>", public ] },
+ { include: ["<ext/opt_random.h>", private, "<ext/random>", public ] },
+ # ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include' {ext/,tr1/,}* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { include: ["<$2>", private, "<$1>", public ] },@' | grep -e bits/ -e tr1_impl/ | sort -u)
+ # I removed a lot of 'meaningless' dependencies -- for instance,
+ # <functional> //includes <bits/stringfwd.h>, but if someone is
+ # using strings, <functional> isn't enough to satisfy iwyu.
+ # We may need to add other dirs in future versions of gcc.
+ { include: ["<bits/atomic_word.h>", private, "<ext/atomicity.h>", public ] },
+ { include: ["<bits/basic_file.h>", private, "<fstream>", public ] },
+ { include: ["<bits/boost_sp_shared_count.h>", private, "<memory>", public ] },
+ { include: ["<bits/c++io.h>", private, "<ext/stdio_sync_filebuf.h>", public ] },
+ { include: ["<bits/c++config.h>", private, "<cstddef>", public ] },
+ { include: ["<bits/cmath.tcc>", private, "<cmath>", public ] },
+ { include: ["<bits/codecvt.h>", private, "<fstream>", public ] },
+ { include: ["<bits/cxxabi_tweaks.h>", private, "<cxxabi.h>", public ] },
+ { include: ["<bits/functional_hash.h>", private, "<unordered_map>", public ] },
+ { include: ["<bits/hashtable.h>", private, "<unordered_map>", public ] },
+ { include: ["<bits/hashtable.h>", private, "<unordered_set>", public ] },
+ { include: ["<bits/ios_base.h>", private, "<iostream>", public ] },
+ { include: ["<bits/ios_base.h>", private, "<iomanip>", public ] },
+ { include: ["<bits/postypes.h>", private, "<iostream>", public ] },
+ { include: ["<bits/stl_pair.h>", private, "<tr1/utility>", public ] },
+ { include: ["<bits/stl_tree.h>", private, "<map>", public ] },
+ { include: ["<bits/stl_tree.h>", private, "<set>", public ] },
{ include: ["<tr1_impl/array>", private, "<array>", public ] },
{ include: ["<tr1_impl/array>", private, "<tr1/array>", public ] },
{ include: ["<tr1_impl/boost_shared_ptr.h>", private, "<memory>", public ] },
@@ -114,12 +234,10 @@
{ include: ["<tr1_impl/unordered_set>", private, "<unordered_set>", public ] },
{ include: ["<tr1_impl/utility>", private, "<tr1/utility>", public ] },
{ include: ["<tr1_impl/utility>", private, "<utility>", public ] },
- { include: ["<bits/move.h>", private, "<utility>", public ] },
# Hash and hashtable-based containers.
{ include: ["<tr1_impl/functional_hash.h>", private, "<tr1/functional>", public ] },
{ include: ["<tr1_impl/functional_hash.h>", private, "<tr1/unordered_map>", public ] },
{ include: ["<tr1_impl/functional_hash.h>", private, "<tr1/unordered_set>", public ] },
- { include: ["<tr1/functional_hash.h>", private, "<tr1/functional>", public ] },
{ include: ["<tr1/functional_hash.h>", private, "<tr1/unordered_map>", public ] },
{ include: ["<tr1/functional_hash.h>", private, "<tr1/unordered_set>", public ] },
{ include: ["<tr1_impl/hashtable>", private, "<tr1/unordered_map>", public ] },
@@ -129,63 +247,23 @@
# All .tcc files are gcc internal-include files. We get them from
# ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep -R '^ *# *include.*tcc' * | perl -nle 'm/^([^:]+).*[<"]([^>"]+)[>"]/ && print qq@ { include: ["<$2>", private, "<$1>", public ] },@' | sort )
# I had to manually edit some of the entries to say the map-to is private.
- { include: ["<bits/basic_ios.tcc>", private, "<bits/basic_ios.h>", private ] },
- { include: ["<bits/basic_string.tcc>", private, "<string>", public ] },
{ include: ["<bits/cmath.tcc>", private, "<cmath>", public ] },
- { include: ["<bits/deque.tcc>", private, "<deque>", public ] },
- { include: ["<bits/fstream.tcc>", private, "<fstream>", public ] },
- { include: ["<bits/istream.tcc>", private, "<istream>", public ] },
- { include: ["<bits/list.tcc>", private, "<list>", public ] },
- { include: ["<bits/locale_classes.tcc>", private, "<bits/locale_classes.h>", private ] },
- { include: ["<bits/locale_facets.tcc>", private, "<bits/locale_facets.h>", private ] },
- { include: ["<bits/locale_facets_nonio.tcc>", private,
- "<bits/locale_facets_nonio.h>", private ] },
- { include: ["<bits/ostream.tcc>", private, "<ostream>", public ] },
- { include: ["<bits/sstream.tcc>", private, "<sstream>", public ] },
- { include: ["<bits/streambuf.tcc>", private, "<streambuf>", public ] },
- { include: ["<bits/valarray_array.tcc>", private, "<bits/valarray_array.h>", private ] },
- { include: ["<bits/vector.tcc>", private, "<vector>", public ] },
{ include: ["<debug/safe_iterator.tcc>", private, "<debug/safe_iterator.h>", public ] },
- { include: ["<tr1/bessel_function.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/beta_function.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/ell_integral.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/exp_integral.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/gamma.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/hypergeometric.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/legendre_function.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/modified_bessel_func.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/poly_hermite.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/poly_laguerre.tcc>", private, "<tr1/cmath>", public ] },
- { include: ["<tr1/riemann_zeta.tcc>", private, "<tr1/cmath>", public ] },
{ include: ["<tr1_impl/random.tcc>", private, "<tr1_impl/random>", private ] },
# Some bits->bits //includes: A few files in bits re-export
# symbols from other files in bits.
# ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include.*bits/' bits/* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { include: ["<$2>", private, "<$1>", private ] },@' | grep bits/ | sort -u)
# and carefully picked reasonable-looking results (algorithm
# *uses* pair but doesn't *re-export* pair, for instance).
- { include: ["<bits/boost_concept_check.h>", private,
- "<bits/concept_check.h>", private ] },
{ include: ["<bits/c++allocator.h>", private, "<bits/allocator.h>", private ] },
- { include: ["<bits/codecvt.h>", private, "<bits/locale_facets_nonio.h>", private ] },
{ include: ["<bits/ctype_base.h>", private, "<bits/locale_facets.h>", private ] },
{ include: ["<bits/ctype_inline.h>", private, "<bits/locale_facets.h>", private ] },
- { include: ["<bits/functexcept.h>", private, "<bits/stl_algobase.h>", private ] },
- { include: ["<bits/locale_classes.h>", private, "<bits/basic_ios.h>", private ] },
- { include: ["<bits/locale_facets.h>", private, "<bits/basic_ios.h>", private ] },
{ include: ["<bits/messages_members.h>", private,
"<bits/locale_facets_nonio.h>", private ] },
- { include: ["<bits/postypes.h>", private, "<bits/char_traits.h>", private ] },
- { include: ["<bits/slice_array.h>", private, "<bits/valarray_before.h>", private ] },
- { include: ["<bits/stl_construct.h>", private, "<bits/stl_tempbuf.h>", private ] },
{ include: ["<bits/stl_move.h>", private, "<bits/stl_algobase.h>", private ] },
- { include: ["<bits/stl_uninitialized.h>", private, "<bits/stl_tempbuf.h>", private ] },
- { include: ["<bits/stl_vector.h>", private, "<bits/stl_bvector.h>", private ] },
- { include: ["<bits/streambuf_iterator.h>", private, "<bits/basic_ios.h>", private ] },
# I don't think we want to be having people move to 'backward/'
# yet. (These hold deprecated STL classes that we still use
# actively.) These are the ones that turned up in an analysis of
- { include: ["<backward/auto_ptr.h>", private, "<memory>", public ] },
- { include: ["<backward/binders.h>", private, "<functional>", public ] },
{ include: ["<backward/hash_fun.h>", private, "<hash_map>", public ] },
{ include: ["<backward/hash_fun.h>", private, "<hash_set>", public ] },
{ include: ["<backward/hashtable.h>", private, "<hash_map>", public ] },
@@ -221,6 +299,5 @@
{ include: ["<streambuf>", public, "<ios>", public ] },
# The location of exception_defines.h varies by GCC version. It should
# never be included directly.
- { include: ["<bits/exception_defines.h>", private, "<exception>", public ] },
{ include: ["<exception_defines.h>", private, "<exception>", public ] },
]
diff --git a/gcc.symbols.imp b/gcc.symbols.imp
index 4ab9c57..86de72a 100644
--- a/gcc.symbols.imp
+++ b/gcc.symbols.imp
@@ -9,7 +9,7 @@
# equivalents.
# In each case, I ordered them so <sys/types.h> was first, if it was
# an option for this type. That's the preferred #include all else
-# equal. The visibility on the symbol-name is ignored; by convension
+# equal. The visibility on the symbol-name is ignored; by convention
# we always set it to private.
[
{ symbol: [ "blksize_t", private, "<sys/types.h>", public ] },
@@ -97,6 +97,7 @@
{ symbol: [ "size_t", private, "<stdlib.h>", public ] },
{ symbol: [ "size_t", private, "<string.h>", public ] },
{ symbol: [ "size_t", private, "<time.h>", public ] },
+ { symbol: [ "size_t", private, "<uchar.h>", public ] },
{ symbol: [ "size_t", private, "<wchar.h>", public ] },
# Macros that can be defined in more than one file, don't have the
# same __foo_defined guard that other types do, so the grep above
diff --git a/iwyu.cc b/iwyu.cc
index f0cab0c..5dbb34b 100644
--- a/iwyu.cc
+++ b/iwyu.cc
@@ -109,6 +109,7 @@
#include "iwyu_location_util.h"
#include "iwyu_output.h"
#include "iwyu_path_util.h"
+#include "iwyu_use_flags.h"
// This is needed for
// preprocessor_info().PublicHeaderIntendsToProvide(). Somehow IWYU
// removes it mistakenly.
@@ -1045,7 +1046,11 @@ class AstFlattenerVisitor : public BaseAstVisitor<AstFlattenerVisitor> {
NodeSet* node_set = &nodeset_decl_cache_[decl];
if (node_set->empty()) {
if (decl->isImplicit()) {
- TraverseImplicitDeclHelper(dyn_cast_or_null<FunctionDecl>(decl));
+ // TODO: For now, it is only working for functions. Check if it could
+ // make sense for other implicit decls too (e.g. BuiltinTemplateDecl)
+ if (FunctionDecl* func = DynCastFrom(decl)) {
+ TraverseImplicitDeclHelper(func);
+ }
} else {
TraverseDecl(decl);
}
@@ -1629,11 +1634,13 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
// Checkers, that tell iwyu_output about uses of symbols.
// We let, but don't require, subclasses to override these.
- // The comment, if not nullptr, is extra text that is included along
- // with the warning message that iwyu emits.
- virtual void ReportDeclUseWithComment(SourceLocation used_loc,
- const NamedDecl* used_decl,
- const char* comment) {
+ // The comment, if not nullptr, is extra text that is included along with
+ // the warning message that iwyu emits. The extra use flags is optional
+ // info that can be assigned to the use (see the UF_* constants)
+ virtual void ReportDeclUse(SourceLocation used_loc,
+ const NamedDecl* used_decl,
+ const char* comment = nullptr,
+ UseFlags extra_use_flags = 0) {
const NamedDecl* target_decl = used_decl;
// Sometimes a shadow decl comes between us and the 'real' decl.
@@ -1645,12 +1652,14 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
if (CanIgnoreDecl(target_decl))
return;
+ const UseFlags use_flags =
+ ComputeUseFlags(current_ast_node()) | extra_use_flags;
+
// Canonicalize the use location and report the use.
used_loc = GetCanonicalUseLocation(used_loc, target_decl);
const FileEntry* used_in = GetFileEntry(used_loc);
preprocessor_info().FileInfoFor(used_in)->ReportFullSymbolUse(
- used_loc, target_decl, ComputeUseFlags(current_ast_node()),
- comment);
+ used_loc, target_decl, use_flags, comment);
// Sometimes using a decl drags in a few other uses as well:
@@ -1668,8 +1677,7 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
= GetUsingDeclarationOf(used_decl,
GetDeclContext(current_ast_node()))) {
preprocessor_info().FileInfoFor(used_in)->ReportUsingDeclUse(
- used_loc, using_decl, ComputeUseFlags(current_ast_node()),
- "(for using decl)");
+ used_loc, using_decl, use_flags, "(for using decl)");
}
// For typedefs, the user of the type is sometimes the one
@@ -1694,8 +1702,7 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
// result in a recursive expansion. Note we are careful to
// recurse inside this class, and not go back to subclasses.
for (const Type* type : underlying_types)
- IwyuBaseAstVisitor<Derived>::ReportTypeUseWithComment(
- used_loc, type, nullptr);
+ IwyuBaseAstVisitor<Derived>::ReportTypeUse(used_loc, type);
}
}
}
@@ -1703,9 +1710,9 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
// The comment, if not nullptr, is extra text that is included along
// with the warning message that iwyu emits.
- virtual void ReportDeclForwardDeclareUseWithComment(SourceLocation used_loc,
- const NamedDecl* used_decl,
- const char* comment) {
+ virtual void ReportDeclForwardDeclareUse(SourceLocation used_loc,
+ const NamedDecl* used_decl,
+ const char* comment = nullptr) {
const NamedDecl* target_decl = used_decl;
// Sometimes a shadow decl comes between us and the 'real' decl.
@@ -1734,16 +1741,6 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
}
}
- // Like ReportDeclUse, but for the common case of no comment.
- void ReportDeclUse(SourceLocation used_loc, const NamedDecl* decl) {
- return ReportDeclUseWithComment(used_loc, decl, nullptr);
- }
-
- void ReportDeclForwardDeclareUse(SourceLocation used_loc,
- const NamedDecl* decl) {
- return ReportDeclForwardDeclareUseWithComment(used_loc, decl, nullptr);
- }
-
void ReportDeclsUse(SourceLocation used_loc,
const set<const NamedDecl*>& decls) {
for (const NamedDecl* decl : decls)
@@ -1754,9 +1751,8 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
// of the type being explicitly written in the source code or not.
// The comment, if not nullptr, is extra text that is included along
// with the warning message that iwyu emits.
- virtual void ReportTypeUseWithComment(SourceLocation used_loc,
- const Type* type,
- const char* comment) {
+ virtual void ReportTypeUse(SourceLocation used_loc, const Type* type,
+ const char* comment = nullptr) {
// TODO(csilvers): figure out if/when calling CanIgnoreType() is correct.
if (!type)
return;
@@ -1769,24 +1765,18 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
type = RemovePointersAndReferencesAsWritten(type);
if (const NamedDecl* decl = TypeToDeclAsWritten(type)) {
VERRS(6) << "(For pointer type " << PrintableType(type) << "):\n";
- IwyuBaseAstVisitor<Derived>::ReportDeclForwardDeclareUseWithComment(
- used_loc, decl, comment);
+ IwyuBaseAstVisitor<Derived>::ReportDeclForwardDeclareUse(used_loc, decl,
+ comment);
}
} else {
if (const NamedDecl* decl = TypeToDeclAsWritten(type)) {
decl = GetDefinitionAsWritten(decl);
VERRS(6) << "(For type " << PrintableType(type) << "):\n";
- IwyuBaseAstVisitor<Derived>::ReportDeclUseWithComment(
- used_loc, decl, comment);
+ IwyuBaseAstVisitor<Derived>::ReportDeclUse(used_loc, decl, comment);
}
}
}
- // Like ReportTypeUse, but for the common case of no comment.
- void ReportTypeUse(SourceLocation used_loc, const Type* type) {
- return ReportTypeUseWithComment(used_loc, type, nullptr);
- }
-
void ReportTypesUse(SourceLocation used_loc, const set<const Type*>& types) {
for (const Type* type : types)
ReportTypeUse(used_loc, type);
@@ -1899,8 +1889,7 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
!IsClassType(return_type));
if (is_responsible_for_return_type &&
!type_use_reported_in_visit_function_type) {
- ReportTypeUseWithComment(GetLocation(decl), return_type,
- "(for fn return type)");
+ ReportTypeUse(GetLocation(decl), return_type, "(for fn return type)");
}
// ...and non-explicit, one-arg ('autocast') constructor types.
@@ -1930,8 +1919,8 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
// full type for other reasons; that's just double-reporting.
if (current_ast_node()->in_forward_declare_context() ||
IsPointerOrReferenceAsWritten(param_type)) {
- ReportTypeUseWithComment(GetLocation(&param_tl), deref_param_type,
- "(for autocast)");
+ ReportTypeUse(GetLocation(&param_tl), deref_param_type,
+ "(for autocast)");
}
} else {
VERRS(6) << "WARNING: nullptr TypeSourceInfo for "
@@ -2486,8 +2475,7 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
if (CanIgnoreCurrentASTNode()) return true;
// ... only if this NewExpr involves a constructor call.
const Expr* initializer = expr->getInitializer();
- if (const CXXConstructExpr* cce =
- dyn_cast_or_null<CXXConstructExpr>(initializer)) {
+ if (const CXXConstructExpr* cce = DynCastFrom(initializer)) {
ReportIfReferenceVararg(cce->getArgs(),
cce->getNumArgs(),
cce->getConstructor());
@@ -2556,8 +2544,8 @@ class IwyuBaseAstVisitor : public BaseAstVisitor<Derived> {
bool VisitTemplateSpecializationType(
clang::TemplateSpecializationType* type) {
- if (CanIgnoreCurrentASTNode()) return true;
- if (CanIgnoreType(type)) return true;
+ if (CanIgnoreCurrentASTNode() || CanIgnoreType(type))
+ return true;
const NamedDecl* decl = TypeToDeclAsWritten(type);
@@ -2844,7 +2832,8 @@ class InstantiatedTemplateVisitor
// As in TraverseExpandedTemplateFunctionHelper, we ignore all AST nodes
// that will be reported when we traverse the uninstantiated type.
- if (const NamedDecl* type_decl_as_written = TypeToDeclAsWritten(type)) {
+ if (const NamedDecl* type_decl_as_written =
+ GetDefinitionAsWritten(TypeToDeclAsWritten(type))) {
AstFlattenerVisitor nodeset_getter(compiler());
nodes_to_ignore_ = nodeset_getter.GetNodesBelow(
const_cast<NamedDecl*>(type_decl_as_written));
@@ -2873,13 +2862,8 @@ class InstantiatedTemplateVisitor
string GetSymbolAnnotation() const override { return " in tpl"; }
- // We only care about types that would have been dependent in the
- // uninstantiated template: that is, SubstTemplateTypeParmType types
- // or types derived from them. We use nodes_to_ignore_ to select
- // down to those. Even amongst subst-type, we only want ones in the
- // resugar-map: the rest we have chosen to ignore for some reason.
bool CanIgnoreType(const Type* type) const override {
- if (nodes_to_ignore_.Contains(type))
+ if (!IsTypeInteresting(type) || !IsKnownTemplateParam(type))
return true;
// If we're a default template argument, we should ignore the type
@@ -2887,7 +2871,7 @@ class InstantiatedTemplateVisitor
// should not ignore it -- the caller is responsible for the type.
// This captures cases like hash_set<Foo>, where the caller is
// responsible for defining hash<Foo>.
- // SomeInstantiatedTemplateIntendsToProvide handles the case we
+ // IsProvidedByTemplate handles the case we
// have a templated class that #includes "foo.h" and has a
// scoped_ptr<Foo>: we say the templated class provides Foo, even
// though it's scoped_ptr.h that's actually trying to call
@@ -2895,14 +2879,24 @@ class InstantiatedTemplateVisitor
// TODO(csilvers): this isn't ideal: ideally we'd want
// 'TheInstantiatedTemplateForWhichTypeWasADefaultTemplateArgumentIntendsToProvide',
// but clang doesn't store that information.
- if (IsDefaultTemplateParameter(type))
- return SomeInstantiatedTemplateIntendsToProvide(type);
+ return IsDefaultTemplateParameter(type) && IsProvidedByTemplate(type);
+ }
+
+
+ bool IsTypeInteresting(const Type* type) const {
+ // We only care about types that would have been dependent in the
+ // uninstantiated template: that is, SubstTemplateTypeParmType types
+ // or types derived from them. We use nodes_to_ignore_ to select down
+ // to those.
+ return !nodes_to_ignore_.Contains(type);
+ }
- // If we're not in the resugar-map at all, we're not a type
- // corresponding to the template being instantiated, so we
- // can be ignored.
+ bool IsKnownTemplateParam(const Type* type) const {
+ // Among all subst-type params, we only want those in the resugar-map. If
+ // we're not in the resugar-map at all, we're not a type corresponding to
+ // the template being instantiated, so we can be ignored.
type = RemoveSubstTemplateTypeParm(type);
- return !ContainsKey(resugar_map_, type);
+ return ContainsKey(resugar_map_, type);
}
// We ignore function calls in nodes_to_ignore_, which were already
@@ -2919,31 +2913,32 @@ class InstantiatedTemplateVisitor
// provide" the decl, by #including the file that defines the decl
// (if templates call other templates, we have to find the right
// template).
- void ReportDeclUseWithComment(SourceLocation used_loc, const NamedDecl* decl,
- const char* comment) override {
+ void ReportDeclUse(SourceLocation used_loc, const NamedDecl* decl,
+ const char* comment = nullptr,
+ UseFlags extra_use_flags = 0) override {
const SourceLocation actual_used_loc = GetLocOfTemplateThatProvides(decl);
if (actual_used_loc.isValid()) {
// If a template is responsible for this decl, then we don't add
// it to the cache; the cache is only for decls that the
// original caller is responsible for.
- Base::ReportDeclUseWithComment(actual_used_loc, decl, comment);
+ Base::ReportDeclUse(actual_used_loc, decl, comment, extra_use_flags);
} else {
// Let all the currently active types and decls know about this
// report, so they can update their cache entries.
for (CacheStoringScope* storer : cache_storers_)
storer->NoteReportedDecl(decl);
- Base::ReportDeclUseWithComment(caller_loc(), decl, comment);
+ Base::ReportDeclUse(caller_loc(), decl, comment, extra_use_flags);
}
}
- void ReportTypeUseWithComment(SourceLocation used_loc, const Type* type,
- const char* comment) override {
+ void ReportTypeUse(SourceLocation used_loc, const Type* type,
+ const char* comment = nullptr) override {
// clang desugars template types, so Foo<MyTypedef>() gets turned
// into Foo<UnderlyingType>(). Try to convert back.
type = ResugarType(type);
for (CacheStoringScope* storer : cache_storers_)
storer->NoteReportedType(type);
- Base::ReportTypeUseWithComment(caller_loc(), type, comment);
+ Base::ReportTypeUse(caller_loc(), type, comment);
}
//------------------------------------------------------------
@@ -3021,8 +3016,9 @@ class InstantiatedTemplateVisitor
bool TraverseSubstTemplateTypeParmTypeHelper(
const clang::SubstTemplateTypeParmType* type) {
- if (CanIgnoreCurrentASTNode()) return true;
- if (CanIgnoreType(type)) return true;
+ if (CanIgnoreCurrentASTNode() || CanIgnoreType(type))
+ return true;
+
const Type* actual_type = ResugarType(type);
CHECK_(actual_type && "If !CanIgnoreType(), we should be resugar-able");
return TraverseType(QualType(actual_type, 0));
@@ -3050,8 +3046,8 @@ class InstantiatedTemplateVisitor
// instantiate a template type, the instantiation has type
// SubstTemplateTypeParmTypeLoc in the AST tree.
bool VisitSubstTemplateTypeParmType(clang::SubstTemplateTypeParmType* type) {
- if (CanIgnoreCurrentASTNode()) return true;
- if (CanIgnoreType(type)) return true;
+ if (CanIgnoreCurrentASTNode() || CanIgnoreType(type))
+ return true;
// Figure out how this type was actually written. clang always
// canonicalizes SubstTemplateTypeParmType, losing typedef info, etc.
@@ -3116,9 +3112,51 @@ class InstantiatedTemplateVisitor
// We attribute all uses in an instantiated template to the
// template's caller.
ReportTypeUse(caller_loc(), actual_type);
+
+ // Also report all previous explicit instantiations (declarations and
+ // definitions) as uses of the caller's location.
+ ReportExplicitInstantiations(actual_type);
+
return Base::VisitSubstTemplateTypeParmType(type);
}
+ bool VisitTemplateSpecializationType(TemplateSpecializationType* type) {
+ if (CanIgnoreCurrentASTNode())
+ return true;
+
+ CHECK_(current_ast_node()->GetAs<TemplateSpecializationType>() == type)
+ << "The current node must be equal to the template spec. type";
+
+ // Report previous explicit instantiations here, only if the type is needed
+ // fully.
+ if (!CanForwardDeclareType(current_ast_node()))
+ ReportExplicitInstantiations(type);
+
+ return Base::VisitTemplateSpecializationType(type);
+ }
+
+ void ReportExplicitInstantiations(const Type* type) {
+ const auto* decl = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
+ TypeToDeclAsWritten(type));
+
+ if (decl == nullptr)
+ return;
+
+ // Go through all previous redecls and filter out those that are not
+ // explicit template instantiations or already provided by the template.
+ for (const NamedDecl* redecl : decl->redecls()) {
+ if (!IsExplicitInstantiation(redecl) ||
+ !GlobalSourceManager()->isBeforeInTranslationUnit(
+ redecl->getLocation(), caller_loc()) ||
+ IsProvidedByTemplate(decl))
+ continue;
+
+ // Report the specific decl that points to the explicit instantiation
+ Base::ReportDeclUse(caller_loc(), redecl, "(for explicit instantiation)",
+ UF_ExplicitInstantiation);
+ }
+ }
+
// If constructing an object, check the type we're constructing.
// Normally we'd see that type later, when traversing the return
// type of the constructor-decl, but if we wait for that, we'll lose
@@ -3168,20 +3206,22 @@ class InstantiatedTemplateVisitor
ast_node != caller_ast_node_; ast_node = ast_node->parent()) {
if (preprocessor_info().PublicHeaderIntendsToProvide(
GetFileEntry(ast_node->GetLocation()),
- GetFileEntry(decl)))
+ GetFileEntry(decl->getLocation())))
return ast_node->GetLocation();
}
return SourceLocation(); // an invalid source-loc
}
- bool SomeInstantiatedTemplateIntendsToProvide(const NamedDecl* decl) const {
+ bool IsProvidedByTemplate(const NamedDecl* decl) const {
return GetLocOfTemplateThatProvides(decl).isValid();
}
- bool SomeInstantiatedTemplateIntendsToProvide(const Type* type) const {
+ bool IsProvidedByTemplate(const Type* type) const {
type = RemoveSubstTemplateTypeParm(type);
type = RemovePointersAndReferences(type); // get down to the decl
- if (const NamedDecl* decl = TypeToDeclAsWritten(type))
+ if (const NamedDecl* decl = TypeToDeclAsWritten(type)) {
+ decl = GetDefinitionAsWritten(decl);
return GetLocOfTemplateThatProvides(decl).isValid();
+ }
return true; // we always provide non-decl types like int, etc.
}
@@ -3306,9 +3346,18 @@ class InstantiatedTemplateVisitor
return true;
}
- const ClassTemplateSpecializationDecl* class_decl
- = DynCastFrom(TypeToDeclAsWritten(type));
- CHECK_(class_decl && "TemplateSpecializationType is not a TplSpecDecl?");
+ const NamedDecl* named_decl = TypeToDeclAsWritten(type);
+ const ClassTemplateSpecializationDecl* class_decl = DynCastFrom(named_decl);
+
+ // Bail out if we are not a proper class
+ if (class_decl == nullptr) {
+ // If the template specialization decl is not sugar for a class, we
+ // expect it to be another kind of template decl, like a built-in.
+ CHECK_(llvm::isa<clang::TemplateDecl>(named_decl))
+ << "TemplateSpecializationType has no decl of type TemplateDecl?";
+ return true;
+ }
+
if (ContainsKey(traversed_decls_, class_decl))
return true; // avoid recursion & repetition
traversed_decls_.insert(class_decl);
@@ -3732,11 +3781,20 @@ class IwyuAstConsumer
// template <class T> struct Foo;
// template<> struct Foo<int> { ... };
// we don't want iwyu to recommend removing the 'forward declare' of Foo.
+ //
+ // Additionally, this type of decl is also used to represent explicit template
+ // instantiations, in which case we want the full type, not only a forward
+ // declaration.
bool VisitClassTemplateSpecializationDecl(
clang::ClassTemplateSpecializationDecl* decl) {
if (CanIgnoreCurrentASTNode()) return true;
ClassTemplateDecl* specialized_decl = decl->getSpecializedTemplate();
- ReportDeclForwardDeclareUse(CurrentLoc(), specialized_decl);
+
+ if (IsExplicitInstantiation(decl))
+ ReportDeclUse(CurrentLoc(), specialized_decl);
+ else
+ ReportDeclForwardDeclareUse(CurrentLoc(), specialized_decl);
+
return Base::VisitClassTemplateSpecializationDecl(decl);
}
diff --git a/iwyu_ast_util.cc b/iwyu_ast_util.cc
index 4fe2dd0..7bdd3df 100644
--- a/iwyu_ast_util.cc
+++ b/iwyu_ast_util.cc
@@ -105,6 +105,7 @@ using clang::TemplateArgumentLoc;
using clang::TemplateDecl;
using clang::TemplateName;
using clang::TemplateParameterList;
+using clang::TemplateSpecializationKind;
using clang::TemplateSpecializationType;
using clang::TranslationUnitDecl;
using clang::Type;
@@ -120,7 +121,6 @@ using llvm::ArrayRef;
using llvm::PointerUnion;
using llvm::cast;
using llvm::dyn_cast;
-using llvm::dyn_cast_or_null;
using llvm::errs;
using llvm::isa;
using llvm::raw_string_ostream;
@@ -156,6 +156,13 @@ void DumpASTNode(llvm::raw_ostream& ostream, const ASTNode* node) {
}
}
+TemplateSpecializationKind GetTemplateSpecializationKind(const Decl* decl) {
+ if (const auto* record = dyn_cast<CXXRecordDecl>(decl)) {
+ return record->getTemplateSpecializationKind();
+ }
+ return clang::TSK_Undeclared;
+}
+
} // anonymous namespace
//------------------------------------------------------------
@@ -618,7 +625,7 @@ const RecordDecl* GetDefinitionForClass(const Decl* decl) {
const RecordDecl* as_record = DynCastFrom(decl);
const ClassTemplateDecl* as_tpl = DynCastFrom(decl);
if (as_tpl) { // Convert the template to its underlying class defn.
- as_record = dyn_cast_or_null<RecordDecl>(as_tpl->getTemplatedDecl());
+ as_record = DynCastFrom(as_tpl->getTemplatedDecl());
}
if (as_record) {
if (const RecordDecl* record_dfn = as_record->getDefinition()) {
@@ -943,12 +950,20 @@ bool IsFriendDecl(const Decl* decl) {
return decl->getFriendObjectKind() != Decl::FOK_None;
}
+bool IsExplicitInstantiation(const clang::Decl* decl) {
+ TemplateSpecializationKind kind = GetTemplateSpecializationKind(decl);
+ return kind == clang::TSK_ExplicitInstantiationDeclaration ||
+ kind == clang::TSK_ExplicitInstantiationDefinition;
+}
+
bool IsForwardDecl(const NamedDecl* decl) {
- if (const auto* record_decl = dyn_cast<RecordDecl>(decl)) {
+ if (const auto* record_decl = dyn_cast<CXXRecordDecl>(decl)) {
+
return (!record_decl->getName().empty() &&
!record_decl->isCompleteDefinition() &&
!record_decl->isEmbeddedInDeclarator() &&
- !IsFriendDecl(record_decl));
+ !IsFriendDecl(record_decl) &&
+ !IsExplicitInstantiation(record_decl));
}
return false;
diff --git a/iwyu_ast_util.h b/iwyu_ast_util.h
index 847c68e..67e038b 100644
--- a/iwyu_ast_util.h
+++ b/iwyu_ast_util.h
@@ -594,6 +594,10 @@ bool IsDefaultNewOrDelete(const clang::FunctionDecl* decl,
// Returns true if this decl is part of a friend decl.
bool IsFriendDecl(const clang::Decl* decl);
+// Returns true if this decl is an explicit template instantiation declaration
+// or definition.
+bool IsExplicitInstantiation(const clang::Decl* decl);
+
// Returns true if a named decl looks like a forward-declaration of a
// class (rather than a definition, a friend declaration, or an 'in
// place' declaration like 'struct Foo' in 'void MyFunc(struct Foo*);'
diff --git a/iwyu_driver.cc b/iwyu_driver.cc
index 7eea196..eaeba46 100644
--- a/iwyu_driver.cc
+++ b/iwyu_driver.cc
@@ -22,6 +22,7 @@
#include "llvm/ADT/ArrayRef.h" // IWYU pragma: keep
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/Triple.h"
+#include "llvm/Option/ArgList.h"
#include "llvm/Support/ErrorOr.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/FileSystem.h"
@@ -46,7 +47,6 @@ using clang::DiagnosticIDs;
using clang::DiagnosticOptions;
using clang::DiagnosticsEngine;
using clang::TextDiagnosticPrinter;
-using clang::driver::ArgStringList;
using clang::driver::Command;
using clang::driver::Compilation;
using clang::driver::Driver;
@@ -61,6 +61,7 @@ using llvm::StringRef;
using llvm::cast;
using llvm::errs;
using llvm::isa;
+using llvm::opt::ArgStringList;
using llvm::raw_svector_ostream;
using llvm::sys::getDefaultTargetTriple;
using std::set;
@@ -156,7 +157,6 @@ void ExpandArgv(int argc, const char **argv,
} // anonymous namespace
CompilerInstance* CreateCompilerInstance(int argc, const char **argv) {
- void* main_addr = (void*) (intptr_t) GetExecutablePath;
std::string path = GetExecutablePath(argv[0]);
IntrusiveRefCntPtr<DiagnosticOptions> diagnostic_options =
new DiagnosticOptions;
@@ -245,12 +245,6 @@ CompilerInstance* CreateCompilerInstance(int argc, const char **argv) {
if (!compiler->hasDiagnostics())
return nullptr;
- // Infer the builtin include path if unspecified.
- if (compiler->getHeaderSearchOpts().UseBuiltinIncludes &&
- compiler->getHeaderSearchOpts().ResourceDir.empty())
- compiler->getHeaderSearchOpts().ResourceDir =
- CompilerInvocation::GetResourcesPath(argv[0], main_addr);
-
return compiler;
}
diff --git a/iwyu_globals.cc b/iwyu_globals.cc
index 1fc30b9..02a2fe5 100644
--- a/iwyu_globals.cc
+++ b/iwyu_globals.cc
@@ -94,6 +94,8 @@ static void PrintHelp(const char* extra_msg) {
" --no_comments: do not add 'why' comments.\n"
" --no_fwd_decls: do not use forward declarations.\n"
" --verbose=<level>: the higher the level, the more output.\n"
+ " --quoted_includes_first: when sorting includes, place quoted\n"
+ " ones first.\n"
"\n"
"In addition to IWYU-specific options you can specify the following\n"
"options without -Xiwyu prefix:\n"
@@ -162,7 +164,8 @@ CommandlineFlags::CommandlineFlags()
prefix_header_include_policy(CommandlineFlags::kAdd),
pch_in_code(false),
no_comments(false),
- no_fwd_decls(false) {
+ no_fwd_decls(false),
+ quoted_includes_first(false) {
}
int CommandlineFlags::ParseArgv(int argc, char** argv) {
@@ -179,6 +182,7 @@ int CommandlineFlags::ParseArgv(int argc, char** argv) {
{"max_line_length", optional_argument, nullptr, 'l'},
{"no_comments", optional_argument, nullptr, 'o'},
{"no_fwd_decls", optional_argument, nullptr, 'f'},
+ {"quoted_includes_first", no_argument, nullptr, 'q' },
{nullptr, 0, nullptr, 0}
};
static const char shortopts[] = "d::p:v:c:m:n";
@@ -210,6 +214,7 @@ int CommandlineFlags::ParseArgv(int argc, char** argv) {
max_line_length = atoi(optarg);
CHECK_((max_line_length >= 0) && "Max line length must be positive");
break;
+ case 'q': quoted_includes_first = true; break;
case -1: return optind; // means 'no more input'
default:
PrintHelp("FATAL ERROR: unknown flag.");
diff --git a/iwyu_globals.h b/iwyu_globals.h
index 3a93bca..fa333fd 100644
--- a/iwyu_globals.h
+++ b/iwyu_globals.h
@@ -101,6 +101,7 @@ struct CommandlineFlags {
bool pch_in_code; // Treat the first seen include as a PCH. No short option.
bool no_comments; // Disable 'why' comments. No short option.
bool no_fwd_decls; // Disable forward declarations.
+ bool quoted_includes_first; // Place quoted includes first in sort order.
};
const CommandlineFlags& GlobalFlags();
diff --git a/iwyu_include_picker.cc b/iwyu_include_picker.cc
index 55da73a..be318e2 100644
--- a/iwyu_include_picker.cc
+++ b/iwyu_include_picker.cc
@@ -90,7 +90,7 @@ const IncludeMapEntry libc_symbol_map[] = {
// equivalents.
// In each case, I ordered them so <sys/types.h> was first, if it was
// an option for this type. That's the preferred #include all else
- // equal. The visibility on the symbol-name is ignored; by convension
+ // equal. The visibility on the symbol-name is ignored; by convention
// we always set it to kPrivate.
{ "blksize_t", kPrivate, "<sys/types.h>", kPublic },
{ "blkcnt_t", kPrivate, "<sys/stat.h>", kPublic },
@@ -179,6 +179,7 @@ const IncludeMapEntry libc_symbol_map[] = {
{ "size_t", kPrivate, "<stdlib.h>", kPublic },
{ "size_t", kPrivate, "<string.h>", kPublic },
{ "size_t", kPrivate, "<time.h>", kPublic },
+ { "size_t", kPrivate, "<uchar.h>", kPublic },
{ "size_t", kPrivate, "<wchar.h>", kPublic },
// Macros that can be defined in more than one file, don't have the
// same __foo_defined guard that other types do, so the grep above
@@ -548,80 +549,200 @@ const char* stdlib_cpp_public_headers[] = {
// Private -> public include mappings for GNU libstdc++
const IncludeMapEntry libstdcpp_include_map[] = {
- // ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include' {ext/,tr1/,}* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { "<$2>", kPrivate, "<$1>", kPublic },@' | grep -e bits/ -e tr1_impl/ | sort -u)
- // I removed a lot of 'meaningless' dependencies -- for instance,
- // <functional> #includes <bits/stringfwd.h>, but if someone is
- // using strings, <functional> isn't enough to satisfy iwyu.
- // We may need to add other dirs in future versions of gcc.
+ // cd /usr/include/c++/8 && grep -r headername | perl -nle 'm/^([^:]+).*@headername\{([^,]*)\}/ && print qq@ { "<$1>", kPrivate, "<$2>", kPublic },@' | sort -u
+ { "<backward/auto_ptr.h>", kPrivate, "<memory>", kPublic },
+ { "<backward/backward_warning.h>", kPrivate, "<iosfwd>", kPublic },
+ { "<backward/binders.h>", kPrivate, "<functional>", kPublic },
{ "<bits/algorithmfwd.h>", kPrivate, "<algorithm>", kPublic },
+ { "<bits/allocated_ptr.h>", kPrivate, "<memory>", kPublic },
{ "<bits/allocator.h>", kPrivate, "<memory>", kPublic },
- { "<bits/atomic_word.h>", kPrivate, "<ext/atomicity.h>", kPublic },
- { "<bits/basic_file.h>", kPrivate, "<fstream>", kPublic },
+ { "<bits/alloc_traits.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/atomic_base.h>", kPrivate, "<atomic>", kPublic },
+ { "<bits/atomic_lockfree_defines.h>", kPrivate, "<atomic>", kPublic },
{ "<bits/basic_ios.h>", kPrivate, "<ios>", kPublic },
+ { "<bits/basic_ios.tcc>", kPrivate, "<ios>", kPublic },
{ "<bits/basic_string.h>", kPrivate, "<string>", kPublic },
{ "<bits/basic_string.tcc>", kPrivate, "<string>", kPublic },
- { "<bits/boost_sp_shared_count.h>", kPrivate, "<memory>", kPublic },
- { "<bits/c++io.h>", kPrivate, "<ext/stdio_sync_filebuf.h>", kPublic },
- { "<bits/c++config.h>", kPrivate, "<cstddef>", kPublic },
+ { "<bits/boost_concept_check.h>", kPrivate, "<iterator>", kPublic },
+ { "<bits/c++0x_warning.h>", kPrivate, "<iosfwd>", kPublic },
{ "<bits/char_traits.h>", kPrivate, "<string>", kPublic },
- { "<bits/cmath.tcc>", kPrivate, "<cmath>", kPublic },
- { "<bits/codecvt.h>", kPrivate, "<fstream>", kPublic },
- { "<bits/cxxabi_tweaks.h>", kPrivate, "<cxxabi.h>", kPublic },
+ { "<bits/codecvt.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/concept_check.h>", kPrivate, "<iterator>", kPublic },
+ { "<bits/cpp_type_traits.h>", kPrivate, "<ext/type_traits>", kPublic },
+ { "<bits/cxxabi_forced.h>", kPrivate, "<cxxabi.h>", kPublic },
{ "<bits/deque.tcc>", kPrivate, "<deque>", kPublic },
+ { "<bits/exception_defines.h>", kPrivate, "<exception>", kPublic },
+ { "<bits/exception_ptr.h>", kPrivate, "<exception>", kPublic },
+ { "<bits/forward_list.h>", kPrivate, "<forward_list>", kPublic },
+ { "<bits/forward_list.tcc>", kPrivate, "<forward_list>", kPublic },
+ { "<bits/fs_dir.h>", kPrivate, "<filesystem>", kPublic },
+ { "<bits/fs_fwd.h>", kPrivate, "<filesystem>", kPublic },
+ { "<bits/fs_ops.h>", kPrivate, "<filesystem>", kPublic },
+ { "<bits/fs_path.h>", kPrivate, "<filesystem>", kPublic },
{ "<bits/fstream.tcc>", kPrivate, "<fstream>", kPublic },
- { "<bits/functional_hash.h>", kPrivate, "<unordered_map>", kPublic },
- { "<bits/gslice.h>", kPrivate, "<valarray>", kPublic },
+ { "<bits/functexcept.h>", kPrivate, "<exception>", kPublic },
+ { "<bits/functional_hash.h>", kPrivate, "<functional>", kPublic },
{ "<bits/gslice_array.h>", kPrivate, "<valarray>", kPublic },
- { "<bits/hashtable.h>", kPrivate, "<unordered_map>", kPublic },
- { "<bits/hashtable.h>", kPrivate, "<unordered_set>", kPublic },
+ { "<bits/gslice.h>", kPrivate, "<valarray>", kPublic },
+ { "<bits/hash_bytes.h>", kPrivate, "<functional>", kPublic },
{ "<bits/indirect_array.h>", kPrivate, "<valarray>", kPublic },
- { "<bits/ios_base.h>", kPrivate, "<iostream>", kPublic },
+ { "<bits/invoke.h>", kPrivate, "<functional>", kPublic },
{ "<bits/ios_base.h>", kPrivate, "<ios>", kPublic },
- { "<bits/ios_base.h>", kPrivate, "<iomanip>", kPublic },
+ { "<bits/istream.tcc>", kPrivate, "<istream>", kPublic },
+ { "<bits/list.tcc>", kPrivate, "<list>", kPublic },
{ "<bits/locale_classes.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/locale_classes.tcc>", kPrivate, "<locale>", kPublic },
+ { "<bits/locale_conv.h>", kPrivate, "<locale>", kPublic },
{ "<bits/locale_facets.h>", kPrivate, "<locale>", kPublic },
{ "<bits/locale_facets_nonio.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/locale_facets_nonio.tcc>", kPrivate, "<locale>", kPublic },
+ { "<bits/locale_facets.tcc>", kPrivate, "<locale>", kPublic },
{ "<bits/localefwd.h>", kPrivate, "<locale>", kPublic },
{ "<bits/mask_array.h>", kPrivate, "<valarray>", kPublic },
- { "<bits/ostream.tcc>", kPrivate, "<ostream>", kPublic },
+ { "<bits/memoryfwd.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/move.h>", kPrivate, "<utility>", kPublic },
+ { "<bits/nested_exception.h>", kPrivate, "<exception>", kPublic },
{ "<bits/ostream_insert.h>", kPrivate, "<ostream>", kPublic },
- { "<bits/postypes.h>", kPrivate, "<iostream>", kPublic },
+ { "<bits/ostream.tcc>", kPrivate, "<ostream>", kPublic },
+ { "<bits/parse_numbers.h>", kPrivate, "<chrono>", kPublic },
+ { "<bits/postypes.h>", kPrivate, "<iosfwd>", kPublic },
+ { "<bits/predefined_ops.h>", kPrivate, "<algorithm>", kPublic },
+ { "<bits/ptr_traits.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/quoted_string.h>", kPrivate, "<iomanip>", kPublic },
+ { "<bits/random.h>", kPrivate, "<random>", kPublic },
+ { "<bits/random.tcc>", kPrivate, "<random>", kPublic },
+ { "<bits/range_access.h>", kPrivate, "<iterator>", kPublic },
+ { "<bits/refwrap.h>", kPrivate, "<functional>", kPublic },
+ { "<bits/regex_automaton.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_automaton.tcc>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_compiler.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_compiler.tcc>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_constants.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_error.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_executor.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_executor.tcc>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_scanner.h>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex_scanner.tcc>", kPrivate, "<regex>", kPublic },
+ { "<bits/regex.tcc>", kPrivate, "<regex>", kPublic },
+ { "<bits/shared_ptr_atomic.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/shared_ptr_base.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/shared_ptr.h>", kPrivate, "<memory>", kPublic },
{ "<bits/slice_array.h>", kPrivate, "<valarray>", kPublic },
- { "<bits/stl_algo.h>", kPrivate, "<algorithm>", kPublic },
+ { "<bits/specfun.h>", kPrivate, "<cmath>", kPublic },
+ { "<bits/sstream.tcc>", kPrivate, "<sstream>", kPublic },
+ { "<bits/std_function.h>", kPrivate, "<functional>", kPublic },
+ { "<bits/std_mutex.h>", kPrivate, "<mutex>", kPublic },
{ "<bits/stl_algobase.h>", kPrivate, "<algorithm>", kPublic },
+ { "<bits/stl_algo.h>", kPrivate, "<algorithm>", kPublic },
{ "<bits/stl_bvector.h>", kPrivate, "<vector>", kPublic },
{ "<bits/stl_construct.h>", kPrivate, "<memory>", kPublic },
{ "<bits/stl_deque.h>", kPrivate, "<deque>", kPublic },
{ "<bits/stl_function.h>", kPrivate, "<functional>", kPublic },
{ "<bits/stl_heap.h>", kPrivate, "<queue>", kPublic },
- { "<bits/stl_iterator.h>", kPrivate, "<iterator>", kPublic },
{ "<bits/stl_iterator_base_funcs.h>", kPrivate, "<iterator>", kPublic },
{ "<bits/stl_iterator_base_types.h>", kPrivate, "<iterator>", kPublic },
+ { "<bits/stl_iterator.h>", kPrivate, "<iterator>", kPublic },
{ "<bits/stl_list.h>", kPrivate, "<list>", kPublic },
{ "<bits/stl_map.h>", kPrivate, "<map>", kPublic },
{ "<bits/stl_multimap.h>", kPrivate, "<map>", kPublic },
{ "<bits/stl_multiset.h>", kPrivate, "<set>", kPublic },
{ "<bits/stl_numeric.h>", kPrivate, "<numeric>", kPublic },
{ "<bits/stl_pair.h>", kPrivate, "<utility>", kPublic },
- { "<bits/stl_pair.h>", kPrivate, "<tr1/utility>", kPublic },
{ "<bits/stl_queue.h>", kPrivate, "<queue>", kPublic },
{ "<bits/stl_raw_storage_iter.h>", kPrivate, "<memory>", kPublic },
{ "<bits/stl_relops.h>", kPrivate, "<utility>", kPublic },
{ "<bits/stl_set.h>", kPrivate, "<set>", kPublic },
{ "<bits/stl_stack.h>", kPrivate, "<stack>", kPublic },
{ "<bits/stl_tempbuf.h>", kPrivate, "<memory>", kPublic },
- { "<bits/stl_tree.h>", kPrivate, "<map>", kPublic },
- { "<bits/stl_tree.h>", kPrivate, "<set>", kPublic },
{ "<bits/stl_uninitialized.h>", kPrivate, "<memory>", kPublic },
{ "<bits/stl_vector.h>", kPrivate, "<vector>", kPublic },
- { "<bits/stream_iterator.h>", kPrivate, "<iterator>", kPublic },
- { "<bits/streambuf.tcc>", kPrivate, "<streambuf>", kPublic },
{ "<bits/streambuf_iterator.h>", kPrivate, "<iterator>", kPublic },
+ { "<bits/streambuf.tcc>", kPrivate, "<streambuf>", kPublic },
+ { "<bits/stream_iterator.h>", kPrivate, "<iterator>", kPublic },
{ "<bits/stringfwd.h>", kPrivate, "<string>", kPublic },
+ { "<bits/string_view.tcc>", kPrivate, "<string_view>", kPublic },
+ { "<bits/uniform_int_dist.h>", kPrivate, "<random>", kPublic },
+ { "<bits/unique_ptr.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/unordered_map.h>", kPrivate, "<unordered_map>", kPublic },
+ { "<bits/unordered_set.h>", kPrivate, "<unordered_set>", kPublic },
{ "<bits/valarray_after.h>", kPrivate, "<valarray>", kPublic },
{ "<bits/valarray_array.h>", kPrivate, "<valarray>", kPublic },
+ { "<bits/valarray_array.tcc>", kPrivate, "<valarray>", kPublic },
{ "<bits/valarray_before.h>", kPrivate, "<valarray>", kPublic },
{ "<bits/vector.tcc>", kPrivate, "<vector>", kPublic },
+ { "<decimal/decimal.h>", kPrivate, "<decimal>", kPublic },
+ { "<experimental/bits/fs_dir.h>", kPrivate, "<experimental/filesystem>", kPublic },
+ { "<experimental/bits/fs_fwd.h>", kPrivate, "<experimental/filesystem>", kPublic },
+ { "<experimental/bits/fs_ops.h>", kPrivate, "<experimental/filesystem>", kPublic },
+ { "<experimental/bits/fs_path.h>", kPrivate, "<experimental/filesystem>", kPublic },
+ { "<experimental/bits/shared_ptr.h>", kPrivate, "<experimental/memory>", kPublic },
+ { "<experimental/bits/string_view.tcc>", kPrivate, "<experimental/string_view>", kPublic },
+ { "<ext/cast.h>", kPrivate, "<ext/pointer.h>", kPublic },
+ { "<ext/random.tcc>", kPrivate, "<ext/random>", kPublic },
+ { "<ext/rc_string_base.h>", kPrivate, "<ext/vstring.h>", kPublic },
+ { "<ext/ropeimpl.h>", kPrivate, "<ext/rope>", kPublic },
+ { "<ext/sso_string_base.h>", kPrivate, "<ext/vstring.h>", kPublic },
+ { "<ext/vstring_fwd.h>", kPrivate, "<ext/vstring.h>", kPublic },
+ { "<ext/vstring.tcc>", kPrivate, "<ext/vstring.h>", kPublic },
+ { "<ext/vstring_util.h>", kPrivate, "<ext/vstring.h>", kPublic },
+ { "<tr1/bessel_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/beta_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/ell_integral.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/exp_integral.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/functional_hash.h>", kPrivate, "<tr1/functional>", kPublic },
+ { "<tr1/gamma.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/hypergeometric.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/legendre_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/modified_bessel_func.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/poly_hermite.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/poly_laguerre.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/random.h>", kPrivate, "<tr1/random>", kPublic },
+ { "<tr1/random.tcc>", kPrivate, "<tr1/random>", kPublic },
+ { "<tr1/riemann_zeta.tcc>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/shared_ptr.h>", kPrivate, "<tr1/memory>", kPublic },
+ { "<tr1/special_function_util.h>", kPrivate, "<tr1/cmath>", kPublic },
+ { "<tr1/unordered_map.h>", kPrivate, "<tr1/unordered_map>", kPublic },
+ { "<tr1/unordered_set.h>", kPrivate, "<tr1/unordered_set>", kPublic },
+ { "<tr2/dynamic_bitset.tcc>", kPrivate, "<tr2/dynamic_bitset>", kPublic },
+ // cd /usr/include/x86_64-linux-gnu/c++/8 && grep -r headername | perl -nle 'm/^([^:]+).*@headername\{([^,]*)\}/ && print qq@ { "<$1>", kPrivate, "<$2>", kPublic },@' | sort -u
+ { "<bits/basic_file.h>", kPrivate, "<ios>", kPublic },
+ { "<bits/c++allocator.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/c++config.h>", kPrivate, "<iosfwd>", kPublic },
+ { "<bits/c++io.h>", kPrivate, "<ios>", kPublic },
+ { "<bits/c++locale.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/cpu_defines.h>", kPrivate, "<iosfwd>", kPublic },
+ { "<bits/ctype_base.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/ctype_inline.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/cxxabi_tweaks.h>", kPrivate, "<cxxabi.h>", kPublic },
+ { "<bits/error_constants.h>", kPrivate, "<system_error>", kPublic },
+ { "<bits/messages_members.h>", kPrivate, "<locale>", kPublic },
+ { "<bits/opt_random.h>", kPrivate, "<random>", kPublic },
+ { "<bits/os_defines.h>", kPrivate, "<iosfwd>", kPublic },
+ { "<bits/time_members.h>", kPrivate, "<locale>", kPublic },
+ { "<ext/opt_random.h>", kPrivate, "<ext/random>", kPublic },
+ // ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include' {ext/,tr1/,}* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { "<$2>", kPrivate, "<$1>", kPublic },@' | grep -e bits/ -e tr1_impl/ | sort -u)
+ // I removed a lot of 'meaningless' dependencies -- for instance,
+ // <functional> #includes <bits/stringfwd.h>, but if someone is
+ // using strings, <functional> isn't enough to satisfy iwyu.
+ // We may need to add other dirs in future versions of gcc.
+ { "<bits/atomic_word.h>", kPrivate, "<ext/atomicity.h>", kPublic },
+ { "<bits/basic_file.h>", kPrivate, "<fstream>", kPublic },
+ { "<bits/boost_sp_shared_count.h>", kPrivate, "<memory>", kPublic },
+ { "<bits/c++io.h>", kPrivate, "<ext/stdio_sync_filebuf.h>", kPublic },
+ { "<bits/c++config.h>", kPrivate, "<cstddef>", kPublic },
+ { "<bits/cmath.tcc>", kPrivate, "<cmath>", kPublic },
+ { "<bits/codecvt.h>", kPrivate, "<fstream>", kPublic },
+ { "<bits/cxxabi_tweaks.h>", kPrivate, "<cxxabi.h>", kPublic },
+ { "<bits/functional_hash.h>", kPrivate, "<unordered_map>", kPublic },
+ { "<bits/hashtable.h>", kPrivate, "<unordered_map>", kPublic },
+ { "<bits/hashtable.h>", kPrivate, "<unordered_set>", kPublic },
+ { "<bits/ios_base.h>", kPrivate, "<iostream>", kPublic },
+ { "<bits/ios_base.h>", kPrivate, "<iomanip>", kPublic },
+ { "<bits/postypes.h>", kPrivate, "<iostream>", kPublic },
+ { "<bits/stl_pair.h>", kPrivate, "<tr1/utility>", kPublic },
+ { "<bits/stl_tree.h>", kPrivate, "<map>", kPublic },
+ { "<bits/stl_tree.h>", kPrivate, "<set>", kPublic },
{ "<tr1_impl/array>", kPrivate, "<array>", kPublic },
{ "<tr1_impl/array>", kPrivate, "<tr1/array>", kPublic },
{ "<tr1_impl/boost_shared_ptr.h>", kPrivate, "<memory>", kPublic },
@@ -662,12 +783,10 @@ const IncludeMapEntry libstdcpp_include_map[] = {
{ "<tr1_impl/unordered_set>", kPrivate, "<unordered_set>", kPublic },
{ "<tr1_impl/utility>", kPrivate, "<tr1/utility>", kPublic },
{ "<tr1_impl/utility>", kPrivate, "<utility>", kPublic },
- { "<bits/move.h>", kPrivate, "<utility>", kPublic },
// Hash and hashtable-based containers.
{ "<tr1_impl/functional_hash.h>", kPrivate, "<tr1/functional>", kPublic },
{ "<tr1_impl/functional_hash.h>", kPrivate, "<tr1/unordered_map>", kPublic },
{ "<tr1_impl/functional_hash.h>", kPrivate, "<tr1/unordered_set>", kPublic },
- { "<tr1/functional_hash.h>", kPrivate, "<tr1/functional>", kPublic },
{ "<tr1/functional_hash.h>", kPrivate, "<tr1/unordered_map>", kPublic },
{ "<tr1/functional_hash.h>", kPrivate, "<tr1/unordered_set>", kPublic },
{ "<tr1_impl/hashtable>", kPrivate, "<tr1/unordered_map>", kPublic },
@@ -677,65 +796,23 @@ const IncludeMapEntry libstdcpp_include_map[] = {
// All .tcc files are gcc internal-include files. We get them from
// ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep -R '^ *# *include.*tcc' * | perl -nle 'm/^([^:]+).*[<"]([^>"]+)[>"]/ && print qq@ { "<$2>", kPrivate, "<$1>", kPublic },@' | sort )
// I had to manually edit some of the entries to say the map-to is private.
- { "<bits/basic_ios.tcc>", kPrivate, "<bits/basic_ios.h>", kPrivate },
- { "<bits/basic_string.tcc>", kPrivate, "<string>", kPublic },
{ "<bits/cmath.tcc>", kPrivate, "<cmath>", kPublic },
- { "<bits/deque.tcc>", kPrivate, "<deque>", kPublic },
- { "<bits/fstream.tcc>", kPrivate, "<fstream>", kPublic },
- { "<bits/istream.tcc>", kPrivate, "<istream>", kPublic },
- { "<bits/list.tcc>", kPrivate, "<list>", kPublic },
- { "<bits/locale_classes.tcc>", kPrivate,
- "<bits/locale_classes.h>", kPrivate },
- { "<bits/locale_facets.tcc>", kPrivate, "<bits/locale_facets.h>", kPrivate },
- { "<bits/locale_facets_nonio.tcc>", kPrivate,
- "<bits/locale_facets_nonio.h>", kPrivate },
- { "<bits/ostream.tcc>", kPrivate, "<ostream>", kPublic },
- { "<bits/sstream.tcc>", kPrivate, "<sstream>", kPublic },
- { "<bits/streambuf.tcc>", kPrivate, "<streambuf>", kPublic },
- { "<bits/valarray_array.tcc>", kPrivate,
- "<bits/valarray_array.h>", kPrivate },
- { "<bits/vector.tcc>", kPrivate, "<vector>", kPublic },
{ "<debug/safe_iterator.tcc>", kPrivate, "<debug/safe_iterator.h>", kPublic },
- { "<tr1/bessel_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/beta_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/ell_integral.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/exp_integral.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/gamma.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/hypergeometric.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/legendre_function.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/modified_bessel_func.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/poly_hermite.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/poly_laguerre.tcc>", kPrivate, "<tr1/cmath>", kPublic },
- { "<tr1/riemann_zeta.tcc>", kPrivate, "<tr1/cmath>", kPublic },
{ "<tr1_impl/random.tcc>", kPrivate, "<tr1_impl/random>", kPrivate },
// Some bits->bits #includes: A few files in bits re-export
// symbols from other files in bits.
// ( cd /usr/crosstool/v12/gcc-4.3.1-glibc-2.3.6-grte/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/include/c++/4.3.1 && grep '^ *# *include.*bits/' bits/* | perl -nle 'm/^([^:]+).*<([^>]+)>/ && print qq@ { "<$2>", kPrivate, "<$1>", kPrivate },@' | grep bits/ | sort -u)
// and carefully picked reasonable-looking results (algorithm
// *uses* pair but doesn't *re-export* pair, for instance).
- { "<bits/boost_concept_check.h>", kPrivate,
- "<bits/concept_check.h>", kPrivate },
{ "<bits/c++allocator.h>", kPrivate, "<bits/allocator.h>", kPrivate },
- { "<bits/codecvt.h>", kPrivate, "<bits/locale_facets_nonio.h>", kPrivate },
{ "<bits/ctype_base.h>", kPrivate, "<bits/locale_facets.h>", kPrivate },
{ "<bits/ctype_inline.h>", kPrivate, "<bits/locale_facets.h>", kPrivate },
- { "<bits/functexcept.h>", kPrivate, "<bits/stl_algobase.h>", kPrivate },
- { "<bits/locale_classes.h>", kPrivate, "<bits/basic_ios.h>", kPrivate },
- { "<bits/locale_facets.h>", kPrivate, "<bits/basic_ios.h>", kPrivate },
{ "<bits/messages_members.h>", kPrivate,
"<bits/locale_facets_nonio.h>", kPrivate },
- { "<bits/postypes.h>", kPrivate, "<bits/char_traits.h>", kPrivate },
- { "<bits/slice_array.h>", kPrivate, "<bits/valarray_before.h>", kPrivate },
- { "<bits/stl_construct.h>", kPrivate, "<bits/stl_tempbuf.h>", kPrivate },
{ "<bits/stl_move.h>", kPrivate, "<bits/stl_algobase.h>", kPrivate },
- { "<bits/stl_uninitialized.h>", kPrivate, "<bits/stl_tempbuf.h>", kPrivate },
- { "<bits/stl_vector.h>", kPrivate, "<bits/stl_bvector.h>", kPrivate },
- { "<bits/streambuf_iterator.h>", kPrivate, "<bits/basic_ios.h>", kPrivate },
// I don't think we want to be having people move to 'backward/'
// yet. (These hold deprecated STL classes that we still use
// actively.) These are the ones that turned up in an analysis of
- { "<backward/auto_ptr.h>", kPrivate, "<memory>", kPublic },
- { "<backward/binders.h>", kPrivate, "<functional>", kPublic },
{ "<backward/hash_fun.h>", kPrivate, "<hash_map>", kPublic },
{ "<backward/hash_fun.h>", kPrivate, "<hash_set>", kPublic },
{ "<backward/hashtable.h>", kPrivate, "<hash_map>", kPublic },
@@ -771,7 +848,6 @@ const IncludeMapEntry libstdcpp_include_map[] = {
{ "<streambuf>", kPublic, "<ios>", kPublic },
// The location of exception_defines.h varies by GCC version. It should
// never be included directly.
- { "<bits/exception_defines.h>", kPrivate, "<exception>", kPublic },
{ "<exception_defines.h>", kPrivate, "<exception>", kPublic },
};
diff --git a/iwyu_location_util.cc b/iwyu_location_util.cc
index aa00ac7..31374ad 100644
--- a/iwyu_location_util.cc
+++ b/iwyu_location_util.cc
@@ -82,14 +82,14 @@ SourceLocation GetLocation(const clang::Decl* decl) {
// return the member loc. Otherwise, we have to guess if the entire
// member-expression (all of 'b.m') is in a macro or not. We look at
// getMemberLoc(), the start of the member ('m') , and
-// getBase()->getLocEnd(), the end of the base ('b'). If they're both
+// getBase()->getEndLoc(), the end of the base ('b'). If they're both
// on the same line of the same file, then the . or -> must be there
// too, and return that as the location. Otherwise, we assume that
// one or the other is in a macro, but the . or -> is not, and use the
// instantiation (not spelling) location of the macro.
static SourceLocation GetMemberExprLocation(const MemberExpr* member_expr) {
const SourceLocation member_start = member_expr->getMemberLoc();
- const SourceLocation base_end = member_expr->getBase()->getLocEnd();
+ const SourceLocation base_end = member_expr->getBase()->getEndLoc();
if (member_expr->isImplicitAccess() || base_end.isInvalid())
return member_start;
@@ -148,7 +148,7 @@ SourceLocation GetLocation(const clang::Stmt* stmt) {
stmt = unary_op->getSubExpr()->IgnoreParenImpCasts();
}
- return stmt->getLocStart();
+ return stmt->getBeginLoc();
}
SourceLocation GetLocation(const clang::TypeLoc* typeloc) {
diff --git a/iwyu_output.cc b/iwyu_output.cc
index 97a370b..797c4d3 100644
--- a/iwyu_output.cc
+++ b/iwyu_output.cc
@@ -237,12 +237,12 @@ string GetShortNameAsString(const clang::NamedDecl* named_decl) {
// Holds information about a single full or fwd-decl use of a symbol.
OneUse::OneUse(const NamedDecl* decl, SourceLocation use_loc,
- OneUse::UseKind use_kind, UseFlags flags,
- const char* comment)
+ SourceLocation decl_loc, OneUse::UseKind use_kind,
+ UseFlags flags, const char* comment)
: symbol_name_(internal::GetQualifiedNameAsString(decl)),
short_symbol_name_(internal::GetShortNameAsString(decl)),
decl_(decl),
- decl_loc_(GetInstantiationLoc(GetLocation(decl))),
+ decl_loc_(GetInstantiationLoc(decl_loc)),
decl_file_(GetFileEntry(decl_loc_)),
decl_filepath_(GetFilePath(decl_file_)),
use_loc_(use_loc),
@@ -577,15 +577,23 @@ void IwyuFileInfo::ReportFullSymbolUse(SourceLocation use_loc,
UseFlags flags,
const char* comment) {
if (decl) {
- // Since we need the full symbol, we need the decl's definition-site.
- // But only if we're not defining the function, in which case we want to use
- // all its preceding declarations, and not try to canonicalize.
- if (!(flags & UF_FunctionDfn)) {
- decl = GetDefinitionAsWritten(decl);
+ const NamedDecl* report_decl;
+ SourceLocation report_decl_loc;
+
+ if ((flags & (UF_FunctionDfn | UF_ExplicitInstantiation)) == 0) {
+ // Since we need the full symbol, we need the decl's definition-site too.
+ // Also, by default we canonicalize the location, using GetLocation.
+ report_decl = GetDefinitionAsWritten(decl);
+ report_decl_loc = GetLocation(report_decl);
+ } else {
+ // However, if we're defining the function or we are targeting an explicit
+ // instantiation, we want to use it as-is and not try to canonicalize at all.
+ report_decl = decl;
+ report_decl_loc = decl->getLocation();
}
- symbol_uses_.push_back(OneUse(decl, use_loc, OneUse::kFullUse,
- flags, comment));
+ symbol_uses_.push_back(OneUse(report_decl, use_loc, report_decl_loc,
+ OneUse::kFullUse, flags, comment));
LogSymbolUse("Marked full-info use of decl", symbol_uses_.back());
}
}
@@ -630,8 +638,8 @@ void IwyuFileInfo::ReportForwardDeclareUse(SourceLocation use_loc,
// combines friend decls with true forward-declare decls. If that
// happened here, replace the friend with a real fwd decl.
decl = GetNonfriendClassRedecl(decl);
- symbol_uses_.push_back(OneUse(decl, use_loc, OneUse::kForwardDeclareUse,
- flags, comment));
+ symbol_uses_.push_back(OneUse(decl, use_loc, GetLocation(decl),
+ OneUse::kForwardDeclareUse, flags, comment));
LogSymbolUse("Marked fwd-decl use of decl", symbol_uses_.back());
}
@@ -1120,16 +1128,27 @@ void ProcessFullUse(OneUse* use,
}
}
- // (B3) Discard symbol uses for builtin symbols, including new/delete.
- // TODO(csilvers): we could use getBuiltinID(), but it returns
- // non-zero for things like malloc. Figure out how to use it.
- if (const FunctionDecl* fn_decl = DynCastFrom(use->decl())) {
- if (StartsWith(use->symbol_name(), "__builtin_")) {
+ // (B3) Discard symbol uses for builtin symbols, including new/delete and
+ // template builtins.
+ if (isa<clang::BuiltinTemplateDecl>(use->decl())) {
+ VERRS(6) << "Ignoring use of " << use->symbol_name()
+ << " (" << use->PrintableUseLoc() << "): built-in template\n";
+ use->set_ignore_use();
+ return;
+ }
+ // A compiler builtin without a predefined header file (e.g. __builtin_..)
+ if (const clang::IdentifierInfo* iden = use->decl()->getIdentifier()) {
+ if (iden->getBuiltinID() != 0 &&
+ !clang::Builtin::Context::isBuiltinFunc(use->symbol_name().c_str())) {
VERRS(6) << "Ignoring use of " << use->symbol_name()
<< " (" << use->PrintableUseLoc() << "): built-in function\n";
use->set_ignore_use();
return;
}
+ }
+ // Special case for operators new/delete: Only treated as built-in if they
+ // are the default, non-placement versions.
+ if (const FunctionDecl* fn_decl = DynCastFrom(use->decl())) {
const string dfn_file = GetFilePath(fn_decl);
if (IsDefaultNewOrDelete(fn_decl, ConvertToQuotedInclude(dfn_file))) {
VERRS(6) << "Ignoring use of " << use->symbol_name()
@@ -1774,29 +1793,49 @@ OutputLine PrintableIncludeOrForwardDeclareLine(
GetSymbolsSortedByFrequency(line.symbol_counts()));
}
-typedef pair<int, string> LineSortKey;
+enum class LineSortOrdinal {
+ PrecompiledHeader,
+ AssociatedHeader,
+ AssociatedInlineDefinitions,
+ QuotedInclude,
+ CHeader,
+ CppHeader,
+ OtherHeader,
+ ForwardDeclaration
+};
+
+using LineSortKey = pair<LineSortOrdinal, string>;
+
+LineSortOrdinal GetLineSortOrdinal(const OneIncludeOrForwardDeclareLine& line,
+ const set<string>& associated_quoted_includes,
+ const IwyuFileInfo* file_info) {
+ if (!line.IsIncludeLine())
+ return LineSortOrdinal::ForwardDeclaration;
+ if (file_info && file_info->is_pch_in_code())
+ return LineSortOrdinal::PrecompiledHeader;
+
+ const std::string quoted_include = line.quoted_include();
+ if (ContainsKey(associated_quoted_includes, quoted_include)) {
+ if (EndsWith(quoted_include, "-inl.h\""))
+ return LineSortOrdinal::AssociatedInlineDefinitions;
+ return LineSortOrdinal::AssociatedHeader;
+ }
+
+ if (GlobalFlags().quoted_includes_first && EndsWith(quoted_include, "\""))
+ return LineSortOrdinal::QuotedInclude;
+ if (EndsWith(quoted_include, ".h>"))
+ return LineSortOrdinal::CHeader;
+ if (EndsWith(quoted_include, ">"))
+ return LineSortOrdinal::CppHeader;
+ return LineSortOrdinal::OtherHeader;
+}
-// The sort key of an include/forward-declare line is an (int, string)
-// pair. The string is always the line itself. The int is a category:
-// 0: PCH in code, 1: associated .h, 2: associated -inl.h, 3: C header,
-// 4: c++ header, 5: other header, 6: forward-declare.
+// The sort key of an include/forward-declare line is a (LineSortOrdinal, string)
+// pair. The string is always the line itself.
LineSortKey GetSortKey(const OneIncludeOrForwardDeclareLine& line,
const set<string>& associated_quoted_includes,
const IwyuFileInfo* file_info) {
- if (!line.IsIncludeLine())
- return LineSortKey(6, line.line());
- if (file_info && file_info->is_pch_in_code())
- return LineSortKey(0, line.line());
- if (ContainsKey(associated_quoted_includes, line.quoted_include())) {
- if (EndsWith(line.quoted_include(), "-inl.h\""))
- return LineSortKey(2, line.line());
- return LineSortKey(1, line.line());
- }
- if (EndsWith(line.quoted_include(), ".h>"))
- return LineSortKey(3, line.line());
- if (EndsWith(line.quoted_include(), ">"))
- return LineSortKey(4, line.line());
- return LineSortKey(5, line.line());
+ return LineSortKey(GetLineSortOrdinal(line, associated_quoted_includes, file_info), line.line());
}
// filename is "this" filename: the file being emitted.
diff --git a/iwyu_output.h b/iwyu_output.h
index 3aed01d..719f821 100644
--- a/iwyu_output.h
+++ b/iwyu_output.h
@@ -50,6 +50,7 @@ class OneUse {
OneUse(const clang::NamedDecl* decl,
clang::SourceLocation use_loc,
+ clang::SourceLocation decl_loc,
UseKind use_kind,
UseFlags flags,
const char* comment);
diff --git a/iwyu_preprocessor.cc b/iwyu_preprocessor.cc
index 00bcb32..91ea106 100644
--- a/iwyu_preprocessor.cc
+++ b/iwyu_preprocessor.cc
@@ -654,7 +654,8 @@ void IwyuPreprocessorInfo::InclusionDirective(
const FileEntry* file,
StringRef search_path,
StringRef relative_path,
- const clang::Module* imported) {
+ const clang::Module* imported,
+ SrcMgr::CharacteristicKind file_type) {
include_filename_loc_ = filename_range.getBegin();
}
diff --git a/iwyu_preprocessor.h b/iwyu_preprocessor.h
index 47fa79f..85c6e98 100644
--- a/iwyu_preprocessor.h
+++ b/iwyu_preprocessor.h
@@ -199,7 +199,8 @@ class IwyuPreprocessorInfo : public clang::PPCallbacks,
const clang::FileEntry* file,
llvm::StringRef search_path,
llvm::StringRef relative_path,
- const clang::Module* imported) override;
+ const clang::Module* imported,
+ clang::SrcMgr::CharacteristicKind file_type) override;
void FileChanged(clang::SourceLocation loc, FileChangeReason reason,
clang::SrcMgr::CharacteristicKind file_type,
diff --git a/iwyu_tool.py b/iwyu_tool.py
index efda8c1..bdada75 100755
--- a/iwyu_tool.py
+++ b/iwyu_tool.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+from __future__ import print_function
+
""" Driver to consume a Clang compilation database and invoke IWYU.
Example usage with CMake:
@@ -21,17 +23,14 @@ See iwyu_tool.py -h for more details on command-line arguments.
"""
import os
+import re
import sys
import json
+import time
+import shlex
import argparse
+import tempfile
import subprocess
-import re
-import multiprocessing
-
-
-def iwyu_formatter(output):
- """ Process iwyu's output, basically a no-op. """
- print('\n'.join(output))
CORRECT_RE = re.compile(r'^\((.*?) has correct #includes/fwd-decls\)$')
@@ -47,11 +46,14 @@ GENERAL, ADD, REMOVE, LIST = range(4)
def clang_formatter(output):
""" Process iwyu's output into something clang-like. """
+ formatted = []
+
state = (GENERAL, None)
- for line in output:
+ for line in output.splitlines():
match = CORRECT_RE.match(line)
if match:
- print('%s:1:1: note: #includes/fwd-decls are correct' % match.groups(1))
+ formatted.append('%s:1:1: note: #includes/fwd-decls are correct' %
+ match.groups(1))
continue
match = SHOULD_ADD_RE.match(line)
if match:
@@ -69,125 +71,213 @@ def clang_formatter(output):
elif not line.strip():
continue
elif state[0] == GENERAL:
- print(line)
+ formatted.append(line)
elif state[0] == ADD:
- print('%s:1:1: error: add the following line' % state[1])
- print(line)
+ formatted.append('%s:1:1: error: add the following line' % state[1])
+ formatted.append(line)
elif state[0] == REMOVE:
match = LINES_RE.match(line)
line_no = match.group(2) if match else '1'
- print('%s:%s:1: error: remove the following line' % (state[1], line_no))
- print(match.group(1))
+ formatted.append('%s:%s:1: error: remove the following line' %
+ (state[1], line_no))
+ formatted.append(match.group(1))
+
+ return os.linesep.join(formatted)
DEFAULT_FORMAT = 'iwyu'
FORMATTERS = {
- 'iwyu': iwyu_formatter,
+ 'iwyu': lambda output: output,
'clang': clang_formatter
}
-def get_output(cwd, command):
- """ Run the given command and return its output as a string. """
- process = subprocess.Popen(command,
- cwd=cwd,
- shell=True,
- stdout=subprocess.PIPE,
- stderr=subprocess.STDOUT)
- return process.communicate()[0].decode("utf-8").splitlines()
+def find_include_what_you_use():
+ """ Find IWYU executable and return its full pathname. """
+ if 'IWYU_BINARY' in os.environ:
+ return os.environ.get('IWYU_BINARY')
-def run_iwyu(dbentry, iwyu_args, verbose):
- """ Rewrite compile_command to an IWYU command, and run it. """
- cwd = dbentry['directory']
+ # TODO: Investigate using shutil.which when Python 2 has passed away.
+ executable_name = 'include-what-you-use'
+ if sys.platform.startswith('win'):
+ executable_name += '.exe'
- if 'arguments' in dbentry:
- # arguments is a command-line in list form
- arguments = dbentry['arguments']
- compile_command, compile_args = arguments[0], arguments[1:]
- compile_args = ' '.join(compile_args)
- elif 'command' in dbentry:
- # command is a command-line in string form
- compile_command, _, compile_args = dbentry['command'].partition(' ')
- else:
- raise ValueError('Invalid compilation database entry: %s' % dbentry)
+ search_path = [os.path.dirname(__file__)]
+ search_path += os.environ.get('PATH', '').split(os.pathsep)
- if compile_command.endswith('cl.exe'):
- # If the compiler name is cl.exe, let IWYU be cl-compatible
- clang_args = ['--driver-mode=cl']
- else:
- clang_args = []
+ for dirpath in search_path:
+ full = os.path.join(dirpath, executable_name)
+ if os.path.isfile(full):
+ return os.path.realpath(full)
- iwyu_args = ['-Xiwyu ' + a for a in iwyu_args]
- command = ['include-what-you-use'] + clang_args + iwyu_args
- command = '%s %s' % (' '.join(command), compile_args.strip())
+ return None
- if verbose:
- print('%s:' % command)
- return get_output(cwd, command)
+IWYU_EXECUTABLE = find_include_what_you_use()
+class Process(object):
+ """ Manages an IWYU process in flight """
+ def __init__(self, proc, outfile):
+ self.proc = proc
+ self.outfile = outfile
+ self.output = None
-def main(compilation_db_path, source_files, verbose, formatter, jobs, iwyu_args):
- """ Entry point. """
- # Canonicalize compilation database path
+ def poll(self):
+ """ Return the exit code if the process has completed, None otherwise.
+ """
+ return self.proc.poll()
+
+ def get_output(self):
+ """ Return stdout+stderr output of the process.
+
+ This call blocks until the process is complete, then returns the output.
+ """
+ if not self.output:
+ self.proc.wait()
+ self.outfile.seek(0)
+ self.output = self.outfile.read().decode("utf-8")
+ self.outfile.close()
+
+ return self.output
+
+ @classmethod
+ def start(cls, invocation):
+ """ Start a Process for the invocation and capture stdout+stderr. """
+ outfile = tempfile.TemporaryFile(prefix='iwyu')
+ process = subprocess.Popen(
+ invocation.command,
+ cwd=invocation.cwd,
+ stdout=outfile,
+ stderr=subprocess.STDOUT)
+ return cls(process, outfile)
+
+
+class Invocation(object):
+ """ Holds arguments of an IWYU invocation. """
+ def __init__(self, command, cwd):
+ self.command = command
+ self.cwd = cwd
+
+ def __str__(self):
+ return ' '.join(self.command)
+
+ @classmethod
+ def from_compile_command(cls, entry, extra_args):
+ """ Parse a JSON compilation database entry into new Invocation. """
+ if 'arguments' in entry:
+ # arguments is a command-line in list form.
+ command = entry['arguments']
+ elif 'command' in entry:
+ # command is a command-line in string form, split to list.
+ command = shlex.split(entry['command'])
+ else:
+ raise ValueError('Invalid compilation database entry: %s' % entry)
+
+ # Rewrite the compile command for IWYU
+ compile_command, compile_args = command[0], command[1:]
+ if compile_command.endswith('cl.exe'):
+ # If the compiler name is cl.exe, let IWYU be cl-compatible.
+ extra_args = ['--driver-mode=cl'] + extra_args
+
+ command = [IWYU_EXECUTABLE] + extra_args + compile_args
+ return cls(command, entry['directory'])
+
+
+ def start(self, verbose):
+ """ Run invocation and collect output. """
+ if verbose:
+ print('# %s' % self)
+
+ return Process.start(self)
+
+
+def parse_compilation_db(compilation_db_path):
+ """ Parse JSON compilation database and return a canonicalized form. """
if os.path.isdir(compilation_db_path):
compilation_db_path = os.path.join(compilation_db_path,
'compile_commands.json')
+ # Read compilation db from disk.
compilation_db_path = os.path.realpath(compilation_db_path)
- if not os.path.isfile(compilation_db_path):
- print('ERROR: No such file or directory: \'%s\'' % compilation_db_path)
- return 1
-
- # Read compilation db from disk
with open(compilation_db_path, 'r') as fileobj:
compilation_db = json.load(fileobj)
- # expand symlinks
+ # Expand symlinks.
for entry in compilation_db:
entry['file'] = os.path.realpath(entry['file'])
- # Cross-reference source files with compilation database
- source_files = [os.path.realpath(s) for s in source_files]
- if not source_files:
- # No source files specified, analyze entire compilation database
- entries = compilation_db
- else:
- # Source files specified, analyze the ones appearing in compilation db,
- # warn for the rest.
- entries = []
- for source in source_files:
- matches = [e for e in compilation_db if e['file'] == source]
- if matches:
- entries.extend(matches)
- else:
- print('WARNING: \'%s\' not found in compilation database.' %
- source)
-
- # Run analysis
- try:
+ return compilation_db
+
+
+def slice_compilation_db(compilation_db, selection):
+ """ Return a new compilation database reduced to the paths in selection. """
+ if not selection:
+ return compilation_db
+
+ # Canonicalize selection paths to match compilation database.
+ selection = [os.path.realpath(p) for p in selection]
+
+ new_db = []
+ for path in selection:
+ if not os.path.exists(path):
+ print('WARNING: \'%s\' not found on disk.' % path)
+ continue
+
+ matches = [e for e in compilation_db if e['file'].startswith(path)]
+ if not matches:
+ print('WARNING: \'%s\' not found in compilation database.' % path)
+ continue
+
+ new_db.extend(matches)
+
+ return new_db
- pool = multiprocessing.Pool(jobs)
- # No actual results in `results`, it's only used for exception handling.
- # Details here: https://stackoverflow.com/a/28660669.
- results = []
- for entry in entries:
- results.append(pool.apply_async(run_iwyu,
- (entry, iwyu_args, verbose),
- callback=formatter))
- pool.close()
- pool.join()
- for r in results:
- r.get()
- except OSError as why:
- print('ERROR: Failed to launch include-what-you-use: %s' % why)
+def execute(invocations, verbose, formatter, jobs):
+ """ Launch processes described by invocations. """
+ if jobs == 1:
+ for invocation in invocations:
+ print(formatter(invocation.start(verbose).get_output()))
+ return
+
+ pending = []
+ while invocations or pending:
+ # Collect completed IWYU processes and print results.
+ complete = [proc for proc in pending if proc.poll() is not None]
+ for proc in complete:
+ pending.remove(proc)
+ print(formatter(proc.get_output()))
+
+ # Schedule new processes if there's room.
+ n = jobs - len(pending)
+ pending.extend(i.start(verbose) for i in invocations[:n])
+ invocations = invocations[n:]
+
+ # Yield CPU.
+ time.sleep(0.0001)
+
+
+def main(compilation_db_path, source_files, verbose, formatter, jobs,
+ iwyu_args):
+ """ Entry point. """
+
+ try:
+ compilation_db = parse_compilation_db(compilation_db_path)
+ except IOError as why:
+ print('Failed to parse JSON compilation database: %s' % why)
return 1
- return 0
+ compilation_db = slice_compilation_db(compilation_db, source_files)
+
+ # Transform compilation db entries into a list of IWYU invocations.
+ invocations = [
+ Invocation.from_compile_command(e, iwyu_args) for e in compilation_db
+ ]
+ return execute(invocations, verbose, formatter, jobs)
def _bootstrap():
""" Parse arguments and dispatch to main(). """
+
# This hackery is necessary to add the forwarded IWYU args to the
# usage and help strings.
def customize_usage(parser):
@@ -209,7 +299,7 @@ def _bootstrap():
parser.format_help = custom_help
- # Parse arguments
+ # Parse arguments.
parser = argparse.ArgumentParser(
description='Include-what-you-use compilation database driver.',
epilog='Assumes include-what-you-use is available on the PATH.')
@@ -226,8 +316,9 @@ def _bootstrap():
parser.add_argument('-p', metavar='<build-path>', required=True,
help='Compilation database path', dest='dbpath')
parser.add_argument('source', nargs='*',
- help='Zero or more source files to run IWYU on. '
- 'Defaults to all in compilation database.')
+ help=('Zero or more source files (or directories) to '
+ 'run IWYU on. Defaults to all in compilation '
+ 'database.'))
def partition_args(argv):
""" Split around '--' into driver args and IWYU args. """
@@ -239,6 +330,11 @@ def _bootstrap():
argv, iwyu_args = partition_args(sys.argv[1:])
args = parser.parse_args(argv)
+ # Force -Xiwyu prefix to iwyu_args so users don't have to provide prefix
+ # explicitly.
+ prefixes = ['-Xiwyu'] * len(iwyu_args)
+ iwyu_args = list(sum(zip(prefixes, iwyu_args), ()))
+
sys.exit(main(args.dbpath, args.source, args.verbose,
FORMATTERS[args.output_format], args.jobs, iwyu_args))
diff --git a/iwyu_tool_test.py b/iwyu_tool_test.py
new file mode 100755
index 0000000..c661fe9
--- /dev/null
+++ b/iwyu_tool_test.py
@@ -0,0 +1,107 @@
+#!/usr/bin/env python
+
+##===-------------- iwyu_tool_test.py - test for iwyu_tool.py -------------===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+import time
+import random
+import unittest
+import iwyu_tool
+
+try:
+ from cStringIO import StringIO
+except ImportError:
+ from io import StringIO
+
+class MockProcess(object):
+ def __init__(self, block, content):
+ self.block = block
+ self.content = content
+ self.complete_ts = time.time() + block
+
+ def poll(self):
+ if time.time() < self.complete_ts:
+ return None
+ return 0
+
+ def get_output(self):
+ self.poll()
+ return self.content
+
+class MockInvocation(iwyu_tool.Invocation):
+ def __init__(self, command=None, cwd=''):
+ iwyu_tool.Invocation.__init__(self, command or [], cwd)
+ self._will_return = ''
+ self._will_block = 0
+
+ def will_block(self, seconds):
+ self._will_block = seconds
+
+ def will_return(self, content):
+ self._will_return = content
+
+ def start(self, verbose):
+ if self._will_block > 0:
+ time.sleep(self._will_block)
+ return MockProcess(self._will_block, self._will_return)
+
+
+class IWYUToolTestBase(unittest.TestCase):
+ def setUp(self):
+ self.stdout_stub = StringIO()
+ iwyu_tool.sys.stdout = self.stdout_stub
+
+ def _execute(self, invocations, verbose=False, formatter=None, jobs=1):
+ formatter = formatter or iwyu_tool.DEFAULT_FORMAT
+ formatter = iwyu_tool.FORMATTERS.get(formatter, formatter)
+ return iwyu_tool.execute(invocations, verbose, formatter, jobs)
+
+
+class IWYUToolTests(IWYUToolTestBase):
+ def test_from_compile_command(self):
+ iwyu_args = ['-foo']
+ invocation = iwyu_tool.Invocation.from_compile_command(
+ {
+ 'directory': '/home/user/llvm/build',
+ 'command': '/usr/bin/clang++ -Iinclude file.cc',
+ 'file': 'file.cc'
+ }, iwyu_args)
+ self.assertEqual(
+ invocation.command,
+ [iwyu_tool.IWYU_EXECUTABLE, '-foo', '-Iinclude', 'file.cc'])
+ self.assertEqual(invocation.cwd, '/home/user/llvm/build')
+
+ def test_invocation(self):
+ invocation = MockInvocation()
+ invocation.will_return('BAR')
+ self._execute([invocation])
+ self.assertEqual(self.stdout_stub.getvalue(), 'BAR\n')
+
+ def test_order_asynchronous(self):
+ invocations = [MockInvocation() for _ in range(100)]
+ for n, invocation in enumerate(invocations):
+ invocation.will_return('BAR%d' % n)
+ invocation.will_block(random.random() / 100)
+ self._execute(invocations, jobs=100)
+ self.assertSetEqual(
+ set('BAR%d' % n for n in range(100)),
+ set(self.stdout_stub.getvalue().splitlines()))
+
+ def test_order_synchronous(self):
+ invocations = [MockInvocation() for _ in range(100)]
+ for n, invocation in enumerate(invocations):
+ invocation.will_return('BAR%d' % n)
+ invocation.will_block(random.random() / 100)
+ self._execute(invocations, jobs=1)
+ self.assertEqual(['BAR%d' % n for n in range(100)],
+ self.stdout_stub.getvalue().splitlines())
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/iwyu_use_flags.h b/iwyu_use_flags.h
index 4a2e749..39cac34 100644
--- a/iwyu_use_flags.h
+++ b/iwyu_use_flags.h
@@ -16,9 +16,9 @@ namespace include_what_you_use {
typedef unsigned UseFlags;
const UseFlags UF_None = 0;
-const UseFlags UF_InCxxMethodBody = 1; // use is inside a C++ method body
-const UseFlags UF_FunctionDfn = 2; // use is a function being defined
-
+const UseFlags UF_InCxxMethodBody = 1; // use is inside a C++ method body
+const UseFlags UF_FunctionDfn = 2; // use is a function being defined
+const UseFlags UF_ExplicitInstantiation = 4; // use targets an explicit instantiation
}
#endif
diff --git a/iwyu_version.h b/iwyu_version.h
index e7ab305..d63a4fd 100644
--- a/iwyu_version.h
+++ b/iwyu_version.h
@@ -10,6 +10,6 @@
#ifndef INCLUDE_WHAT_YOU_USE_IWYU_VERSION_H_
#define INCLUDE_WHAT_YOU_USE_IWYU_VERSION_H_
-#define IWYU_VERSION_STRING "0.10"
+#define IWYU_VERSION_STRING "0.11"
#endif // INCLUDE_WHAT_YOU_USE_IWYU_VERSION_H_
diff --git a/run_iwyu_tests.py b/run_iwyu_tests.py
index 1e31b70..e52b496 100755
--- a/run_iwyu_tests.py
+++ b/run_iwyu_tests.py
@@ -84,6 +84,7 @@ class OneIwyuTest(unittest.TestCase):
'prefix_header_includes_keep.cc': ['--prefix_header_includes=keep'],
'prefix_header_includes_remove.cc': ['--prefix_header_includes=remove'],
'prefix_header_operator_new.cc': ['--prefix_header_includes=remove'],
+ 'quoted_includes_first.cc': ['--pch_in_code', '--quoted_includes_first'],
}
prefix_headers = [self.Include('prefix_header_includes-d1.h'),
self.Include('prefix_header_includes-d2.h'),
@@ -168,6 +169,7 @@ class OneIwyuTest(unittest.TestCase):
'prefix_header_includes_add.cc': ['.'],
'prefix_header_includes_keep.cc': ['.'],
'prefix_header_includes_remove.cc': ['.'],
+ 'quoted_includes_first.cc' : ['.'],
'range_for.cc': ['.'],
're_fwd_decl.cc': ['.'],
'redecls.cc': ['.'],
diff --git a/tests/cxx/built_ins_template.cc b/tests/cxx/built_ins_template.cc
new file mode 100644
index 0000000..eee0eef
--- /dev/null
+++ b/tests/cxx/built_ins_template.cc
@@ -0,0 +1,22 @@
+//===--- built_ins_template.cc - test input file for iwyu -----------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// Built-in templates have no declaration, thus they need no include.
+
+__type_pack_element<0, int> tp;
+
+template <class T, T...> struct A {};
+__make_integer_seq<A, int, 5> seq;
+
+
+/**** IWYU_SUMMARY
+
+(tests/cxx/built_ins_template.cc has correct #includes/fwd-decls)
+
+***** IWYU_SUMMARY */
diff --git a/tests/cxx/explicit_instantiation-template.h b/tests/cxx/explicit_instantiation-template.h
new file mode 100644
index 0000000..19d4a5a
--- /dev/null
+++ b/tests/cxx/explicit_instantiation-template.h
@@ -0,0 +1,14 @@
+//===---- explicit_instantiation-template.h - test input file for iwyu ----===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_H_
+#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_H_
+
+template<typename T> class Template {};
+
+#endif // INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_H_
diff --git a/tests/cxx/explicit_instantiation-template_direct.h b/tests/cxx/explicit_instantiation-template_direct.h
new file mode 100644
index 0000000..9df65f7
--- /dev/null
+++ b/tests/cxx/explicit_instantiation-template_direct.h
@@ -0,0 +1,14 @@
+//===- explicit_instantiation-template_direct.h - test input file for iwyu ===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_DIRECT_H_
+#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_DIRECT_H_
+
+#include "explicit_instantiation-template.h"
+
+#endif // INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION_TEMPLATE_DIRECT_H_
diff --git a/tests/cxx/explicit_instantiation.cc b/tests/cxx/explicit_instantiation.cc
new file mode 100644
index 0000000..c3af267
--- /dev/null
+++ b/tests/cxx/explicit_instantiation.cc
@@ -0,0 +1,48 @@
+//===-------- explicit_instantiation.cc - test input file for iwyu --------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "explicit_instantiation-template_direct.h"
+
+// Test that all explicit instantiations variants of the base template
+// require the full type:
+
+// - Declaration and definition
+// IWYU: Template is...*explicit_instantiation-template.h
+extern template class Template<int>;
+// IWYU: Template is...*explicit_instantiation-template.h
+template class Template<int>;
+
+// - Only declaration
+// IWYU: Template is...*explicit_instantiation-template.h
+extern template class Template<short>;
+
+// - Only definition
+// IWYU: Template is...*explicit_instantiation-template.h
+template class Template<double>;
+
+
+// The explicit instantiation of a specialization only needs a declaration
+// of the base template
+// IWYU: Template needs a declaration
+template<> class Template<char> {};
+extern template class Template<char>;
+
+
+/**** IWYU_SUMMARY
+
+tests/cxx/explicit_instantiation.cc should add these lines:
+#include "explicit_instantiation-template.h"
+
+tests/cxx/explicit_instantiation.cc should remove these lines:
+- #include "explicit_instantiation-template_direct.h" // lines XX-XX
+
+The full include-list for tests/cxx/explicit_instantiation.cc:
+#include "explicit_instantiation-template.h" // for Template
+
+***** IWYU_SUMMARY */
diff --git a/tests/cxx/explicit_instantiation2-template_helpers.h b/tests/cxx/explicit_instantiation2-template_helpers.h
new file mode 100644
index 0000000..71c3679
--- /dev/null
+++ b/tests/cxx/explicit_instantiation2-template_helpers.h
@@ -0,0 +1,48 @@
+//=== explicit_instantiation2-template_helpers.h - test input file for iwyu ==//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_HELPERS_H_
+#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_HELPERS_H_
+
+template <class T>
+class Template;
+
+template <class T>
+class FullUseArg {
+ T t;
+};
+template <class T>
+class FwdDeclUseArg {
+ T* t;
+};
+template <class U = short, class T = Template<U>>
+class TemplateAsDefaultFull {
+ T t;
+};
+template <class U = short, class T = Template<U>>
+class TemplateAsDefaultFwd {
+ T* t;
+};
+template <template <class> class T>
+class TemplateTemplateArgShortFull {
+ T<short> t;
+};
+template <template <class> class T>
+class TemplateTemplateArgShortFwd {
+ T<short>* t;
+};
+
+template <class T>
+class ProvidedTemplate {};
+
+template <class U = short, class T = ProvidedTemplate<U>>
+class TemplateAsDefaultFullProvided {
+ T t;
+};
+
+#endif // INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_HELPERS_H_
diff --git a/tests/cxx/explicit_instantiation2-template_short.h b/tests/cxx/explicit_instantiation2-template_short.h
new file mode 100644
index 0000000..5bae3fe
--- /dev/null
+++ b/tests/cxx/explicit_instantiation2-template_short.h
@@ -0,0 +1,17 @@
+
+//===- explicit_instantiation2-template_short.h - test input file for iwyu ===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_SHORT_H_
+#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_SHORT_H_
+
+extern template class Template<short>;
+
+extern template class ProvidedTemplate<short>;
+
+#endif // INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_SHORT_H_
diff --git a/tests/cxx/explicit_instantiation2-template_short_direct.h b/tests/cxx/explicit_instantiation2-template_short_direct.h
new file mode 100644
index 0000000..17c9845
--- /dev/null
+++ b/tests/cxx/explicit_instantiation2-template_short_direct.h
@@ -0,0 +1,14 @@
+// explicit_instantiation2-template_short_direct.h - test input file for iwyu //
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_SHORT_DIRECT_H_
+#define INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2_TEMPLATE_SHORT_DIRECT_H_
+
+#include "explicit_instantiation2-template_short.h"
+
+#endif // INCLUDE_WHAT_YOU_USE_TESTS_CXX_EXPLICIT_INSTANTIATION2-TEMPLATE_SHORT_DIRECT_H_
diff --git a/tests/cxx/explicit_instantiation2.cc b/tests/cxx/explicit_instantiation2.cc
new file mode 100644
index 0000000..168d6c8
--- /dev/null
+++ b/tests/cxx/explicit_instantiation2.cc
@@ -0,0 +1,103 @@
+//===------- explicit_instantiation2.cc - test input file for iwyu --------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "explicit_instantiation-template_direct.h"
+#include "explicit_instantiation2-template_helpers.h"
+#include "explicit_instantiation2-template_short_direct.h"
+
+// These tests verify that a dependent explicit instantiation declaration is
+// always required when the main template is also needed, but not otherwise.
+//
+// Positive scenarios:
+// 1a/1b: Implicit instantiation before and after an explicit instantiation
+// definition (2), as it affects the semantics.
+// 2: Explicit instantiation definition.
+// 3: Full use in a template, provided as an explicit parameter.
+// 4: Fwd-decl use in a template, provided as an explicit parameter.
+// 5: Full use in a template, provided as an default parameter.
+// 7: Full use in a template, provided as a template template parameter.
+// 8: Fwd-decl use in a template, provided as a template template parameter.
+//
+// Negative scenarios, where the dependent template specialization is not
+// required, or it does not provide an explicit instantiation:
+// 6: Fwd-decl use in a template, provided as a default parameter.
+// 9: Implicit instantiation of Template<int>
+// 10: Specialization of Template<T>
+// 11: Explicit instantiation with a dependent instantiation declaration, but
+// provided by the template helper itself.
+
+
+// IWYU: Template is...*explicit_instantiation-template.h
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+Template<short> t1a; // 1a
+
+// IWYU: Template is...*explicit_instantiation-template.h
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+template class Template<short>; // 2
+
+// IWYU: Template is...*explicit_instantiation-template.h
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+Template<short> t1b; // 1b
+
+// IWYU: Template is...*explicit_instantiation-template.h
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+FullUseArg<
+ // IWYU: Template needs a declaration...*
+ Template<short>>
+ // IWYU: Template is...*explicit_instantiation-template.h
+ t3; // 3
+
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+FwdDeclUseArg<
+ // IWYU: Template needs a declaration...*
+ Template<short>>
+ t4; // 4
+
+// IWYU: Template is...*explicit_instantiation-template.h
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+TemplateAsDefaultFull<> t5; // 5
+TemplateAsDefaultFwd<> t6; // 6
+
+// IWYU: Template is...*template_short.h.*for explicit instantiation
+TemplateTemplateArgShortFull<
+ // IWYU: Template is...*explicit_instantiation-template.h
+ Template>
+ t7; // 7
+
+TemplateTemplateArgShortFwd<
+ // IWYU: Template is...*explicit_instantiation-template.h
+ Template>
+ t8; // 8
+
+// IWYU: Template is...*explicit_instantiation-template.h
+Template<int> t9; // 9
+
+// IWYU: Template needs a declaration...*
+template <> class Template<char> {};
+
+TemplateAsDefaultFull<char> t10; // 10
+
+TemplateAsDefaultFullProvided<> t11; // 11
+
+/**** IWYU_SUMMARY
+
+tests/cxx/explicit_instantiation2.cc should add these lines:
+#include "explicit_instantiation-template.h"
+#include "explicit_instantiation2-template_short.h"
+
+tests/cxx/explicit_instantiation2.cc should remove these lines:
+- #include "explicit_instantiation-template_direct.h" // lines XX-XX
+- #include "explicit_instantiation2-template_short_direct.h" // lines XX-XX
+
+The full include-list for tests/cxx/explicit_instantiation2.cc:
+#include "explicit_instantiation-template.h" // for Template
+#include "explicit_instantiation2-template_helpers.h" // for FullUseArg, FwdDeclUseArg, TemplateAsDefaultFull, TemplateAsDefaultFullProvided, TemplateAsDefaultFwd, TemplateTemplateArgShortFull, TemplateTemplateArgShortFwd
+#include "explicit_instantiation2-template_short.h" // for Template
+
+***** IWYU_SUMMARY */
diff --git a/tests/cxx/quoted_includes_first.cc b/tests/cxx/quoted_includes_first.cc
new file mode 100644
index 0000000..dbdee4e
--- /dev/null
+++ b/tests/cxx/quoted_includes_first.cc
@@ -0,0 +1,39 @@
+//===--- quoted_includes_first.cc - test input file for iwyu --------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// Tests that IWYU will respect the --quoted_includes_first option.
+
+#include "tests/cxx/pch.h" // this is the precompiled header
+#include <iostream>
+#include <list>
+#include <map>
+#include <memory>
+#include "subfolder/indirect_subfolder.h"
+#include "quoted_includes_first.h"
+
+std::unique_ptr<IndirectSubfolderClass> CreateIndirectSubfolderClass() {
+ return std::unique_ptr<IndirectSubfolderClass>(new IndirectSubfolderClass);
+}
+
+/**** IWYU_SUMMARY
+
+tests/cxx/quoted_includes_first.cc should add these lines:
+
+tests/cxx/quoted_includes_first.cc should remove these lines:
+- #include <iostream> // lines XX-XX
+- #include <list> // lines XX-XX
+- #include <map> // lines XX-XX
+
+The full include-list for tests/cxx/quoted_includes_first.cc:
+#include "tests/cxx/pch.h"
+#include "quoted_includes_first.h"
+#include "subfolder/indirect_subfolder.h" // for IndirectSubfolderClass
+#include <memory> // for unique_ptr
+
+***** IWYU_SUMMARY */
diff --git a/tests/cxx/quoted_includes_first.h b/tests/cxx/quoted_includes_first.h
new file mode 100644
index 0000000..9016c5d
--- /dev/null
+++ b/tests/cxx/quoted_includes_first.h
@@ -0,0 +1,33 @@
+//===--- quoted_includes_first.h - test input file for iwyu ---------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <iostream>
+#include <list>
+#include <map>
+#include <memory>
+#include "subfolder/indirect_subfolder.h"
+
+std::unique_ptr<IndirectSubfolderClass> CreateIndirectSubfolderClass();
+
+/**** IWYU_SUMMARY
+
+tests/cxx/quoted_includes_first.h should add these lines:
+class IndirectSubfolderClass;
+
+tests/cxx/quoted_includes_first.h should remove these lines:
+- #include "subfolder/indirect_subfolder.h" // lines XX-XX
+- #include <iostream> // lines XX-XX
+- #include <list> // lines XX-XX
+- #include <map> // lines XX-XX
+
+The full include-list for tests/cxx/quoted_includes_first.h:
+#include <memory> // for unique_ptr
+class IndirectSubfolderClass;
+
+***** IWYU_SUMMARY */