Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 May 2021 22:38:14 GMT
From:      Richard Gallamore <ultima@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b83fb7be7a38 - main - devel/youcompleteme: Update to g20210518
Message-ID:  <202105232238.14NMcEFU055545@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by ultima:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b83fb7be7a38293692c3ea9c2e6bde239879fbcd

commit b83fb7be7a38293692c3ea9c2e6bde239879fbcd
Author:     Richard Gallamore <ultima@FreeBSD.org>
AuthorDate: 2021-05-23 22:34:47 +0000
Commit:     Richard Gallamore <ultima@FreeBSD.org>
CommitDate: 2021-05-23 22:37:54 +0000

    devel/youcompleteme: Update to g20210518
    
    Remove REGEX option, this is now built-in
---
 devel/youcompleteme/Makefile  |   48 +-
 devel/youcompleteme/distinfo  |   12 +-
 devel/youcompleteme/pkg-plist | 1658 +++++------------------------------------
 3 files changed, 219 insertions(+), 1499 deletions(-)

diff --git a/devel/youcompleteme/Makefile b/devel/youcompleteme/Makefile
index 052b824fe03a..07c2c602f523 100644
--- a/devel/youcompleteme/Makefile
+++ b/devel/youcompleteme/Makefile
@@ -1,8 +1,7 @@
 # Created by: Richard Gallamore <ultima@freebsd.org>
 
 PORTNAME=	YouCompleteMe
-DISTVERSION=	g20191130
-PORTREVISION=	1
+DISTVERSION=	g20210518
 CATEGORIES=	devel
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
@@ -12,27 +11,21 @@ COMMENT=	Code-completion engine for Vim
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING.txt
 
+LIB_DEPENDS=	libabsl_strings.so:devel/abseil
+
 RUN_DEPENDS=	vim:editors/vim \
-		${LOCALBASE}/lib/libboost_thread.so:devel/boost-libs \
-		${LOCALBASE}/lib/${PY_BOOST} \
 		${PYTHON_PKGNAMEPREFIX}bottle>0:www/py-bottle@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}frozendict>0:devel/py-frozendict@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}jedi>0:devel/py-jedi@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}regex>0:textproc/py-regex@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}parso>0:textproc/py-parso@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}requests-futures>0:www/py-requests-futures@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}waitress>0:www/py-waitress@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}watchdog>0:devel/py-watchdog@${PY_FLAVOR}
 
 USES=		cmake compiler:c++11-lang python:3.6+
 USE_PYTHON=	flavors
 USE_GITHUB=	yes
 GH_ACCOUNT=	ycm-core
-GH_TAGNAME=	1386c6b
-GH_TUPLE=	ycm-core:ycmd:a374320:ycm/third_party/ycmd \
-		ycm-core:regex:cc538bb:ycmd5/third_party/ycmd/third_party/cregex
-
-LLVM_VER=		90
+GH_TAGNAME=	ab73ca2
+GH_TUPLE=	ycm-core:ycmd:df3d7eb:ycm/third_party/ycmd
 
 CMAKE_SOURCE_PATH=	${WRKSRC}/third_party/ycmd/cpp
 
@@ -44,23 +37,22 @@ SUB_FILES=		pkg-message pkg-install pkg-deinstall
 SUB_LIST=		VIMFILESDIR="${VIMFILESDIR}" \
 			FIND="${FIND}"
 
-OPTIONS_DEFINE=		C REGEX
-OPTIONS_DEFAULT=	C REGEX
+OPTIONS_DEFINE=		C
+OPTIONS_DEFAULT=	C
 OPTIONS_SUB=		yes
 
 C_DESC=			C-family Semantic Completion Support
 
-C_CMAKE_ON=		-DPATH_TO_LLVM_ROOT=${LOCALBASE}/llvm${LLVM_VER}
-C_LIB_DEPENDS=		libclang.so:devel/llvm${LLVM_VER}
+C_CMAKE_ON=		-DPATH_TO_LLVM_ROOT=${LOCALBASE}/llvm${LLVM_DEFAULT}
+C_LIB_DEPENDS=		libclang.so:devel/llvm${LLVM_DEFAULT}
 
 VIMFILESDIR=		${PREFIX}/share/vim/vimfiles
 
-CMAKE_ARGS_PY3=		-DUSE_PYTHON2:BOOL=OFF
-CMAKE_ARGS=		${CMAKE_ARGS_PY${PYTHON_MAJOR_VER}}
+CMAKE_ARGS=		${CMAKE_ARGS_PY${PYTHON_MAJOR_VER}} -DUSE_SYSTEM_ABSEIL:BOOL=ON
 
-post-patch-REGEX-on:
-		${PRINTF} "add_subdirectory(../third_party/cregex ${WRKDIR}/.build-regex)" \
-			>>${WRKSRC}/third_party/ycmd/cpp/CMakeLists.txt
+post-patch:
+		${REINPLACE_CMD} "s/'python3'/'${PYTHON_VERSION}'/" \
+			${WRKSRC}/python/ycm/paths.py
 
 do-install:
 		${MKDIR} ${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/third_party
@@ -70,17 +62,11 @@ do-install:
 			"ycmd CORE_VERSION cpp" \
 			"${STAGEDIR}${VIMFILESDIR}/third_party/ycmd")
 		(cd ${WRKSRC}/third_party/ycmd/third_party && ${COPYTREE_SHARE} \
-			"clang cregex tern_runtime" \
+			"clang generic_server tern_runtime tsserver" \
 			"${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/third_party")
 		${RM} -rf ${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/cpp/ycm/tests \
 			${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/ycmd/tests
-		${INSTALL_LIB} ${WRKSRC}/third_party/ycmd/ycm_core.so \
+		${INSTALL_LIB} ${WRKSRC}/third_party/ycmd/ycm_core.cpython-${PYTHON_SUFFIX}.so \
 			${STAGEDIR}${VIMFILESDIR}/third_party/ycmd
 
-do-install-REGEX-on:
-		(cd ${WRKSRC}/third_party/ycmd/third_party && ${COPYTREE_SHARE} \
-			"cregex" "${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/third_party")
-		${INSTALL_LIB} ${WRKSRC}/third_party/ycmd/third_party/cregex/regex_${PYTHON_MAJOR_VER}/_regex.so \
-			${STAGEDIR}${VIMFILESDIR}/third_party/ycmd/third_party/cregex/regex_${PYTHON_MAJOR_VER}
-
 .include <bsd.port.mk>
diff --git a/devel/youcompleteme/distinfo b/devel/youcompleteme/distinfo
index 537d7a50b716..8f01612294cb 100644
--- a/devel/youcompleteme/distinfo
+++ b/devel/youcompleteme/distinfo
@@ -1,7 +1,5 @@
-TIMESTAMP = 1576048624
-SHA256 (ycm-core-YouCompleteMe-g20191130-1386c6b_GH0.tar.gz) = d5d9a2a63b4c17337c20b1879bebf90041743afab59cfb52cf934ed047291dc4
-SIZE (ycm-core-YouCompleteMe-g20191130-1386c6b_GH0.tar.gz) = 315502
-SHA256 (ycm-core-ycmd-a374320_GH0.tar.gz) = 7b8fc941162b20b1e15b4d7807a69967b26632865bbee7407f213e78f3e9744f
-SIZE (ycm-core-ycmd-a374320_GH0.tar.gz) = 4510540
-SHA256 (ycm-core-regex-cc538bb_GH0.tar.gz) = b26ee13605dae6a30a3b65e224e3dd4f4942acefc419e9109b3f6c5ad0a44ae8
-SIZE (ycm-core-regex-cc538bb_GH0.tar.gz) = 684593
+TIMESTAMP = 1621803852
+SHA256 (ycm-core-YouCompleteMe-g20210518-ab73ca2_GH0.tar.gz) = cd466762c509e67ac96f649b090a5a1fd5bc13fe0b6535ff2dacf95ca424904a
+SIZE (ycm-core-YouCompleteMe-g20210518-ab73ca2_GH0.tar.gz) = 298400
+SHA256 (ycm-core-ycmd-df3d7eb_GH0.tar.gz) = f999e89eef82a71280b0ab3c3318411d0787a13e1946f6d410eda77cc8a2b876
+SIZE (ycm-core-ycmd-df3d7eb_GH0.tar.gz) = 2898578
diff --git a/devel/youcompleteme/pkg-plist b/devel/youcompleteme/pkg-plist
index 8f88804b54e9..308ec38e5d2c 100644
--- a/devel/youcompleteme/pkg-plist
+++ b/devel/youcompleteme/pkg-plist
@@ -1,4 +1,5 @@
 %%VIMFILESDIR%%/autoload/youcompleteme.vim
+%%VIMFILESDIR%%/autoload/youcompleteme/finder.vim
 %%VIMFILESDIR%%/doc/youcompleteme.txt
 %%VIMFILESDIR%%/plugin/youcompleteme.vim
 %%VIMFILESDIR%%/python/test_requirements.txt
@@ -14,6 +15,7 @@
 %%VIMFILESDIR%%/python/ycm/client/event_notification.py
 %%VIMFILESDIR%%/python/ycm/client/messages_request.py
 %%VIMFILESDIR%%/python/ycm/client/omni_completion_request.py
+%%VIMFILESDIR%%/python/ycm/client/resolve_completion_request.py
 %%VIMFILESDIR%%/python/ycm/client/shutdown_request.py
 %%VIMFILESDIR%%/python/ycm/client/signature_help_request.py
 %%VIMFILESDIR%%/python/ycm/client/ycmd_keepalive.py
@@ -31,9 +33,10 @@
 %%VIMFILESDIR%%/python/ycm/tests/client/completion_request_test.py
 %%VIMFILESDIR%%/python/ycm/tests/client/debug_info_request_test.py
 %%VIMFILESDIR%%/python/ycm/tests/client/messages_request_test.py
-%%VIMFILESDIR%%/python/ycm/tests/client/omni_completion_request_tests.py
+%%VIMFILESDIR%%/python/ycm/tests/client/omni_completion_request_test.py
 %%VIMFILESDIR%%/python/ycm/tests/command_test.py
 %%VIMFILESDIR%%/python/ycm/tests/completion_test.py
+%%VIMFILESDIR%%/python/ycm/tests/conftest.py
 %%VIMFILESDIR%%/python/ycm/tests/diagnostic_filter_test.py
 %%VIMFILESDIR%%/python/ycm/tests/event_notification_test.py
 %%VIMFILESDIR%%/python/ycm/tests/mock_utils.py
@@ -48,1261 +51,24 @@
 %%VIMFILESDIR%%/python/ycm/tests/testdata/java_syntax
 %%VIMFILESDIR%%/python/ycm/tests/testdata/php_syntax
 %%VIMFILESDIR%%/python/ycm/tests/testdata/python_syntax
-%%VIMFILESDIR%%/python/ycm/tests/testdata/uni¢𐍈d€/tags
+%%VIMFILESDIR%%/python/ycm/tests/testdata/uni¢od€/tags
 %%VIMFILESDIR%%/python/ycm/tests/vimsupport_test.py
 %%VIMFILESDIR%%/python/ycm/tests/youcompleteme_test.py
 %%VIMFILESDIR%%/python/ycm/unsafe_thread_pool_executor.py
 %%VIMFILESDIR%%/python/ycm/vimsupport.py
 %%VIMFILESDIR%%/python/ycm/youcompleteme.py
 %%YCMDDIR%%/CORE_VERSION
-%%YCMDDIR%%/cpp/BoostParts/CMakeLists.txt
-%%YCMDDIR%%/cpp/BoostParts/boost/assert.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/cerrno.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/checked_delete.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi/borland_prefix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi/borland_suffix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi/msvc_prefix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi/msvc_suffix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi_prefix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/abi_suffix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/auto_link.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/borland.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/clang.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/codegear.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/comeau.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/common_edg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/compaq_cxx.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/cray.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/diab.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/digitalmars.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/gcc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/gcc_xml.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/greenhills.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/hp_acc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/intel.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/kai.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/metrowerks.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/mpw.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/nvcc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/pathscale.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/pgi.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/sgi_mipspro.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/sunpro_cc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/vacpp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/visualc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/xlcpp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/compiler/xlcpp_zos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/detail/posix_features.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/detail/select_compiler_config.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/detail/select_platform_config.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/detail/select_stdlib_config.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/detail/suffix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/header_deprecated.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/helper_macros.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/no_tr1/cmath.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/no_tr1/complex.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/no_tr1/functional.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/no_tr1/memory.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/no_tr1/utility.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/aix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/amigaos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/beos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/bsd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/cloudabi.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/cray.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/cygwin.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/haiku.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/hpux.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/irix.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/linux.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/macos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/qnxnto.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/solaris.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/symbian.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/vms.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/vxworks.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/win32.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/platform/zos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/pragma_message.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/requires_threads.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/dinkumware.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/libcomo.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/libcpp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/libstdcpp3.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/modena.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/msl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/roguewave.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/sgi.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/stlport.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/vacpp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/stdlib/xlcpp_zos.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/user.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/warning_disable.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/config/workaround.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/detail/float_functions.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/detail/hash_float.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/detail/limits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/extensions.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/hash.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/container_hash/hash_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/addressof.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/checked_delete.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/demangle.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/enable_if.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/ref.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/scoped_enum.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/typeinfo.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/core/use_default.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/cregex.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/cstdint.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/current_function.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/bitmask.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/container_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/indirect_traits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/select_type.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/utf8_codecvt_facet.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/utf8_codecvt_facet.ipp
-%%YCMDDIR%%/cpp/BoostParts/boost/detail/workaround.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/exception/exception.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/config.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/convenience.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/detail/utf8_codecvt_facet.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/fstream.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/operations.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/path.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/path_traits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/filesystem/string_file.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/functional/hash.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/functional/hash_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/integer.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/integer/static_log2.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/integer_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/integer_traits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/io/detail/quoted_manip.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/io/ios_state.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/io_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/detail/config_def.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/detail/config_undef.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/detail/enable_if.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/detail/facade_iterator_category.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/interoperable.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/iterator_categories.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/iterator_facade.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/iterator/iterator_traits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/limits.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/always.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/arg_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/assert.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/adl_barrier.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/arg_typedef.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/arity_spec.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/common_name_wknd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/adl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/arrays.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/bcc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/compiler.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/dtp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/eti.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/gcc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/gpu.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/has_apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/has_xxx.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/integral.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/intel.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/msvc.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/msvc_typename.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/nttp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/overload_resolution.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/pp_counter.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/preprocessor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/static_constant.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/ttp.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/use_preprocessed.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/config/workaround.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/count_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/has_apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/has_rebind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/has_type.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/include_preprocessed.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/integral_wrapper.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/lambda_arity_param.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/lambda_support.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/logical_op.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/msvc_dtw.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/msvc_is_class.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/msvc_never_true.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/na.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/na_assert.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/na_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/na_spec.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/nested_type_wknd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/nttp_decl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/and.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/apply.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/arg.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/bitand.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/bitor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/bitxor.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/deque.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/divides.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/greater.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/inherit.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/less.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/less_equal.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/list.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/list_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/map.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/minus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/modulus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/plus.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/set.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/set_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/shift_left.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/shift_right.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/times.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/vector.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessed/plain/vector_c.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/add.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/def_params_tail.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/default_params.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/enum.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/ext_params.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/filter_params.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/params.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/partial_spec_params.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/range.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/repeat.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/sub.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/preprocessor/tuple.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/static_cast.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/template_arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/template_arity_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/type_wrapper.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/value_wknd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/aux_/yes_no.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/bind.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/bind_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/bool.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/bool_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/eval_if.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/has_xxx.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/identity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/if.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/int.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/int_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/integral_c_tag.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/is_placeholder.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/lambda.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/lambda_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/limits/arity.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/next.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/next_prior.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/not.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/or.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/placeholders.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/protect.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/quote.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/void.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/mpl/void_fwd.hpp
-%%YCMDDIR%%/cpp/BoostParts/boost/predef.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/alpha.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/arm.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/blackfin.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/convex.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/ia64.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/m68k.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/mips.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/parisc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/ppc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/ptx.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/pyramid.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/rs6k.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/sparc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/superh.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/sys370.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/sys390.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/x86.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/x86/32.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/x86/64.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/architecture/z.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/borland.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/clang.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/comeau.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/compaq.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/diab.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/digitalmars.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/dignus.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/edg.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/ekopath.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/gcc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/gcc_xml.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/greenhills.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/hp_acc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/iar.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/ibm.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/intel.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/kai.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/llvm.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/metaware.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/metrowerks.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/microtec.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/mpw.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/nvcc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/palm.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/pgi.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/sgi_mipspro.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/sunpro.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/tendra.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/visualc.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/compiler/watcom.h
-%%YCMDDIR%%/cpp/BoostParts/boost/predef/detail/_cassert.h
*** 909 LINES SKIPPED ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105232238.14NMcEFU055545>