From 300b6f286ef568db9213891f763a512dd7685eeb Mon Sep 17 00:00:00 2001 From: Michael Demmer Date: Mon, 25 Jan 2016 20:19:50 -0800 Subject: [PATCH 1/2] update cpp-driver to version 2.2.2 --- binding.gyp | 23 +- cpp-driver/include/cassandra.h | 6139 ++++++++++++++--- cpp-driver/src/abstract_data.cpp | 133 + cpp-driver/src/abstract_data.hpp | 174 + cpp-driver/src/address.cpp | 7 +- cpp-driver/src/address.hpp | 2 +- cpp-driver/src/async_queue.hpp | 6 +- .../src/atomic/atomic_intrinsics_msvc.hpp | 24 +- cpp-driver/src/auth.hpp | 2 +- cpp-driver/src/auth_requests.cpp | 4 +- cpp-driver/src/auth_requests.hpp | 17 +- cpp-driver/src/batch_request.cpp | 125 +- cpp-driver/src/batch_request.hpp | 13 +- cpp-driver/src/buffer.cpp | 64 - cpp-driver/src/buffer.hpp | 139 +- cpp-driver/src/buffer_collection.cpp | 151 - cpp-driver/src/buffer_collection.hpp | 86 - cpp-driver/src/buffer_piece.hpp | 59 - cpp-driver/src/cluster.cpp | 72 +- cpp-driver/src/cluster_metadata.cpp | 60 - cpp-driver/src/cluster_metadata.hpp | 57 - cpp-driver/src/collection.cpp | 209 + cpp-driver/src/collection.hpp | 142 + cpp-driver/src/collection_iterator.cpp | 42 +- cpp-driver/src/collection_iterator.hpp | 59 +- cpp-driver/src/config.hpp | 71 +- cpp-driver/src/connection.cpp | 427 +- cpp-driver/src/connection.hpp | 124 +- cpp-driver/src/constants.hpp | 18 +- cpp-driver/src/control_connection.cpp | 432 +- cpp-driver/src/control_connection.hpp | 77 +- cpp-driver/src/data_type.cpp | 454 ++ cpp-driver/src/data_type.hpp | 570 ++ cpp-driver/src/data_type_parser.cpp | 630 ++ cpp-driver/src/data_type_parser.hpp | 182 + cpp-driver/src/dc_aware_policy.cpp | 9 +- cpp-driver/src/dc_aware_policy.hpp | 3 +- cpp-driver/src/encode.hpp | 211 + cpp-driver/src/error_response.cpp | 178 +- cpp-driver/src/error_response.hpp | 62 +- cpp-driver/src/event_response.cpp | 49 +- cpp-driver/src/event_response.hpp | 69 +- cpp-driver/src/execute_request.cpp | 81 +- cpp-driver/src/execute_request.hpp | 24 +- .../src/{types.cpp => external_types.cpp} | 45 +- cpp-driver/src/external_types.hpp | 92 + cpp-driver/src/future.cpp | 76 +- cpp-driver/src/future.hpp | 40 - cpp-driver/src/handler.cpp | 44 +- cpp-driver/src/handler.hpp | 111 +- cpp-driver/src/hash_table.hpp | 245 + cpp-driver/src/host.cpp | 4 + cpp-driver/src/host.hpp | 50 +- cpp-driver/src/io_worker.cpp | 121 +- cpp-driver/src/io_worker.hpp | 25 +- cpp-driver/src/iterator.cpp | 75 +- cpp-driver/src/latency_aware_policy.cpp | 10 +- cpp-driver/src/latency_aware_policy.hpp | 3 +- cpp-driver/src/load_balancing.hpp | 3 +- cpp-driver/src/logger.cpp | 97 +- cpp-driver/src/logger.hpp | 45 +- cpp-driver/src/macros.hpp | 32 +- cpp-driver/src/map_iterator.cpp | 12 +- cpp-driver/src/map_iterator.hpp | 8 +- cpp-driver/src/md5.cpp | 2 +- cpp-driver/src/metadata.cpp | 1719 +++++ cpp-driver/src/metadata.hpp | 577 ++ cpp-driver/src/metrics.hpp | 10 +- cpp-driver/src/mpmc_queue.hpp | 8 +- cpp-driver/src/multiple_request_handler.cpp | 11 +- cpp-driver/src/multiple_request_handler.hpp | 19 +- cpp-driver/src/options_request.hpp | 2 +- cpp-driver/src/parameter.hpp | 65 - cpp-driver/src/pool.cpp | 67 +- cpp-driver/src/pool.hpp | 10 +- cpp-driver/src/prepare_handler.cpp | 14 +- cpp-driver/src/prepare_handler.hpp | 8 +- cpp-driver/src/prepare_request.cpp | 2 +- cpp-driver/src/prepare_request.hpp | 2 +- cpp-driver/src/prepared.cpp | 85 +- cpp-driver/src/prepared.hpp | 13 +- cpp-driver/src/query_request.cpp | 130 +- cpp-driver/src/query_request.hpp | 59 +- cpp-driver/src/random.cpp | 20 +- cpp-driver/src/ref_counted.hpp | 6 +- cpp-driver/src/register_request.cpp | 2 +- cpp-driver/src/register_request.hpp | 6 +- cpp-driver/src/replication_strategy.cpp | 103 +- cpp-driver/src/replication_strategy.hpp | 40 +- cpp-driver/src/request.cpp | 75 + cpp-driver/src/request.hpp | 63 +- cpp-driver/src/request_handler.cpp | 133 +- cpp-driver/src/request_handler.hpp | 83 +- cpp-driver/src/response.cpp | 69 +- cpp-driver/src/response.hpp | 48 +- cpp-driver/src/result_iterator.hpp | 1 - cpp-driver/src/result_metadata.cpp | 97 +- cpp-driver/src/result_metadata.hpp | 71 +- cpp-driver/src/result_response.cpp | 205 +- cpp-driver/src/result_response.hpp | 68 +- cpp-driver/src/retry_policy.cpp | 255 + cpp-driver/src/retry_policy.hpp | 141 + cpp-driver/src/ring_buffer.hpp | 1 + cpp-driver/src/round_robin_policy.hpp | 3 +- cpp-driver/src/row.cpp | 26 +- cpp-driver/src/row.hpp | 6 +- cpp-driver/src/row_iterator.hpp | 2 +- cpp-driver/src/schema_change_handler.cpp | 12 +- cpp-driver/src/schema_change_handler.hpp | 4 +- cpp-driver/src/schema_metadata.cpp | 462 -- cpp-driver/src/schema_metadata.hpp | 258 - cpp-driver/src/scoped_ptr.hpp | 1 + cpp-driver/src/serialization.hpp | 73 +- cpp-driver/src/session.cpp | 67 +- cpp-driver/src/session.hpp | 19 +- cpp-driver/src/set_keyspace_handler.cpp | 9 +- cpp-driver/src/set_keyspace_handler.hpp | 6 - cpp-driver/src/spsc_queue.hpp | 13 +- cpp-driver/src/ssl.cpp | 3 +- cpp-driver/src/ssl/ssl_openssl_impl.cpp | 41 +- cpp-driver/src/ssl/ssl_openssl_impl.hpp | 2 +- cpp-driver/src/startup_request.cpp | 2 +- cpp-driver/src/startup_request.hpp | 2 +- cpp-driver/src/statement.cpp | 550 +- cpp-driver/src/statement.hpp | 188 +- cpp-driver/src/stream_manager.hpp | 152 +- cpp-driver/src/string_ref.hpp | 237 +- cpp-driver/src/testing.cpp | 28 +- cpp-driver/src/testing.hpp | 5 +- cpp-driver/src/third_party/boost/Jamroot | 289 - .../src/third_party/boost/LICENSE_1_0.txt | 23 - cpp-driver/src/third_party/boost/README | 14 - .../boost/boost/algorithm/string.hpp | 31 - .../boost/algorithm/string/case_conv.hpp | 176 - .../boost/algorithm/string/classification.hpp | 312 - .../boost/boost/algorithm/string/compare.hpp | 199 - .../boost/boost/algorithm/string/concept.hpp | 83 - .../boost/boost/algorithm/string/config.hpp | 28 - .../boost/algorithm/string/constants.hpp | 36 - .../algorithm/string/detail/case_conv.hpp | 123 - .../string/detail/classification.hpp | 353 - .../algorithm/string/detail/find_format.hpp | 204 - .../string/detail/find_format_all.hpp | 273 - .../string/detail/find_format_store.hpp | 89 - .../algorithm/string/detail/find_iterator.hpp | 87 - .../boost/algorithm/string/detail/finder.hpp | 641 -- .../algorithm/string/detail/formatter.hpp | 119 - .../algorithm/string/detail/predicate.hpp | 77 - .../string/detail/replace_storage.hpp | 159 - .../algorithm/string/detail/sequence.hpp | 200 - .../boost/algorithm/string/detail/trim.hpp | 95 - .../boost/algorithm/string/detail/util.hpp | 106 - .../boost/boost/algorithm/string/erase.hpp | 844 --- .../boost/boost/algorithm/string/find.hpp | 334 - .../boost/algorithm/string/find_format.hpp | 287 - .../boost/algorithm/string/find_iterator.hpp | 383 - .../boost/boost/algorithm/string/finder.hpp | 270 - .../boost/algorithm/string/formatter.hpp | 120 - .../boost/algorithm/string/iter_find.hpp | 193 - .../boost/boost/algorithm/string/join.hpp | 145 - .../boost/algorithm/string/predicate.hpp | 475 -- .../algorithm/string/predicate_facade.hpp | 42 - .../boost/boost/algorithm/string/replace.hpp | 928 --- .../algorithm/string/sequence_traits.hpp | 193 - .../boost/boost/algorithm/string/split.hpp | 163 - .../algorithm/string/std/list_traits.hpp | 85 - .../algorithm/string/std/slist_traits.hpp | 85 - .../algorithm/string/std/string_traits.hpp | 52 - .../string/std_containers_traits.hpp | 26 - .../boost/boost/algorithm/string/trim.hpp | 398 -- .../boost/algorithm/string/yes_no_type.hpp | 33 - .../boost/boost/aligned_storage.hpp | 181 - .../src/third_party/boost/boost/assert.hpp | 141 - .../src/third_party/boost/boost/atomic.hpp | 18 - .../third_party/boost/boost/atomic/atomic.hpp | 232 - .../boost/boost/atomic/detail/base.hpp | 605 -- .../boost/atomic/detail/cas128strong.hpp | 290 - .../boost/boost/atomic/detail/cas32strong.hpp | 939 --- .../boost/boost/atomic/detail/cas32weak.hpp | 1017 --- .../boost/boost/atomic/detail/cas64strong.hpp | 264 - .../boost/boost/atomic/detail/config.hpp | 16 - .../boost/boost/atomic/detail/gcc-alpha.hpp | 368 - .../boost/atomic/detail/gcc-armv6plus.hpp | 255 - .../boost/boost/atomic/detail/gcc-atomic.hpp | 1211 ---- .../boost/boost/atomic/detail/gcc-cas.hpp | 160 - .../boost/boost/atomic/detail/gcc-ppc.hpp | 2952 -------- .../boost/boost/atomic/detail/gcc-sparcv9.hpp | 1333 ---- .../boost/boost/atomic/detail/gcc-x86.hpp | 2017 ------ .../boost/boost/atomic/detail/interlocked.hpp | 203 - .../boost/boost/atomic/detail/link.hpp | 50 - .../boost/boost/atomic/detail/linux-arm.hpp | 190 - .../boost/boost/atomic/detail/lockpool.hpp | 91 - .../boost/boost/atomic/detail/platform.hpp | 71 - .../atomic/detail/type-classification.hpp | 45 - .../boost/boost/atomic/detail/windows.hpp | 1669 ----- .../src/third_party/boost/boost/bind.hpp | 24 - .../src/third_party/boost/boost/bind/arg.hpp | 62 - .../src/third_party/boost/boost/bind/bind.hpp | 1751 ----- .../third_party/boost/boost/bind/bind_cc.hpp | 117 - .../boost/boost/bind/bind_mf2_cc.hpp | 228 - .../boost/boost/bind/bind_mf_cc.hpp | 227 - .../boost/boost/bind/bind_template.hpp | 345 - .../third_party/boost/boost/bind/mem_fn.hpp | 389 -- .../boost/boost/bind/mem_fn_cc.hpp | 103 - .../boost/boost/bind/mem_fn_template.hpp | 1047 --- .../boost/boost/bind/mem_fn_vw.hpp | 130 - .../boost/boost/bind/placeholders.hpp | 69 - .../third_party/boost/boost/bind/storage.hpp | 475 -- .../boost/boost/concept/assert.hpp | 46 - .../concept/detail/backward_compatibility.hpp | 16 - .../boost/boost/concept/detail/borland.hpp | 30 - .../boost/concept/detail/concept_def.hpp | 51 - .../boost/concept/detail/concept_undef.hpp | 5 - .../boost/boost/concept/detail/general.hpp | 75 - .../boost/concept/detail/has_constraints.hpp | 50 - .../boost/boost/concept/detail/msvc.hpp | 114 - .../third_party/boost/boost/concept/usage.hpp | 44 - .../third_party/boost/boost/concept_check.hpp | 1083 --- .../src/third_party/boost/boost/config.hpp | 63 - .../boost/boost/config/abi/borland_prefix.hpp | 27 - .../boost/boost/config/abi/borland_suffix.hpp | 12 - .../boost/boost/config/abi/msvc_prefix.hpp | 22 - .../boost/boost/config/abi/msvc_suffix.hpp | 8 - .../boost/boost/config/abi_prefix.hpp | 25 - .../boost/boost/config/abi_suffix.hpp | 27 - .../boost/boost/config/auto_link.hpp | 429 -- .../boost/boost/config/compiler/borland.hpp | 287 - .../boost/boost/config/compiler/clang.hpp | 180 - .../boost/boost/config/compiler/codegear.hpp | 189 - .../boost/boost/config/compiler/comeau.hpp | 59 - .../boost/config/compiler/common_edg.hpp | 112 - .../boost/config/compiler/compaq_cxx.hpp | 19 - .../boost/boost/config/compiler/cray.hpp | 65 - .../boost/config/compiler/digitalmars.hpp | 93 - .../boost/boost/config/compiler/gcc.hpp | 261 - .../boost/boost/config/compiler/gcc_xml.hpp | 64 - .../boost/config/compiler/greenhills.hpp | 28 - .../boost/boost/config/compiler/hp_acc.hpp | 144 - .../boost/boost/config/compiler/intel.hpp | 323 - .../boost/boost/config/compiler/kai.hpp | 33 - .../boost/config/compiler/metrowerks.hpp | 148 - .../boost/boost/config/compiler/mpw.hpp | 90 - .../boost/boost/config/compiler/nvcc.hpp | 16 - .../boost/boost/config/compiler/pathscale.hpp | 83 - .../boost/boost/config/compiler/pgi.hpp | 125 - .../boost/config/compiler/sgi_mipspro.hpp | 29 - .../boost/boost/config/compiler/sunpro_cc.hpp | 153 - .../boost/boost/config/compiler/vacpp.hpp | 131 - .../boost/boost/config/compiler/visualc.hpp | 276 - .../boost/boost/config/no_tr1/cmath.hpp | 28 - .../boost/boost/config/no_tr1/complex.hpp | 28 - .../boost/boost/config/no_tr1/functional.hpp | 28 - .../boost/boost/config/no_tr1/memory.hpp | 28 - .../boost/boost/config/no_tr1/utility.hpp | 28 - .../boost/boost/config/platform/aix.hpp | 33 - .../boost/boost/config/platform/amigaos.hpp | 15 - .../boost/boost/config/platform/beos.hpp | 26 - .../boost/boost/config/platform/bsd.hpp | 86 - .../boost/boost/config/platform/cray.hpp | 18 - .../boost/boost/config/platform/cygwin.hpp | 58 - .../boost/boost/config/platform/hpux.hpp | 87 - .../boost/boost/config/platform/irix.hpp | 31 - .../boost/boost/config/platform/linux.hpp | 103 - .../boost/boost/config/platform/macos.hpp | 87 - .../boost/boost/config/platform/qnxnto.hpp | 31 - .../boost/boost/config/platform/solaris.hpp | 28 - .../boost/boost/config/platform/symbian.hpp | 97 - .../boost/boost/config/platform/vms.hpp | 25 - .../boost/boost/config/platform/vxworks.hpp | 369 - .../boost/boost/config/platform/win32.hpp | 73 - .../boost/boost/config/posix_features.hpp | 95 - .../boost/boost/config/requires_threads.hpp | 92 - .../boost/config/select_compiler_config.hpp | 114 - .../boost/config/select_platform_config.hpp | 105 - .../boost/config/select_stdlib_config.hpp | 85 - .../boost/boost/config/stdlib/dinkumware.hpp | 157 - .../boost/boost/config/stdlib/libcomo.hpp | 72 - .../boost/boost/config/stdlib/libcpp.hpp | 37 - .../boost/boost/config/stdlib/libstdcpp3.hpp | 166 - .../boost/boost/config/stdlib/modena.hpp | 56 - .../boost/boost/config/stdlib/msl.hpp | 84 - .../boost/boost/config/stdlib/roguewave.hpp | 186 - .../boost/boost/config/stdlib/sgi.hpp | 148 - .../boost/boost/config/stdlib/stlport.hpp | 243 - .../boost/boost/config/stdlib/vacpp.hpp | 54 - .../third_party/boost/boost/config/suffix.hpp | 941 --- .../third_party/boost/boost/config/user.hpp | 124 - .../boost/boost/config/warning_disable.hpp | 47 - .../src/third_party/boost/boost/cstdint.hpp | 545 -- .../boost/boost/current_function.hpp | 68 - .../boost/boost/detail/container_fwd.hpp | 162 - .../boost/boost/detail/indirect_traits.hpp | 487 -- .../boost/boost/detail/interlocked.hpp | 210 - .../boost/detail/is_function_ref_tester.hpp | 136 - .../boost/boost/detail/iterator.hpp | 494 -- .../boost/detail/no_exceptions_support.hpp | 87 - .../boost/boost/detail/sp_typeinfo.hpp | 135 - .../boost/boost/detail/workaround.hpp | 267 - .../exception/detail/attribute_noreturn.hpp | 17 - .../boost/boost/exception/exception.hpp | 483 -- .../src/third_party/boost/boost/function.hpp | 66 - .../function/detail/function_iterate.hpp | 16 - .../function/detail/gen_maybe_include.pl | 37 - .../boost/function/detail/maybe_include.hpp | 267 - .../boost/boost/function/detail/prologue.hpp | 26 - .../boost/boost/function/function0.hpp | 12 - .../boost/boost/function/function1.hpp | 12 - .../boost/boost/function/function10.hpp | 12 - .../boost/boost/function/function2.hpp | 12 - .../boost/boost/function/function3.hpp | 12 - .../boost/boost/function/function4.hpp | 12 - .../boost/boost/function/function5.hpp | 12 - .../boost/boost/function/function6.hpp | 12 - .../boost/boost/function/function7.hpp | 12 - .../boost/boost/function/function8.hpp | 12 - .../boost/boost/function/function9.hpp | 12 - .../boost/boost/function/function_base.hpp | 910 --- .../boost/boost/function/function_fwd.hpp | 70 - .../boost/function/function_template.hpp | 1185 ---- .../boost/boost/function_equal.hpp | 28 - .../boost/boost/functional/hash.hpp | 7 - .../hash/detail/float_functions.hpp | 336 - .../functional/hash/detail/hash_float.hpp | 271 - .../boost/functional/hash/detail/limits.hpp | 61 - .../boost/functional/hash/extensions.hpp | 379 - .../boost/boost/functional/hash/hash.hpp | 541 -- .../boost/boost/functional/hash/hash_fwd.hpp | 40 - .../third_party/boost/boost/get_pointer.hpp | 48 - .../src/third_party/boost/boost/integer.hpp | 261 - .../boost/boost/integer/integer_mask.hpp | 126 - .../boost/boost/integer/static_log2.hpp | 127 - .../third_party/boost/boost/integer_fwd.hpp | 164 - .../boost/boost/integer_traits.hpp | 261 - .../boost/boost/is_placeholder.hpp | 31 - .../src/third_party/boost/boost/iterator.hpp | 59 - .../boost/iterator/detail/config_def.hpp | 137 - .../boost/iterator/detail/config_undef.hpp | 25 - .../boost/boost/iterator/detail/enable_if.hpp | 86 - .../detail/facade_iterator_category.hpp | 200 - .../boost/boost/iterator/interoperable.hpp | 50 - .../boost/boost/iterator/iterator_adaptor.hpp | 365 - .../boost/iterator/iterator_categories.hpp | 188 - .../boost/iterator/iterator_concepts.hpp | 284 - .../boost/boost/iterator/iterator_facade.hpp | 874 --- .../boost/boost/iterator/iterator_traits.hpp | 92 - .../boost/boost/iterator/reverse_iterator.hpp | 69 - .../boost/iterator/transform_iterator.hpp | 172 - .../src/third_party/boost/boost/limits.hpp | 146 - .../src/third_party/boost/boost/mem_fn.hpp | 24 - .../third_party/boost/boost/memory_order.hpp | 53 - .../third_party/boost/boost/mpl/always.hpp | 39 - .../src/third_party/boost/boost/mpl/and.hpp | 60 - .../src/third_party/boost/boost/mpl/apply.hpp | 229 - .../third_party/boost/boost/mpl/apply_fwd.hpp | 107 - .../boost/boost/mpl/apply_wrap.hpp | 234 - .../src/third_party/boost/boost/mpl/arg.hpp | 131 - .../third_party/boost/boost/mpl/arg_fwd.hpp | 28 - .../third_party/boost/boost/mpl/assert.hpp | 438 -- .../boost/boost/mpl/aux_/adl_barrier.hpp | 48 - .../boost/boost/mpl/aux_/arg_typedef.hpp | 31 - .../boost/boost/mpl/aux_/arity.hpp | 39 - .../boost/boost/mpl/aux_/arity_spec.hpp | 67 - .../boost/boost/mpl/aux_/common_name_wknd.hpp | 34 - .../boost/boost/mpl/aux_/config/adl.hpp | 40 - .../boost/boost/mpl/aux_/config/arrays.hpp | 30 - .../boost/boost/mpl/aux_/config/bcc.hpp | 28 - .../boost/boost/mpl/aux_/config/bind.hpp | 33 - .../boost/boost/mpl/aux_/config/compiler.hpp | 66 - .../boost/boost/mpl/aux_/config/ctps.hpp | 30 - .../mpl/aux_/config/dmc_ambiguous_ctps.hpp | 27 - .../boost/boost/mpl/aux_/config/dtp.hpp | 46 - .../boost/boost/mpl/aux_/config/eti.hpp | 47 - .../boost/boost/mpl/aux_/config/gcc.hpp | 23 - .../boost/boost/mpl/aux_/config/has_apply.hpp | 32 - .../boost/boost/mpl/aux_/config/has_xxx.hpp | 34 - .../boost/boost/mpl/aux_/config/integral.hpp | 38 - .../boost/boost/mpl/aux_/config/intel.hpp | 21 - .../boost/boost/mpl/aux_/config/lambda.hpp | 32 - .../boost/boost/mpl/aux_/config/msvc.hpp | 21 - .../boost/mpl/aux_/config/msvc_typename.hpp | 26 - .../boost/boost/mpl/aux_/config/nttp.hpp | 41 - .../mpl/aux_/config/overload_resolution.hpp | 29 - .../boost/mpl/aux_/config/pp_counter.hpp | 26 - .../boost/mpl/aux_/config/preprocessor.hpp | 39 - .../boost/mpl/aux_/config/static_constant.hpp | 25 - .../boost/boost/mpl/aux_/config/ttp.hpp | 41 - .../mpl/aux_/config/use_preprocessed.hpp | 19 - .../boost/mpl/aux_/config/workaround.hpp | 19 - .../boost/boost/mpl/aux_/count_args.hpp | 105 - .../boost/boost/mpl/aux_/full_lambda.hpp | 354 - .../boost/boost/mpl/aux_/has_apply.hpp | 32 - .../boost/boost/mpl/aux_/has_rebind.hpp | 99 - .../boost/boost/mpl/aux_/has_type.hpp | 23 - .../boost/mpl/aux_/include_preprocessed.hpp | 42 - .../boost/boost/mpl/aux_/integral_wrapper.hpp | 93 - .../boost/mpl/aux_/lambda_arity_param.hpp | 25 - .../boost/boost/mpl/aux_/lambda_no_ctps.hpp | 193 - .../boost/boost/mpl/aux_/lambda_support.hpp | 169 - .../boost/boost/mpl/aux_/logical_op.hpp | 165 - .../boost/boost/mpl/aux_/msvc_dtw.hpp | 68 - .../boost/boost/mpl/aux_/msvc_is_class.hpp | 58 - .../boost/boost/mpl/aux_/msvc_never_true.hpp | 34 - .../third_party/boost/boost/mpl/aux_/na.hpp | 95 - .../boost/boost/mpl/aux_/na_assert.hpp | 34 - .../boost/boost/mpl/aux_/na_fwd.hpp | 31 - .../boost/boost/mpl/aux_/na_spec.hpp | 175 - .../boost/boost/mpl/aux_/nested_type_wknd.hpp | 48 - .../boost/boost/mpl/aux_/nttp_decl.hpp | 35 - .../preprocessed/bcc/advance_backward.hpp | 97 - .../aux_/preprocessed/bcc/advance_forward.hpp | 97 - .../boost/mpl/aux_/preprocessed/bcc/and.hpp | 69 - .../boost/mpl/aux_/preprocessed/bcc/apply.hpp | 169 - .../mpl/aux_/preprocessed/bcc/apply_fwd.hpp | 52 - .../mpl/aux_/preprocessed/bcc/apply_wrap.hpp | 461 -- .../boost/mpl/aux_/preprocessed/bcc/arg.hpp | 117 - .../mpl/aux_/preprocessed/bcc/basic_bind.hpp | 300 - .../boost/mpl/aux_/preprocessed/bcc/bind.hpp | 397 -- .../mpl/aux_/preprocessed/bcc/bind_fwd.hpp | 46 - .../mpl/aux_/preprocessed/bcc/bitand.hpp | 147 - .../boost/mpl/aux_/preprocessed/bcc/bitor.hpp | 147 - .../mpl/aux_/preprocessed/bcc/bitxor.hpp | 147 - .../boost/mpl/aux_/preprocessed/bcc/deque.hpp | 323 - .../mpl/aux_/preprocessed/bcc/divides.hpp | 146 - .../mpl/aux_/preprocessed/bcc/equal_to.hpp | 94 - .../mpl/aux_/preprocessed/bcc/fold_impl.hpp | 180 - .../mpl/aux_/preprocessed/bcc/full_lambda.hpp | 558 -- .../mpl/aux_/preprocessed/bcc/greater.hpp | 94 - .../aux_/preprocessed/bcc/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/bcc/inherit.hpp | 139 - .../preprocessed/bcc/iter_fold_if_impl.hpp | 133 - .../aux_/preprocessed/bcc/iter_fold_impl.hpp | 180 - .../aux_/preprocessed/bcc/lambda_no_ctps.hpp | 229 - .../boost/mpl/aux_/preprocessed/bcc/less.hpp | 94 - .../mpl/aux_/preprocessed/bcc/less_equal.hpp | 94 - .../boost/mpl/aux_/preprocessed/bcc/list.hpp | 323 - .../mpl/aux_/preprocessed/bcc/list_c.hpp | 328 - .../boost/mpl/aux_/preprocessed/bcc/map.hpp | 323 - .../boost/mpl/aux_/preprocessed/bcc/minus.hpp | 146 - .../mpl/aux_/preprocessed/bcc/modulus.hpp | 101 - .../aux_/preprocessed/bcc/not_equal_to.hpp | 94 - .../boost/mpl/aux_/preprocessed/bcc/or.hpp | 69 - .../aux_/preprocessed/bcc/placeholders.hpp | 105 - .../boost/mpl/aux_/preprocessed/bcc/plus.hpp | 146 - .../boost/mpl/aux_/preprocessed/bcc/quote.hpp | 119 - .../preprocessed/bcc/reverse_fold_impl.hpp | 295 - .../bcc/reverse_iter_fold_impl.hpp | 295 - .../boost/mpl/aux_/preprocessed/bcc/set.hpp | 323 - .../boost/mpl/aux_/preprocessed/bcc/set_c.hpp | 328 - .../mpl/aux_/preprocessed/bcc/shift_left.hpp | 99 - .../mpl/aux_/preprocessed/bcc/shift_right.hpp | 99 - .../aux_/preprocessed/bcc/template_arity.hpp | 40 - .../boost/mpl/aux_/preprocessed/bcc/times.hpp | 146 - .../mpl/aux_/preprocessed/bcc/unpack_args.hpp | 97 - .../mpl/aux_/preprocessed/bcc/vector.hpp | 323 - .../mpl/aux_/preprocessed/bcc/vector_c.hpp | 309 - .../preprocessed/bcc551/advance_backward.hpp | 97 - .../preprocessed/bcc551/advance_forward.hpp | 97 - .../mpl/aux_/preprocessed/bcc551/and.hpp | 69 - .../mpl/aux_/preprocessed/bcc551/apply.hpp | 169 - .../aux_/preprocessed/bcc551/apply_fwd.hpp | 52 - .../aux_/preprocessed/bcc551/apply_wrap.hpp | 456 -- .../mpl/aux_/preprocessed/bcc551/arg.hpp | 123 - .../aux_/preprocessed/bcc551/basic_bind.hpp | 306 - .../mpl/aux_/preprocessed/bcc551/bind.hpp | 403 -- .../mpl/aux_/preprocessed/bcc551/bind_fwd.hpp | 46 - .../mpl/aux_/preprocessed/bcc551/bitand.hpp | 147 - .../mpl/aux_/preprocessed/bcc551/bitor.hpp | 147 - .../mpl/aux_/preprocessed/bcc551/bitxor.hpp | 147 - .../mpl/aux_/preprocessed/bcc551/deque.hpp | 323 - .../mpl/aux_/preprocessed/bcc551/divides.hpp | 146 - .../mpl/aux_/preprocessed/bcc551/equal_to.hpp | 94 - .../aux_/preprocessed/bcc551/fold_impl.hpp | 180 - .../aux_/preprocessed/bcc551/full_lambda.hpp | 558 -- .../mpl/aux_/preprocessed/bcc551/greater.hpp | 94 - .../preprocessed/bcc551/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/bcc551/inherit.hpp | 141 - .../preprocessed/bcc551/iter_fold_if_impl.hpp | 133 - .../preprocessed/bcc551/iter_fold_impl.hpp | 180 - .../preprocessed/bcc551/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/bcc551/less.hpp | 94 - .../aux_/preprocessed/bcc551/less_equal.hpp | 94 - .../mpl/aux_/preprocessed/bcc551/list.hpp | 323 - .../mpl/aux_/preprocessed/bcc551/list_c.hpp | 328 - .../mpl/aux_/preprocessed/bcc551/map.hpp | 323 - .../mpl/aux_/preprocessed/bcc551/minus.hpp | 146 - .../mpl/aux_/preprocessed/bcc551/modulus.hpp | 101 - .../aux_/preprocessed/bcc551/not_equal_to.hpp | 94 - .../boost/mpl/aux_/preprocessed/bcc551/or.hpp | 69 - .../aux_/preprocessed/bcc551/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/bcc551/plus.hpp | 146 - .../mpl/aux_/preprocessed/bcc551/quote.hpp | 11 - .../preprocessed/bcc551/reverse_fold_impl.hpp | 295 - .../bcc551/reverse_iter_fold_impl.hpp | 295 - .../mpl/aux_/preprocessed/bcc551/set.hpp | 323 - .../mpl/aux_/preprocessed/bcc551/set_c.hpp | 328 - .../aux_/preprocessed/bcc551/shift_left.hpp | 99 - .../aux_/preprocessed/bcc551/shift_right.hpp | 99 - .../preprocessed/bcc551/template_arity.hpp | 40 - .../mpl/aux_/preprocessed/bcc551/times.hpp | 146 - .../aux_/preprocessed/bcc551/unpack_args.hpp | 97 - .../mpl/aux_/preprocessed/bcc551/vector.hpp | 323 - .../mpl/aux_/preprocessed/bcc551/vector_c.hpp | 309 - .../bcc_pre590/advance_backward.hpp | 97 - .../bcc_pre590/advance_forward.hpp | 97 - .../mpl/aux_/preprocessed/bcc_pre590/and.hpp | 69 - .../aux_/preprocessed/bcc_pre590/apply.hpp | 169 - .../preprocessed/bcc_pre590/apply_fwd.hpp | 52 - .../preprocessed/bcc_pre590/apply_wrap.hpp | 456 -- .../mpl/aux_/preprocessed/bcc_pre590/arg.hpp | 117 - .../preprocessed/bcc_pre590/basic_bind.hpp | 300 - .../mpl/aux_/preprocessed/bcc_pre590/bind.hpp | 397 -- .../aux_/preprocessed/bcc_pre590/bind_fwd.hpp | 46 - .../aux_/preprocessed/bcc_pre590/bitand.hpp | 147 - .../aux_/preprocessed/bcc_pre590/bitor.hpp | 147 - .../aux_/preprocessed/bcc_pre590/bitxor.hpp | 147 - .../aux_/preprocessed/bcc_pre590/deque.hpp | 323 - .../aux_/preprocessed/bcc_pre590/divides.hpp | 146 - .../aux_/preprocessed/bcc_pre590/equal_to.hpp | 94 - .../preprocessed/bcc_pre590/fold_impl.hpp | 180 - .../preprocessed/bcc_pre590/full_lambda.hpp | 558 -- .../aux_/preprocessed/bcc_pre590/greater.hpp | 94 - .../preprocessed/bcc_pre590/greater_equal.hpp | 94 - .../aux_/preprocessed/bcc_pre590/inherit.hpp | 139 - .../bcc_pre590/iter_fold_if_impl.hpp | 133 - .../bcc_pre590/iter_fold_impl.hpp | 180 - .../bcc_pre590/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/bcc_pre590/less.hpp | 94 - .../preprocessed/bcc_pre590/less_equal.hpp | 94 - .../mpl/aux_/preprocessed/bcc_pre590/list.hpp | 323 - .../aux_/preprocessed/bcc_pre590/list_c.hpp | 328 - .../mpl/aux_/preprocessed/bcc_pre590/map.hpp | 323 - .../aux_/preprocessed/bcc_pre590/minus.hpp | 146 - .../aux_/preprocessed/bcc_pre590/modulus.hpp | 101 - .../preprocessed/bcc_pre590/not_equal_to.hpp | 94 - .../mpl/aux_/preprocessed/bcc_pre590/or.hpp | 69 - .../preprocessed/bcc_pre590/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/bcc_pre590/plus.hpp | 146 - .../aux_/preprocessed/bcc_pre590/quote.hpp | 11 - .../bcc_pre590/reverse_fold_impl.hpp | 295 - .../bcc_pre590/reverse_iter_fold_impl.hpp | 295 - .../mpl/aux_/preprocessed/bcc_pre590/set.hpp | 323 - .../aux_/preprocessed/bcc_pre590/set_c.hpp | 328 - .../preprocessed/bcc_pre590/shift_left.hpp | 99 - .../preprocessed/bcc_pre590/shift_right.hpp | 99 - .../bcc_pre590/template_arity.hpp | 40 - .../aux_/preprocessed/bcc_pre590/times.hpp | 146 - .../preprocessed/bcc_pre590/unpack_args.hpp | 97 - .../aux_/preprocessed/bcc_pre590/vector.hpp | 323 - .../aux_/preprocessed/bcc_pre590/vector_c.hpp | 309 - .../preprocessed/dmc/advance_backward.hpp | 97 - .../aux_/preprocessed/dmc/advance_forward.hpp | 97 - .../boost/mpl/aux_/preprocessed/dmc/and.hpp | 69 - .../boost/mpl/aux_/preprocessed/dmc/apply.hpp | 169 - .../mpl/aux_/preprocessed/dmc/apply_fwd.hpp | 52 - .../mpl/aux_/preprocessed/dmc/apply_wrap.hpp | 84 - .../boost/mpl/aux_/preprocessed/dmc/arg.hpp | 123 - .../mpl/aux_/preprocessed/dmc/basic_bind.hpp | 406 -- .../boost/mpl/aux_/preprocessed/dmc/bind.hpp | 515 -- .../mpl/aux_/preprocessed/dmc/bind_fwd.hpp | 53 - .../mpl/aux_/preprocessed/dmc/bitand.hpp | 147 - .../boost/mpl/aux_/preprocessed/dmc/bitor.hpp | 147 - .../mpl/aux_/preprocessed/dmc/bitxor.hpp | 147 - .../boost/mpl/aux_/preprocessed/dmc/deque.hpp | 323 - .../mpl/aux_/preprocessed/dmc/divides.hpp | 146 - .../mpl/aux_/preprocessed/dmc/equal_to.hpp | 94 - .../mpl/aux_/preprocessed/dmc/fold_impl.hpp | 180 - .../mpl/aux_/preprocessed/dmc/full_lambda.hpp | 536 -- .../mpl/aux_/preprocessed/dmc/greater.hpp | 94 - .../aux_/preprocessed/dmc/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/dmc/inherit.hpp | 141 - .../preprocessed/dmc/iter_fold_if_impl.hpp | 133 - .../aux_/preprocessed/dmc/iter_fold_impl.hpp | 180 - .../aux_/preprocessed/dmc/lambda_no_ctps.hpp | 229 - .../boost/mpl/aux_/preprocessed/dmc/less.hpp | 94 - .../mpl/aux_/preprocessed/dmc/less_equal.hpp | 94 - .../boost/mpl/aux_/preprocessed/dmc/list.hpp | 323 - .../mpl/aux_/preprocessed/dmc/list_c.hpp | 328 - .../boost/mpl/aux_/preprocessed/dmc/map.hpp | 323 - .../boost/mpl/aux_/preprocessed/dmc/minus.hpp | 146 - .../mpl/aux_/preprocessed/dmc/modulus.hpp | 101 - .../aux_/preprocessed/dmc/not_equal_to.hpp | 94 - .../boost/mpl/aux_/preprocessed/dmc/or.hpp | 69 - .../aux_/preprocessed/dmc/placeholders.hpp | 105 - .../boost/mpl/aux_/preprocessed/dmc/plus.hpp | 146 - .../boost/mpl/aux_/preprocessed/dmc/quote.hpp | 123 - .../preprocessed/dmc/reverse_fold_impl.hpp | 231 - .../dmc/reverse_iter_fold_impl.hpp | 231 - .../boost/mpl/aux_/preprocessed/dmc/set.hpp | 323 - .../boost/mpl/aux_/preprocessed/dmc/set_c.hpp | 328 - .../mpl/aux_/preprocessed/dmc/shift_left.hpp | 99 - .../mpl/aux_/preprocessed/dmc/shift_right.hpp | 99 - .../aux_/preprocessed/dmc/template_arity.hpp | 11 - .../boost/mpl/aux_/preprocessed/dmc/times.hpp | 146 - .../mpl/aux_/preprocessed/dmc/unpack_args.hpp | 94 - .../mpl/aux_/preprocessed/dmc/vector.hpp | 323 - .../mpl/aux_/preprocessed/dmc/vector_c.hpp | 309 - .../preprocessed/gcc/advance_backward.hpp | 97 - .../aux_/preprocessed/gcc/advance_forward.hpp | 97 - .../boost/mpl/aux_/preprocessed/gcc/and.hpp | 69 - .../boost/mpl/aux_/preprocessed/gcc/apply.hpp | 169 - .../mpl/aux_/preprocessed/gcc/apply_fwd.hpp | 52 - .../mpl/aux_/preprocessed/gcc/apply_wrap.hpp | 84 - .../boost/mpl/aux_/preprocessed/gcc/arg.hpp | 123 - .../mpl/aux_/preprocessed/gcc/basic_bind.hpp | 440 -- .../boost/mpl/aux_/preprocessed/gcc/bind.hpp | 561 -- .../mpl/aux_/preprocessed/gcc/bind_fwd.hpp | 52 - .../mpl/aux_/preprocessed/gcc/bitand.hpp | 147 - .../boost/mpl/aux_/preprocessed/gcc/bitor.hpp | 147 - .../mpl/aux_/preprocessed/gcc/bitxor.hpp | 147 - .../boost/mpl/aux_/preprocessed/gcc/deque.hpp | 323 - .../mpl/aux_/preprocessed/gcc/divides.hpp | 146 - .../mpl/aux_/preprocessed/gcc/equal_to.hpp | 94 - .../mpl/aux_/preprocessed/gcc/fold_impl.hpp | 180 - .../mpl/aux_/preprocessed/gcc/full_lambda.hpp | 558 -- .../mpl/aux_/preprocessed/gcc/greater.hpp | 94 - .../aux_/preprocessed/gcc/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/gcc/inherit.hpp | 141 - .../preprocessed/gcc/iter_fold_if_impl.hpp | 133 - .../aux_/preprocessed/gcc/iter_fold_impl.hpp | 180 - .../aux_/preprocessed/gcc/lambda_no_ctps.hpp | 229 - .../boost/mpl/aux_/preprocessed/gcc/less.hpp | 94 - .../mpl/aux_/preprocessed/gcc/less_equal.hpp | 94 - .../boost/mpl/aux_/preprocessed/gcc/list.hpp | 323 - .../mpl/aux_/preprocessed/gcc/list_c.hpp | 328 - .../boost/mpl/aux_/preprocessed/gcc/map.hpp | 323 - .../boost/mpl/aux_/preprocessed/gcc/minus.hpp | 146 - .../mpl/aux_/preprocessed/gcc/modulus.hpp | 101 - .../aux_/preprocessed/gcc/not_equal_to.hpp | 94 - .../boost/mpl/aux_/preprocessed/gcc/or.hpp | 69 - .../aux_/preprocessed/gcc/placeholders.hpp | 105 - .../boost/mpl/aux_/preprocessed/gcc/plus.hpp | 146 - .../boost/mpl/aux_/preprocessed/gcc/quote.hpp | 123 - .../preprocessed/gcc/reverse_fold_impl.hpp | 231 - .../gcc/reverse_iter_fold_impl.hpp | 231 - .../boost/mpl/aux_/preprocessed/gcc/set.hpp | 323 - .../boost/mpl/aux_/preprocessed/gcc/set_c.hpp | 328 - .../mpl/aux_/preprocessed/gcc/shift_left.hpp | 99 - .../mpl/aux_/preprocessed/gcc/shift_right.hpp | 99 - .../aux_/preprocessed/gcc/template_arity.hpp | 97 - .../boost/mpl/aux_/preprocessed/gcc/times.hpp | 146 - .../mpl/aux_/preprocessed/gcc/unpack_args.hpp | 94 - .../mpl/aux_/preprocessed/gcc/vector.hpp | 323 - .../mpl/aux_/preprocessed/gcc/vector_c.hpp | 309 - .../preprocessed/msvc60/advance_backward.hpp | 132 - .../preprocessed/msvc60/advance_forward.hpp | 132 - .../mpl/aux_/preprocessed/msvc60/and.hpp | 73 - .../mpl/aux_/preprocessed/msvc60/apply.hpp | 166 - .../aux_/preprocessed/msvc60/apply_fwd.hpp | 46 - .../aux_/preprocessed/msvc60/apply_wrap.hpp | 247 - .../mpl/aux_/preprocessed/msvc60/arg.hpp | 123 - .../aux_/preprocessed/msvc60/basic_bind.hpp | 328 - .../mpl/aux_/preprocessed/msvc60/bind.hpp | 432 -- .../mpl/aux_/preprocessed/msvc60/bind_fwd.hpp | 46 - .../mpl/aux_/preprocessed/msvc60/bitand.hpp | 149 - .../mpl/aux_/preprocessed/msvc60/bitor.hpp | 149 - .../mpl/aux_/preprocessed/msvc60/bitxor.hpp | 149 - .../mpl/aux_/preprocessed/msvc60/deque.hpp | 556 -- .../mpl/aux_/preprocessed/msvc60/divides.hpp | 148 - .../mpl/aux_/preprocessed/msvc60/equal_to.hpp | 102 - .../aux_/preprocessed/msvc60/fold_impl.hpp | 293 - .../aux_/preprocessed/msvc60/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/msvc60/greater.hpp | 102 - .../preprocessed/msvc60/greater_equal.hpp | 102 - .../mpl/aux_/preprocessed/msvc60/inherit.hpp | 166 - .../preprocessed/msvc60/iter_fold_if_impl.hpp | 133 - .../preprocessed/msvc60/iter_fold_impl.hpp | 293 - .../preprocessed/msvc60/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/msvc60/less.hpp | 102 - .../aux_/preprocessed/msvc60/less_equal.hpp | 102 - .../mpl/aux_/preprocessed/msvc60/list.hpp | 556 -- .../mpl/aux_/preprocessed/msvc60/list_c.hpp | 534 -- .../mpl/aux_/preprocessed/msvc60/map.hpp | 556 -- .../mpl/aux_/preprocessed/msvc60/minus.hpp | 148 - .../mpl/aux_/preprocessed/msvc60/modulus.hpp | 115 - .../aux_/preprocessed/msvc60/not_equal_to.hpp | 102 - .../boost/mpl/aux_/preprocessed/msvc60/or.hpp | 73 - .../aux_/preprocessed/msvc60/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/msvc60/plus.hpp | 148 - .../mpl/aux_/preprocessed/msvc60/quote.hpp | 11 - .../preprocessed/msvc60/reverse_fold_impl.hpp | 343 - .../msvc60/reverse_iter_fold_impl.hpp | 343 - .../mpl/aux_/preprocessed/msvc60/set.hpp | 556 -- .../mpl/aux_/preprocessed/msvc60/set_c.hpp | 534 -- .../aux_/preprocessed/msvc60/shift_left.hpp | 114 - .../aux_/preprocessed/msvc60/shift_right.hpp | 114 - .../preprocessed/msvc60/template_arity.hpp | 46 - .../mpl/aux_/preprocessed/msvc60/times.hpp | 148 - .../aux_/preprocessed/msvc60/unpack_args.hpp | 109 - .../mpl/aux_/preprocessed/msvc60/vector.hpp | 556 -- .../mpl/aux_/preprocessed/msvc60/vector_c.hpp | 534 -- .../preprocessed/msvc70/advance_backward.hpp | 97 - .../preprocessed/msvc70/advance_forward.hpp | 97 - .../mpl/aux_/preprocessed/msvc70/and.hpp | 71 - .../mpl/aux_/preprocessed/msvc70/apply.hpp | 160 - .../aux_/preprocessed/msvc70/apply_fwd.hpp | 46 - .../aux_/preprocessed/msvc70/apply_wrap.hpp | 138 - .../mpl/aux_/preprocessed/msvc70/arg.hpp | 123 - .../aux_/preprocessed/msvc70/basic_bind.hpp | 328 - .../mpl/aux_/preprocessed/msvc70/bind.hpp | 432 -- .../mpl/aux_/preprocessed/msvc70/bind_fwd.hpp | 46 - .../mpl/aux_/preprocessed/msvc70/bitand.hpp | 151 - .../mpl/aux_/preprocessed/msvc70/bitor.hpp | 151 - .../mpl/aux_/preprocessed/msvc70/bitxor.hpp | 151 - .../mpl/aux_/preprocessed/msvc70/deque.hpp | 556 -- .../mpl/aux_/preprocessed/msvc70/divides.hpp | 150 - .../mpl/aux_/preprocessed/msvc70/equal_to.hpp | 102 - .../aux_/preprocessed/msvc70/fold_impl.hpp | 245 - .../aux_/preprocessed/msvc70/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/msvc70/greater.hpp | 102 - .../preprocessed/msvc70/greater_equal.hpp | 102 - .../mpl/aux_/preprocessed/msvc70/inherit.hpp | 166 - .../preprocessed/msvc70/iter_fold_if_impl.hpp | 133 - .../preprocessed/msvc70/iter_fold_impl.hpp | 245 - .../preprocessed/msvc70/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/msvc70/less.hpp | 102 - .../aux_/preprocessed/msvc70/less_equal.hpp | 102 - .../mpl/aux_/preprocessed/msvc70/list.hpp | 556 -- .../mpl/aux_/preprocessed/msvc70/list_c.hpp | 534 -- .../mpl/aux_/preprocessed/msvc70/map.hpp | 556 -- .../mpl/aux_/preprocessed/msvc70/minus.hpp | 150 - .../mpl/aux_/preprocessed/msvc70/modulus.hpp | 115 - .../aux_/preprocessed/msvc70/not_equal_to.hpp | 102 - .../boost/mpl/aux_/preprocessed/msvc70/or.hpp | 71 - .../aux_/preprocessed/msvc70/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/msvc70/plus.hpp | 150 - .../mpl/aux_/preprocessed/msvc70/quote.hpp | 116 - .../preprocessed/msvc70/reverse_fold_impl.hpp | 295 - .../msvc70/reverse_iter_fold_impl.hpp | 295 - .../mpl/aux_/preprocessed/msvc70/set.hpp | 556 -- .../mpl/aux_/preprocessed/msvc70/set_c.hpp | 534 -- .../aux_/preprocessed/msvc70/shift_left.hpp | 114 - .../aux_/preprocessed/msvc70/shift_right.hpp | 114 - .../preprocessed/msvc70/template_arity.hpp | 46 - .../mpl/aux_/preprocessed/msvc70/times.hpp | 150 - .../aux_/preprocessed/msvc70/unpack_args.hpp | 109 - .../mpl/aux_/preprocessed/msvc70/vector.hpp | 556 -- .../mpl/aux_/preprocessed/msvc70/vector_c.hpp | 534 -- .../preprocessed/mwcw/advance_backward.hpp | 97 - .../preprocessed/mwcw/advance_forward.hpp | 97 - .../boost/mpl/aux_/preprocessed/mwcw/and.hpp | 69 - .../mpl/aux_/preprocessed/mwcw/apply.hpp | 169 - .../mpl/aux_/preprocessed/mwcw/apply_fwd.hpp | 52 - .../mpl/aux_/preprocessed/mwcw/apply_wrap.hpp | 456 -- .../boost/mpl/aux_/preprocessed/mwcw/arg.hpp | 123 - .../mpl/aux_/preprocessed/mwcw/basic_bind.hpp | 440 -- .../boost/mpl/aux_/preprocessed/mwcw/bind.hpp | 561 -- .../mpl/aux_/preprocessed/mwcw/bind_fwd.hpp | 52 - .../mpl/aux_/preprocessed/mwcw/bitand.hpp | 147 - .../mpl/aux_/preprocessed/mwcw/bitor.hpp | 147 - .../mpl/aux_/preprocessed/mwcw/bitxor.hpp | 147 - .../mpl/aux_/preprocessed/mwcw/deque.hpp | 323 - .../mpl/aux_/preprocessed/mwcw/divides.hpp | 146 - .../mpl/aux_/preprocessed/mwcw/equal_to.hpp | 94 - .../mpl/aux_/preprocessed/mwcw/fold_impl.hpp | 180 - .../aux_/preprocessed/mwcw/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/mwcw/greater.hpp | 94 - .../aux_/preprocessed/mwcw/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/mwcw/inherit.hpp | 141 - .../preprocessed/mwcw/iter_fold_if_impl.hpp | 133 - .../aux_/preprocessed/mwcw/iter_fold_impl.hpp | 180 - .../aux_/preprocessed/mwcw/lambda_no_ctps.hpp | 229 - .../boost/mpl/aux_/preprocessed/mwcw/less.hpp | 94 - .../mpl/aux_/preprocessed/mwcw/less_equal.hpp | 94 - .../boost/mpl/aux_/preprocessed/mwcw/list.hpp | 323 - .../mpl/aux_/preprocessed/mwcw/list_c.hpp | 328 - .../boost/mpl/aux_/preprocessed/mwcw/map.hpp | 323 - .../mpl/aux_/preprocessed/mwcw/minus.hpp | 146 - .../mpl/aux_/preprocessed/mwcw/modulus.hpp | 101 - .../aux_/preprocessed/mwcw/not_equal_to.hpp | 94 - .../boost/mpl/aux_/preprocessed/mwcw/or.hpp | 69 - .../aux_/preprocessed/mwcw/placeholders.hpp | 105 - .../boost/mpl/aux_/preprocessed/mwcw/plus.hpp | 146 - .../mpl/aux_/preprocessed/mwcw/quote.hpp | 123 - .../preprocessed/mwcw/reverse_fold_impl.hpp | 231 - .../mwcw/reverse_iter_fold_impl.hpp | 231 - .../boost/mpl/aux_/preprocessed/mwcw/set.hpp | 323 - .../mpl/aux_/preprocessed/mwcw/set_c.hpp | 328 - .../mpl/aux_/preprocessed/mwcw/shift_left.hpp | 99 - .../aux_/preprocessed/mwcw/shift_right.hpp | 99 - .../aux_/preprocessed/mwcw/template_arity.hpp | 11 - .../mpl/aux_/preprocessed/mwcw/times.hpp | 146 - .../aux_/preprocessed/mwcw/unpack_args.hpp | 94 - .../mpl/aux_/preprocessed/mwcw/vector.hpp | 323 - .../mpl/aux_/preprocessed/mwcw/vector_c.hpp | 309 - .../preprocessed/no_ctps/advance_backward.hpp | 97 - .../preprocessed/no_ctps/advance_forward.hpp | 97 - .../mpl/aux_/preprocessed/no_ctps/and.hpp | 73 - .../mpl/aux_/preprocessed/no_ctps/apply.hpp | 268 - .../aux_/preprocessed/no_ctps/apply_fwd.hpp | 50 - .../aux_/preprocessed/no_ctps/apply_wrap.hpp | 78 - .../mpl/aux_/preprocessed/no_ctps/arg.hpp | 123 - .../aux_/preprocessed/no_ctps/basic_bind.hpp | 486 -- .../mpl/aux_/preprocessed/no_ctps/bind.hpp | 590 -- .../aux_/preprocessed/no_ctps/bind_fwd.hpp | 52 - .../mpl/aux_/preprocessed/no_ctps/bitand.hpp | 134 - .../mpl/aux_/preprocessed/no_ctps/bitor.hpp | 134 - .../mpl/aux_/preprocessed/no_ctps/bitxor.hpp | 134 - .../mpl/aux_/preprocessed/no_ctps/deque.hpp | 556 -- .../mpl/aux_/preprocessed/no_ctps/divides.hpp | 133 - .../aux_/preprocessed/no_ctps/equal_to.hpp | 94 - .../aux_/preprocessed/no_ctps/fold_impl.hpp | 245 - .../aux_/preprocessed/no_ctps/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/no_ctps/greater.hpp | 94 - .../preprocessed/no_ctps/greater_equal.hpp | 94 - .../mpl/aux_/preprocessed/no_ctps/inherit.hpp | 166 - .../no_ctps/iter_fold_if_impl.hpp | 133 - .../preprocessed/no_ctps/iter_fold_impl.hpp | 245 - .../preprocessed/no_ctps/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/no_ctps/less.hpp | 94 - .../aux_/preprocessed/no_ctps/less_equal.hpp | 94 - .../mpl/aux_/preprocessed/no_ctps/list.hpp | 556 -- .../mpl/aux_/preprocessed/no_ctps/list_c.hpp | 534 -- .../mpl/aux_/preprocessed/no_ctps/map.hpp | 556 -- .../mpl/aux_/preprocessed/no_ctps/minus.hpp | 133 - .../mpl/aux_/preprocessed/no_ctps/modulus.hpp | 101 - .../preprocessed/no_ctps/not_equal_to.hpp | 94 - .../mpl/aux_/preprocessed/no_ctps/or.hpp | 73 - .../preprocessed/no_ctps/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/no_ctps/plus.hpp | 133 - .../mpl/aux_/preprocessed/no_ctps/quote.hpp | 116 - .../no_ctps/reverse_fold_impl.hpp | 295 - .../no_ctps/reverse_iter_fold_impl.hpp | 295 - .../mpl/aux_/preprocessed/no_ctps/set.hpp | 556 -- .../mpl/aux_/preprocessed/no_ctps/set_c.hpp | 534 -- .../aux_/preprocessed/no_ctps/shift_left.hpp | 99 - .../aux_/preprocessed/no_ctps/shift_right.hpp | 99 - .../preprocessed/no_ctps/template_arity.hpp | 40 - .../mpl/aux_/preprocessed/no_ctps/times.hpp | 133 - .../aux_/preprocessed/no_ctps/unpack_args.hpp | 109 - .../mpl/aux_/preprocessed/no_ctps/vector.hpp | 556 -- .../aux_/preprocessed/no_ctps/vector_c.hpp | 534 -- .../preprocessed/no_ttp/advance_backward.hpp | 97 - .../preprocessed/no_ttp/advance_forward.hpp | 97 - .../mpl/aux_/preprocessed/no_ttp/and.hpp | 69 - .../mpl/aux_/preprocessed/no_ttp/apply.hpp | 169 - .../aux_/preprocessed/no_ttp/apply_fwd.hpp | 52 - .../aux_/preprocessed/no_ttp/apply_wrap.hpp | 84 - .../mpl/aux_/preprocessed/no_ttp/arg.hpp | 123 - .../aux_/preprocessed/no_ttp/basic_bind.hpp | 369 - .../mpl/aux_/preprocessed/no_ttp/bind.hpp | 466 -- .../mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp | 52 - .../mpl/aux_/preprocessed/no_ttp/bitand.hpp | 157 - .../mpl/aux_/preprocessed/no_ttp/bitor.hpp | 157 - .../mpl/aux_/preprocessed/no_ttp/bitxor.hpp | 157 - .../mpl/aux_/preprocessed/no_ttp/deque.hpp | 323 - .../mpl/aux_/preprocessed/no_ttp/divides.hpp | 156 - .../mpl/aux_/preprocessed/no_ttp/equal_to.hpp | 98 - .../aux_/preprocessed/no_ttp/fold_impl.hpp | 180 - .../aux_/preprocessed/no_ttp/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/no_ttp/greater.hpp | 98 - .../preprocessed/no_ttp/greater_equal.hpp | 98 - .../mpl/aux_/preprocessed/no_ttp/inherit.hpp | 141 - .../preprocessed/no_ttp/iter_fold_if_impl.hpp | 133 - .../preprocessed/no_ttp/iter_fold_impl.hpp | 180 - .../preprocessed/no_ttp/lambda_no_ctps.hpp | 229 - .../mpl/aux_/preprocessed/no_ttp/less.hpp | 98 - .../aux_/preprocessed/no_ttp/less_equal.hpp | 98 - .../mpl/aux_/preprocessed/no_ttp/list.hpp | 323 - .../mpl/aux_/preprocessed/no_ttp/list_c.hpp | 328 - .../mpl/aux_/preprocessed/no_ttp/map.hpp | 323 - .../mpl/aux_/preprocessed/no_ttp/minus.hpp | 156 - .../mpl/aux_/preprocessed/no_ttp/modulus.hpp | 111 - .../aux_/preprocessed/no_ttp/not_equal_to.hpp | 98 - .../boost/mpl/aux_/preprocessed/no_ttp/or.hpp | 69 - .../aux_/preprocessed/no_ttp/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/no_ttp/plus.hpp | 156 - .../mpl/aux_/preprocessed/no_ttp/quote.hpp | 11 - .../preprocessed/no_ttp/reverse_fold_impl.hpp | 231 - .../no_ttp/reverse_iter_fold_impl.hpp | 231 - .../mpl/aux_/preprocessed/no_ttp/set.hpp | 323 - .../mpl/aux_/preprocessed/no_ttp/set_c.hpp | 328 - .../aux_/preprocessed/no_ttp/shift_left.hpp | 110 - .../aux_/preprocessed/no_ttp/shift_right.hpp | 110 - .../preprocessed/no_ttp/template_arity.hpp | 40 - .../mpl/aux_/preprocessed/no_ttp/times.hpp | 156 - .../aux_/preprocessed/no_ttp/unpack_args.hpp | 94 - .../mpl/aux_/preprocessed/no_ttp/vector.hpp | 323 - .../mpl/aux_/preprocessed/no_ttp/vector_c.hpp | 309 - .../preprocessed/plain/advance_backward.hpp | 97 - .../preprocessed/plain/advance_forward.hpp | 97 - .../boost/mpl/aux_/preprocessed/plain/and.hpp | 64 - .../mpl/aux_/preprocessed/plain/apply.hpp | 139 - .../mpl/aux_/preprocessed/plain/apply_fwd.hpp | 52 - .../aux_/preprocessed/plain/apply_wrap.hpp | 84 - .../boost/mpl/aux_/preprocessed/plain/arg.hpp | 123 - .../aux_/preprocessed/plain/basic_bind.hpp | 440 -- .../mpl/aux_/preprocessed/plain/bind.hpp | 561 -- .../mpl/aux_/preprocessed/plain/bind_fwd.hpp | 52 - .../mpl/aux_/preprocessed/plain/bitand.hpp | 142 - .../mpl/aux_/preprocessed/plain/bitor.hpp | 142 - .../mpl/aux_/preprocessed/plain/bitxor.hpp | 142 - .../mpl/aux_/preprocessed/plain/deque.hpp | 323 - .../mpl/aux_/preprocessed/plain/divides.hpp | 141 - .../mpl/aux_/preprocessed/plain/equal_to.hpp | 92 - .../mpl/aux_/preprocessed/plain/fold_impl.hpp | 180 - .../aux_/preprocessed/plain/full_lambda.hpp | 554 -- .../mpl/aux_/preprocessed/plain/greater.hpp | 92 - .../aux_/preprocessed/plain/greater_equal.hpp | 92 - .../mpl/aux_/preprocessed/plain/inherit.hpp | 125 - .../preprocessed/plain/iter_fold_if_impl.hpp | 133 - .../preprocessed/plain/iter_fold_impl.hpp | 180 - .../preprocessed/plain/lambda_no_ctps.hpp | 228 - .../mpl/aux_/preprocessed/plain/less.hpp | 92 - .../aux_/preprocessed/plain/less_equal.hpp | 92 - .../mpl/aux_/preprocessed/plain/list.hpp | 323 - .../mpl/aux_/preprocessed/plain/list_c.hpp | 328 - .../boost/mpl/aux_/preprocessed/plain/map.hpp | 323 - .../mpl/aux_/preprocessed/plain/minus.hpp | 141 - .../mpl/aux_/preprocessed/plain/modulus.hpp | 99 - .../aux_/preprocessed/plain/not_equal_to.hpp | 92 - .../boost/mpl/aux_/preprocessed/plain/or.hpp | 64 - .../aux_/preprocessed/plain/placeholders.hpp | 105 - .../mpl/aux_/preprocessed/plain/plus.hpp | 141 - .../mpl/aux_/preprocessed/plain/quote.hpp | 123 - .../preprocessed/plain/reverse_fold_impl.hpp | 231 - .../plain/reverse_iter_fold_impl.hpp | 231 - .../boost/mpl/aux_/preprocessed/plain/set.hpp | 323 - .../mpl/aux_/preprocessed/plain/set_c.hpp | 328 - .../aux_/preprocessed/plain/shift_left.hpp | 97 - .../aux_/preprocessed/plain/shift_right.hpp | 97 - .../preprocessed/plain/template_arity.hpp | 11 - .../mpl/aux_/preprocessed/plain/times.hpp | 141 - .../aux_/preprocessed/plain/unpack_args.hpp | 94 - .../mpl/aux_/preprocessed/plain/vector.hpp | 323 - .../mpl/aux_/preprocessed/plain/vector_c.hpp | 309 - .../boost/boost/mpl/aux_/preprocessor/add.hpp | 65 - .../mpl/aux_/preprocessor/def_params_tail.hpp | 105 - .../mpl/aux_/preprocessor/default_params.hpp | 67 - .../boost/mpl/aux_/preprocessor/enum.hpp | 62 - .../mpl/aux_/preprocessor/ext_params.hpp | 78 - .../mpl/aux_/preprocessor/filter_params.hpp | 28 - .../boost/mpl/aux_/preprocessor/params.hpp | 65 - .../aux_/preprocessor/partial_spec_params.hpp | 32 - .../boost/mpl/aux_/preprocessor/range.hpp | 23 - .../boost/mpl/aux_/preprocessor/repeat.hpp | 51 - .../boost/boost/mpl/aux_/preprocessor/sub.hpp | 65 - .../boost/mpl/aux_/preprocessor/tuple.hpp | 29 - .../boost/boost/mpl/aux_/static_cast.hpp | 27 - .../boost/boost/mpl/aux_/template_arity.hpp | 189 - .../boost/mpl/aux_/template_arity_fwd.hpp | 23 - .../boost/boost/mpl/aux_/type_wrapper.hpp | 47 - .../boost/boost/mpl/aux_/value_wknd.hpp | 89 - .../boost/boost/mpl/aux_/yes_no.hpp | 58 - .../src/third_party/boost/boost/mpl/bind.hpp | 551 -- .../third_party/boost/boost/mpl/bind_fwd.hpp | 99 - .../src/third_party/boost/boost/mpl/bool.hpp | 39 - .../third_party/boost/boost/mpl/bool_fwd.hpp | 33 - .../third_party/boost/boost/mpl/eval_if.hpp | 71 - .../third_party/boost/boost/mpl/has_xxx.hpp | 640 -- .../third_party/boost/boost/mpl/identity.hpp | 45 - .../src/third_party/boost/boost/mpl/if.hpp | 135 - .../src/third_party/boost/boost/mpl/int.hpp | 22 - .../third_party/boost/boost/mpl/int_fwd.hpp | 27 - .../boost/boost/mpl/integral_c.hpp | 51 - .../boost/boost/mpl/integral_c_fwd.hpp | 32 - .../boost/boost/mpl/integral_c_tag.hpp | 26 - .../boost/boost/mpl/is_placeholder.hpp | 67 - .../third_party/boost/boost/mpl/lambda.hpp | 29 - .../boost/boost/mpl/lambda_fwd.hpp | 57 - .../boost/boost/mpl/limits/arity.hpp | 21 - .../third_party/boost/boost/mpl/logical.hpp | 21 - .../src/third_party/boost/boost/mpl/next.hpp | 19 - .../boost/boost/mpl/next_prior.hpp | 49 - .../src/third_party/boost/boost/mpl/not.hpp | 51 - .../src/third_party/boost/boost/mpl/or.hpp | 61 - .../boost/boost/mpl/placeholders.hpp | 100 - .../third_party/boost/boost/mpl/protect.hpp | 55 - .../src/third_party/boost/boost/mpl/quote.hpp | 151 - .../third_party/boost/boost/mpl/size_t.hpp | 25 - .../boost/boost/mpl/size_t_fwd.hpp | 28 - .../src/third_party/boost/boost/mpl/void.hpp | 76 - .../third_party/boost/boost/mpl/void_fwd.hpp | 26 - .../third_party/boost/boost/next_prior.hpp | 51 - .../third_party/boost/boost/noncopyable.hpp | 48 - .../boost/boost/pending/integer_log2.hpp | 112 - .../boost/preprocessor/arithmetic/add.hpp | 51 - .../boost/preprocessor/arithmetic/dec.hpp | 288 - .../boost/preprocessor/arithmetic/inc.hpp | 288 - .../boost/preprocessor/arithmetic/sub.hpp | 50 - .../boost/boost/preprocessor/array/data.hpp | 28 - .../boost/boost/preprocessor/array/elem.hpp | 29 - .../boost/boost/preprocessor/array/size.hpp | 28 - .../boost/boost/preprocessor/cat.hpp | 35 - .../boost/boost/preprocessor/comma_if.hpp | 17 - .../boost/preprocessor/config/config.hpp | 105 - .../preprocessor/control/detail/dmc/while.hpp | 536 -- .../preprocessor/control/detail/edg/while.hpp | 534 -- .../control/detail/msvc/while.hpp | 277 - .../preprocessor/control/detail/while.hpp | 536 -- .../boost/preprocessor/control/expr_if.hpp | 30 - .../boost/preprocessor/control/expr_iif.hpp | 31 - .../boost/boost/preprocessor/control/if.hpp | 30 - .../boost/boost/preprocessor/control/iif.hpp | 34 - .../boost/preprocessor/control/while.hpp | 312 - .../boost/boost/preprocessor/debug/error.hpp | 33 - .../boost/boost/preprocessor/dec.hpp | 17 - .../boost/preprocessor/detail/auto_rec.hpp | 293 - .../boost/boost/preprocessor/detail/check.hpp | 48 - .../preprocessor/detail/dmc/auto_rec.hpp | 286 - .../boost/preprocessor/detail/is_binary.hpp | 30 - .../boost/boost/preprocessor/empty.hpp | 17 - .../boost/boost/preprocessor/enum.hpp | 17 - .../boost/boost/preprocessor/enum_params.hpp | 17 - .../preprocessor/enum_shifted_params.hpp | 17 - .../boost/boost/preprocessor/expr_if.hpp | 17 - .../boost/preprocessor/facilities/empty.hpp | 21 - .../preprocessor/facilities/identity.hpp | 23 - .../preprocessor/facilities/intercept.hpp | 277 - .../preprocessor/facilities/overload.hpp | 25 - .../boost/boost/preprocessor/identity.hpp | 17 - .../boost/boost/preprocessor/inc.hpp | 17 - .../boost/boost/preprocessor/iterate.hpp | 17 - .../iteration/detail/bounds/lower1.hpp | 99 - .../iteration/detail/bounds/lower2.hpp | 99 - .../iteration/detail/bounds/lower3.hpp | 99 - .../iteration/detail/bounds/lower4.hpp | 99 - .../iteration/detail/bounds/lower5.hpp | 99 - .../iteration/detail/bounds/upper1.hpp | 99 - .../iteration/detail/bounds/upper2.hpp | 99 - .../iteration/detail/bounds/upper3.hpp | 99 - .../iteration/detail/bounds/upper4.hpp | 99 - .../iteration/detail/bounds/upper5.hpp | 99 - .../preprocessor/iteration/detail/finish.hpp | 99 - .../iteration/detail/iter/forward1.hpp | 1342 ---- .../iteration/detail/iter/forward2.hpp | 1338 ---- .../iteration/detail/iter/forward3.hpp | 1338 ---- .../iteration/detail/iter/forward4.hpp | 1338 ---- .../iteration/detail/iter/forward5.hpp | 1338 ---- .../iteration/detail/iter/reverse1.hpp | 1296 ---- .../iteration/detail/iter/reverse2.hpp | 1296 ---- .../iteration/detail/iter/reverse3.hpp | 1296 ---- .../iteration/detail/iter/reverse4.hpp | 1296 ---- .../iteration/detail/iter/reverse5.hpp | 1296 ---- .../preprocessor/iteration/detail/local.hpp | 812 --- .../preprocessor/iteration/detail/rlocal.hpp | 782 --- .../preprocessor/iteration/detail/self.hpp | 21 - .../preprocessor/iteration/detail/start.hpp | 99 - .../boost/preprocessor/iteration/iterate.hpp | 82 - .../boost/preprocessor/iteration/local.hpp | 26 - .../boost/preprocessor/iteration/self.hpp | 19 - .../boost/boost/preprocessor/list/adt.hpp | 73 - .../boost/boost/preprocessor/list/append.hpp | 40 - .../list/detail/dmc/fold_left.hpp | 279 - .../list/detail/edg/fold_left.hpp | 536 -- .../list/detail/edg/fold_right.hpp | 794 --- .../preprocessor/list/detail/fold_left.hpp | 279 - .../preprocessor/list/detail/fold_right.hpp | 277 - .../boost/preprocessor/list/fold_left.hpp | 303 - .../boost/preprocessor/list/fold_right.hpp | 40 - .../boost/preprocessor/list/for_each_i.hpp | 65 - .../boost/boost/preprocessor/list/reverse.hpp | 40 - .../boost/preprocessor/list/transform.hpp | 49 - .../boost/boost/preprocessor/logical/and.hpp | 30 - .../boost/preprocessor/logical/bitand.hpp | 38 - .../boost/boost/preprocessor/logical/bool.hpp | 288 - .../boost/preprocessor/logical/compl.hpp | 36 - .../boost/preprocessor/punctuation/comma.hpp | 21 - .../preprocessor/punctuation/comma_if.hpp | 31 - .../boost/boost/preprocessor/repeat.hpp | 17 - .../repetition/detail/dmc/for.hpp | 536 -- .../repetition/detail/edg/for.hpp | 534 -- .../preprocessor/repetition/detail/for.hpp | 536 -- .../repetition/detail/msvc/for.hpp | 277 - .../boost/preprocessor/repetition/enum.hpp | 66 - .../repetition/enum_binary_params.hpp | 54 - .../preprocessor/repetition/enum_params.hpp | 41 - .../repetition/enum_shifted_params.hpp | 44 - .../repetition/enum_trailing_params.hpp | 38 - .../boost/preprocessor/repetition/for.hpp | 306 - .../boost/preprocessor/repetition/repeat.hpp | 825 --- .../repetition/repeat_from_to.hpp | 87 - .../boost/preprocessor/seq/detail/split.hpp | 284 - .../boost/boost/preprocessor/seq/elem.hpp | 304 - .../boost/boost/preprocessor/seq/enum.hpp | 288 - .../boost/boost/preprocessor/seq/first_n.hpp | 30 - .../boost/preprocessor/seq/fold_left.hpp | 1070 --- .../boost/preprocessor/seq/for_each_i.hpp | 61 - .../boost/boost/preprocessor/seq/rest_n.hpp | 30 - .../boost/boost/preprocessor/seq/seq.hpp | 44 - .../boost/boost/preprocessor/seq/size.hpp | 547 -- .../boost/boost/preprocessor/seq/subseq.hpp | 28 - .../preprocessor/slot/detail/counter.hpp | 269 - .../boost/preprocessor/slot/detail/def.hpp | 49 - .../boost/preprocessor/slot/detail/shared.hpp | 247 - .../boost/preprocessor/slot/detail/slot1.hpp | 267 - .../boost/preprocessor/slot/detail/slot2.hpp | 267 - .../boost/preprocessor/slot/detail/slot3.hpp | 267 - .../boost/preprocessor/slot/detail/slot4.hpp | 267 - .../boost/preprocessor/slot/detail/slot5.hpp | 267 - .../boost/boost/preprocessor/slot/slot.hpp | 32 - .../boost/boost/preprocessor/stringize.hpp | 33 - .../boost/boost/preprocessor/tuple/eat.hpp | 106 - .../boost/boost/preprocessor/tuple/elem.hpp | 191 - .../boost/boost/preprocessor/tuple/rem.hpp | 135 - .../boost/preprocessor/tuple/to_list.hpp | 116 - .../boost/preprocessor/variadic/elem.hpp | 94 - .../boost/preprocessor/variadic/size.hpp | 30 - .../boost/boost/random/detail/auto_link.hpp | 42 - .../boost/boost/random/detail/config.hpp | 18 - .../boost/boost/random/detail/const_mod.hpp | 216 - .../boost/random/detail/disable_warnings.hpp | 23 - .../boost/random/detail/enable_warnings.hpp | 18 - .../boost/random/detail/generator_bits.hpp | 36 - .../random/detail/generator_seed_seq.hpp | 40 - .../boost/random/detail/integer_log2.hpp | 84 - .../boost/random/detail/large_arithmetic.hpp | 122 - .../boost/boost/random/detail/ptr_helper.hpp | 94 - .../boost/boost/random/detail/seed.hpp | 114 - .../boost/boost/random/detail/seed_impl.hpp | 397 -- .../random/detail/signed_unsigned_tools.hpp | 89 - .../boost/boost/random/mersenne_twister.hpp | 545 -- .../boost/boost/random/random_device.hpp | 142 - .../boost/boost/range/algorithm/equal.hpp | 198 - .../boost/boost/range/as_literal.hpp | 127 - .../third_party/boost/boost/range/begin.hpp | 143 - .../boost/boost/range/concepts.hpp | 366 - .../third_party/boost/boost/range/config.hpp | 54 - .../boost/boost/range/const_iterator.hpp | 67 - .../boost/boost/range/detail/as_literal.hpp | 33 - .../boost/boost/range/detail/begin.hpp | 94 - .../boost/boost/range/detail/common.hpp | 117 - .../boost/range/detail/const_iterator.hpp | 71 - .../boost/boost/range/detail/detail_str.hpp | 376 - .../boost/boost/range/detail/end.hpp | 101 - .../range/detail/extract_optional_type.hpp | 52 - .../range/detail/implementation_help.hpp | 103 - .../boost/boost/range/detail/iterator.hpp | 78 - .../boost/boost/range/detail/misc_concept.hpp | 33 - .../boost/range/detail/remove_extent.hpp | 157 - .../boost/boost/range/detail/safe_bool.hpp | 72 - .../boost/boost/range/detail/sfinae.hpp | 77 - .../boost/boost/range/detail/size_type.hpp | 55 - .../boost/boost/range/detail/str_types.hpp | 38 - .../boost/boost/range/detail/value_type.hpp | 72 - .../boost/boost/range/detail/vc6/end.hpp | 170 - .../boost/boost/range/difference_type.hpp | 29 - .../boost/boost/range/distance.hpp | 34 - .../third_party/boost/boost/range/empty.hpp | 34 - .../src/third_party/boost/boost/range/end.hpp | 136 - .../boost/boost/range/functions.hpp | 27 - .../boost/boost/range/iterator.hpp | 72 - .../boost/boost/range/iterator_range.hpp | 16 - .../boost/boost/range/iterator_range_core.hpp | 653 -- .../boost/boost/range/iterator_range_io.hpp | 93 - .../boost/boost/range/mutable_iterator.hpp | 67 - .../third_party/boost/boost/range/rbegin.hpp | 65 - .../third_party/boost/boost/range/rend.hpp | 65 - .../boost/boost/range/result_iterator.hpp | 33 - .../boost/boost/range/reverse_iterator.hpp | 40 - .../third_party/boost/boost/range/size.hpp | 52 - .../boost/boost/range/size_type.hpp | 89 - .../boost/boost/range/value_type.hpp | 34 - .../src/third_party/boost/boost/ref.hpp | 189 - .../smart_ptr/detail/lightweight_mutex.hpp | 42 - .../boost/boost/smart_ptr/detail/lwm_nop.hpp | 37 - .../boost/smart_ptr/detail/lwm_pthreads.hpp | 87 - .../boost/smart_ptr/detail/lwm_win32_cs.hpp | 108 - .../third_party/boost/boost/static_assert.hpp | 195 - .../boost/boost/throw_exception.hpp | 103 - .../src/third_party/boost/boost/type.hpp | 18 - .../boost/boost/type_traits/add_const.hpp | 47 - .../type_traits/add_lvalue_reference.hpp | 26 - .../boost/boost/type_traits/add_pointer.hpp | 72 - .../boost/boost/type_traits/add_reference.hpp | 107 - .../type_traits/add_rvalue_reference.hpp | 66 - .../boost/boost/type_traits/add_volatile.hpp | 47 - .../boost/boost/type_traits/alignment_of.hpp | 128 - .../type_traits/broken_compiler_spec.hpp | 117 - .../boost/type_traits/composite_traits.hpp | 29 - .../boost/boost/type_traits/config.hpp | 76 - .../boost/type_traits/conversion_traits.hpp | 17 - .../type_traits/detail/bool_trait_def.hpp | 196 - .../type_traits/detail/bool_trait_undef.hpp | 28 - .../type_traits/detail/cv_traits_impl.hpp | 97 - .../boost/type_traits/detail/false_result.hpp | 28 - .../boost/type_traits/detail/ice_and.hpp | 35 - .../boost/boost/type_traits/detail/ice_eq.hpp | 36 - .../boost/type_traits/detail/ice_not.hpp | 31 - .../boost/boost/type_traits/detail/ice_or.hpp | 34 - .../detail/is_function_ptr_helper.hpp | 220 - .../detail/is_function_ptr_tester.hpp | 654 -- .../detail/is_mem_fun_pointer_impl.hpp | 817 --- .../detail/is_mem_fun_pointer_tester.hpp | 2759 -------- .../type_traits/detail/size_t_trait_def.hpp | 60 - .../type_traits/detail/size_t_trait_undef.hpp | 16 - .../detail/template_arity_spec.hpp | 31 - .../type_traits/detail/type_trait_def.hpp | 67 - .../type_traits/detail/type_trait_undef.hpp | 19 - .../boost/boost/type_traits/detail/wrap.hpp | 18 - .../boost/type_traits/detail/yes_no_type.hpp | 26 - .../boost/type_traits/function_traits.hpp | 236 - .../boost/type_traits/has_trivial_copy.hpp | 64 - .../type_traits/has_trivial_destructor.hpp | 49 - .../boost/boost/type_traits/ice.hpp | 20 - .../boost/type_traits/integral_constant.hpp | 53 - .../boost/boost/type_traits/intrinsics.hpp | 305 - .../boost/boost/type_traits/is_abstract.hpp | 153 - .../boost/boost/type_traits/is_arithmetic.hpp | 51 - .../boost/boost/type_traits/is_array.hpp | 91 - .../boost/type_traits/is_base_and_derived.hpp | 254 - .../boost/boost/type_traits/is_class.hpp | 140 - .../boost/boost/type_traits/is_const.hpp | 165 - .../boost/type_traits/is_convertible.hpp | 492 -- .../boost/boost/type_traits/is_enum.hpp | 189 - .../boost/boost/type_traits/is_float.hpp | 27 - .../boost/boost/type_traits/is_function.hpp | 111 - .../boost/boost/type_traits/is_integral.hpp | 89 - .../boost/type_traits/is_lvalue_reference.hpp | 118 - .../is_member_function_pointer.hpp | 136 - .../boost/type_traits/is_member_pointer.hpp | 116 - .../boost/boost/type_traits/is_pod.hpp | 145 - .../boost/boost/type_traits/is_pointer.hpp | 162 - .../boost/type_traits/is_polymorphic.hpp | 114 - .../boost/boost/type_traits/is_reference.hpp | 45 - .../boost/type_traits/is_rvalue_reference.hpp | 29 - .../boost/boost/type_traits/is_same.hpp | 103 - .../boost/boost/type_traits/is_scalar.hpp | 55 - .../boost/boost/type_traits/is_signed.hpp | 140 - .../boost/boost/type_traits/is_union.hpp | 57 - .../boost/boost/type_traits/is_unsigned.hpp | 135 - .../boost/boost/type_traits/is_void.hpp | 38 - .../boost/boost/type_traits/is_volatile.hpp | 152 - .../boost/boost/type_traits/make_signed.hpp | 153 - .../boost/boost/type_traits/make_unsigned.hpp | 153 - .../boost/type_traits/msvc/remove_bounds.hpp | 43 - .../boost/type_traits/msvc/remove_const.hpp | 143 - .../boost/type_traits/msvc/remove_cv.hpp | 190 - .../boost/type_traits/msvc/remove_pointer.hpp | 42 - .../type_traits/msvc/remove_reference.hpp | 42 - .../boost/boost/type_traits/msvc/typeof.hpp | 50 - .../boost/boost/type_traits/remove_bounds.hpp | 48 - .../boost/boost/type_traits/remove_const.hpp | 90 - .../boost/boost/type_traits/remove_cv.hpp | 84 - .../boost/type_traits/remove_pointer.hpp | 92 - .../boost/type_traits/remove_reference.hpp | 70 - .../boost/type_traits/type_with_alignment.hpp | 399 -- .../boost/boost/utility/addressof.hpp | 102 - .../boost/boost/utility/declval.hpp | 44 - .../utility/detail/result_of_iterate.hpp | 221 - .../boost/boost/utility/enable_if.hpp | 119 - .../boost/boost/utility/result_of.hpp | 207 - .../boost/boost/utility/string_ref.hpp | 536 -- .../boost/boost/utility/string_ref_fwd.hpp | 37 - .../src/third_party/boost/boost/version.hpp | 32 - .../third_party/boost/boost/visit_each.hpp | 29 - .../boost/libs/atomic/src/lockpool.cpp | 55 - .../boost/libs/random/src/random_device.cpp | 217 - .../third_party/boost/patches/6bb71fdd.diff | 35 - .../third_party/boost/patches/e4bde20f.diff | 55 - .../hdr_histogram/hdr_histogram.cpp | 39 +- cpp-driver/src/timer.hpp | 61 +- cpp-driver/src/timestamp_generator.cpp | 75 + cpp-driver/src/timestamp_generator.hpp | 78 + cpp-driver/src/token_aware_policy.cpp | 9 +- cpp-driver/src/token_aware_policy.hpp | 3 +- cpp-driver/src/token_map.cpp | 14 +- cpp-driver/src/token_map.hpp | 1 - cpp-driver/src/tuple.cpp | 161 + cpp-driver/src/tuple.hpp | 111 + cpp-driver/src/type_parser.cpp | 163 - cpp-driver/src/type_parser.hpp | 72 - cpp-driver/src/types.hpp | 78 +- cpp-driver/src/user_type_field_iterator.cpp | 39 + cpp-driver/src/user_type_field_iterator.hpp | 67 + cpp-driver/src/user_type_value.cpp | 112 + cpp-driver/src/user_type_value.hpp | 53 + cpp-driver/src/{common.cpp => utils.cpp} | 42 +- cpp-driver/src/{common.hpp => utils.hpp} | 32 +- cpp-driver/src/uuids.cpp | 44 +- cpp-driver/src/value.cpp | 156 +- cpp-driver/src/value.hpp | 138 +- cpp-driver/src/whitelist_policy.cpp | 89 + cpp-driver/src/whitelist_policy.hpp | 64 + 1273 files changed, 15607 insertions(+), 214955 deletions(-) create mode 100644 cpp-driver/src/abstract_data.cpp create mode 100644 cpp-driver/src/abstract_data.hpp delete mode 100644 cpp-driver/src/buffer.cpp delete mode 100644 cpp-driver/src/buffer_collection.cpp delete mode 100644 cpp-driver/src/buffer_collection.hpp delete mode 100644 cpp-driver/src/buffer_piece.hpp delete mode 100644 cpp-driver/src/cluster_metadata.cpp delete mode 100644 cpp-driver/src/cluster_metadata.hpp create mode 100644 cpp-driver/src/collection.cpp create mode 100644 cpp-driver/src/collection.hpp create mode 100644 cpp-driver/src/data_type.cpp create mode 100644 cpp-driver/src/data_type.hpp create mode 100644 cpp-driver/src/data_type_parser.cpp create mode 100644 cpp-driver/src/data_type_parser.hpp create mode 100644 cpp-driver/src/encode.hpp rename cpp-driver/src/{types.cpp => external_types.cpp} (70%) create mode 100644 cpp-driver/src/external_types.hpp create mode 100644 cpp-driver/src/hash_table.hpp create mode 100644 cpp-driver/src/metadata.cpp create mode 100644 cpp-driver/src/metadata.hpp delete mode 100644 cpp-driver/src/parameter.hpp create mode 100644 cpp-driver/src/request.cpp create mode 100644 cpp-driver/src/retry_policy.cpp create mode 100644 cpp-driver/src/retry_policy.hpp delete mode 100644 cpp-driver/src/schema_metadata.cpp delete mode 100644 cpp-driver/src/schema_metadata.hpp delete mode 100644 cpp-driver/src/third_party/boost/Jamroot delete mode 100644 cpp-driver/src/third_party/boost/LICENSE_1_0.txt delete mode 100644 cpp-driver/src/third_party/boost/README delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/case_conv.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/classification.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/compare.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/concept.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/constants.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/case_conv.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/classification.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/find_format.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/find_format_all.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/find_format_store.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/find_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/finder.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/formatter.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/predicate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/replace_storage.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/sequence.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/trim.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/detail/util.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/erase.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/find.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/find_format.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/find_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/finder.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/formatter.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/iter_find.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/join.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/predicate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/predicate_facade.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/replace.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/sequence_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/split.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/std/list_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/std/slist_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/std/string_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/std_containers_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/trim.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/algorithm/string/yes_no_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/aligned_storage.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/assert.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/atomic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/base.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/cas128strong.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/cas32strong.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/cas32weak.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/cas64strong.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-alpha.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-armv6plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-atomic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-cas.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-ppc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-sparcv9.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/gcc-x86.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/interlocked.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/link.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/linux-arm.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/lockpool.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/platform.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/type-classification.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/atomic/detail/windows.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/bind_cc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/bind_mf2_cc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/bind_mf_cc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/bind_template.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/mem_fn.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/mem_fn_cc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/mem_fn_template.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/mem_fn_vw.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/bind/storage.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/assert.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/backward_compatibility.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/borland.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/concept_def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/concept_undef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/general.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/has_constraints.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/detail/msvc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept/usage.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/concept_check.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi/borland_prefix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi/borland_suffix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi/msvc_prefix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi/msvc_suffix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi_prefix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/abi_suffix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/auto_link.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/borland.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/clang.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/codegear.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/comeau.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/common_edg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/compaq_cxx.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/cray.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/digitalmars.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/gcc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/gcc_xml.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/greenhills.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/hp_acc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/intel.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/kai.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/metrowerks.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/mpw.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/nvcc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/pathscale.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/pgi.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/sgi_mipspro.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/sunpro_cc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/vacpp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/compiler/visualc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/no_tr1/cmath.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/no_tr1/complex.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/no_tr1/functional.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/no_tr1/memory.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/no_tr1/utility.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/aix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/amigaos.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/beos.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/bsd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/cray.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/cygwin.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/hpux.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/irix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/linux.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/macos.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/qnxnto.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/solaris.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/symbian.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/vms.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/vxworks.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/platform/win32.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/posix_features.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/requires_threads.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/select_compiler_config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/select_platform_config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/select_stdlib_config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/dinkumware.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/libcomo.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/libcpp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/libstdcpp3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/modena.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/msl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/roguewave.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/sgi.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/stlport.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/stdlib/vacpp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/suffix.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/user.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/config/warning_disable.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/cstdint.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/current_function.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/container_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/indirect_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/interlocked.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/is_function_ref_tester.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/no_exceptions_support.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/sp_typeinfo.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/detail/workaround.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/exception/detail/attribute_noreturn.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/exception/exception.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/detail/function_iterate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/detail/gen_maybe_include.pl delete mode 100644 cpp-driver/src/third_party/boost/boost/function/detail/maybe_include.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/detail/prologue.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function0.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function10.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function6.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function7.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function8.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function9.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function_base.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function/function_template.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/function_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/detail/float_functions.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/detail/hash_float.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/detail/limits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/extensions.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/hash.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/functional/hash/hash_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/get_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/integer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/integer/integer_mask.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/integer/static_log2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/integer_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/integer_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/is_placeholder.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/detail/config_def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/detail/config_undef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/detail/enable_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/detail/facade_iterator_category.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/interoperable.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/iterator_adaptor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/iterator_categories.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/iterator_concepts.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/iterator_facade.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/iterator_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/reverse_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/iterator/transform_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/limits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mem_fn.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/memory_order.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/always.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/arg_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/assert.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/adl_barrier.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/arg_typedef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/arity_spec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/common_name_wknd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/adl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/arrays.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/bcc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/compiler.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/dtp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/eti.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/gcc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/has_apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/has_xxx.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/integral.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/intel.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/msvc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/msvc_typename.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/nttp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/overload_resolution.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/pp_counter.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/preprocessor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/static_constant.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/ttp.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/use_preprocessed.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/config/workaround.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/count_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/has_apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/has_rebind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/has_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/include_preprocessed.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/integral_wrapper.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/lambda_arity_param.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/lambda_support.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/logical_op.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/msvc_dtw.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/msvc_is_class.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/msvc_never_true.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/na.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/na_assert.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/na_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/na_spec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/nested_type_wknd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/nttp_decl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/apply.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/arg.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/bitor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/bitxor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/deque.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/divides.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/greater.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/inherit.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/less.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/less_equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/list_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/map.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/minus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/modulus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/plus.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/set.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/set_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/shift_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/shift_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/times.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/vector.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessed/plain/vector_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/add.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/def_params_tail.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/default_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/enum.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/ext_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/filter_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/partial_spec_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/range.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/repeat.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/sub.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/preprocessor/tuple.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/static_cast.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/template_arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/template_arity_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/type_wrapper.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/value_wknd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/aux_/yes_no.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/bind.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/bind_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/bool.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/bool_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/eval_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/has_xxx.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/identity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/int.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/int_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/integral_c.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/integral_c_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/integral_c_tag.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/is_placeholder.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/lambda.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/lambda_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/limits/arity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/logical.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/next.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/next_prior.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/not.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/placeholders.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/protect.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/quote.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/size_t.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/size_t_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/void.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/mpl/void_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/next_prior.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/noncopyable.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/pending/integer_log2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/arithmetic/add.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/arithmetic/dec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/arithmetic/inc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/arithmetic/sub.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/array/data.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/array/elem.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/array/size.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/cat.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/comma_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/config/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/detail/dmc/while.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/detail/edg/while.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/detail/msvc/while.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/detail/while.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/expr_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/expr_iif.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/iif.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/control/while.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/debug/error.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/dec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/detail/auto_rec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/detail/check.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/detail/dmc/auto_rec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/detail/is_binary.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/empty.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/enum.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/enum_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/enum_shifted_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/expr_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/facilities/empty.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/facilities/identity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/facilities/intercept.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/facilities/overload.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/identity.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/inc.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iterate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/lower1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/lower2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/lower3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/lower4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/lower5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/upper1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/upper2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/upper3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/upper4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/bounds/upper5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/finish.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/forward1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/forward2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/forward3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/forward4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/forward5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/reverse1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/reverse2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/reverse3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/reverse4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/iter/reverse5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/local.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/rlocal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/self.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/detail/start.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/iterate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/local.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/iteration/self.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/adt.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/append.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/detail/dmc/fold_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/detail/edg/fold_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/detail/edg/fold_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/detail/fold_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/detail/fold_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/fold_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/fold_right.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/for_each_i.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/reverse.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/list/transform.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/logical/and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/logical/bitand.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/logical/bool.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/logical/compl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/punctuation/comma.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/punctuation/comma_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repeat.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/detail/dmc/for.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/detail/edg/for.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/detail/for.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/detail/msvc/for.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/enum.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/enum_binary_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/enum_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/enum_shifted_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/enum_trailing_params.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/for.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/repeat.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/repetition/repeat_from_to.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/detail/split.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/elem.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/enum.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/first_n.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/fold_left.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/for_each_i.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/rest_n.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/seq.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/size.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/seq/subseq.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/counter.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/shared.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/slot1.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/slot2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/slot3.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/slot4.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/detail/slot5.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/slot/slot.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/stringize.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/tuple/eat.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/tuple/elem.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/tuple/rem.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/tuple/to_list.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/variadic/elem.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/preprocessor/variadic/size.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/auto_link.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/const_mod.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/disable_warnings.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/enable_warnings.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/generator_bits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/generator_seed_seq.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/integer_log2.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/large_arithmetic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/ptr_helper.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/seed.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/seed_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/detail/signed_unsigned_tools.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/mersenne_twister.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/random/random_device.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/algorithm/equal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/as_literal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/begin.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/concepts.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/const_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/as_literal.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/begin.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/common.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/const_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/detail_str.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/end.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/extract_optional_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/implementation_help.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/misc_concept.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/remove_extent.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/safe_bool.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/sfinae.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/size_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/str_types.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/value_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/detail/vc6/end.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/difference_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/distance.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/empty.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/end.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/functions.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/iterator_range.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/iterator_range_core.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/iterator_range_io.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/mutable_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/rbegin.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/rend.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/result_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/reverse_iterator.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/size.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/size_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/range/value_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/ref.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/smart_ptr/detail/lightweight_mutex.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/smart_ptr/detail/lwm_nop.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/smart_ptr/detail/lwm_pthreads.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/smart_ptr/detail/lwm_win32_cs.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/static_assert.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/throw_exception.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_const.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_lvalue_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_rvalue_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/add_volatile.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/alignment_of.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/broken_compiler_spec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/composite_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/config.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/conversion_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/bool_trait_def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/bool_trait_undef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/cv_traits_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/false_result.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/ice_and.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/ice_eq.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/ice_not.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/ice_or.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/is_function_ptr_helper.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/is_function_ptr_tester.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/size_t_trait_def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/size_t_trait_undef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/template_arity_spec.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/type_trait_def.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/type_trait_undef.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/wrap.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/detail/yes_no_type.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/function_traits.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/has_trivial_copy.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/has_trivial_destructor.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/ice.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/integral_constant.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/intrinsics.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_abstract.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_arithmetic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_array.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_base_and_derived.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_class.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_const.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_convertible.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_enum.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_float.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_function.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_integral.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_lvalue_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_member_function_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_member_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_pod.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_polymorphic.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_rvalue_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_same.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_scalar.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_signed.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_union.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_unsigned.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_void.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/is_volatile.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/make_signed.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/make_unsigned.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/remove_bounds.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/remove_const.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/remove_cv.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/remove_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/remove_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/msvc/typeof.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/remove_bounds.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/remove_const.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/remove_cv.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/remove_pointer.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/remove_reference.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/type_traits/type_with_alignment.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/addressof.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/declval.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/detail/result_of_iterate.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/enable_if.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/result_of.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/string_ref.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/utility/string_ref_fwd.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/version.hpp delete mode 100644 cpp-driver/src/third_party/boost/boost/visit_each.hpp delete mode 100644 cpp-driver/src/third_party/boost/libs/atomic/src/lockpool.cpp delete mode 100644 cpp-driver/src/third_party/boost/libs/random/src/random_device.cpp delete mode 100644 cpp-driver/src/third_party/boost/patches/6bb71fdd.diff delete mode 100644 cpp-driver/src/third_party/boost/patches/e4bde20f.diff create mode 100644 cpp-driver/src/timestamp_generator.cpp create mode 100644 cpp-driver/src/timestamp_generator.hpp create mode 100644 cpp-driver/src/tuple.cpp create mode 100644 cpp-driver/src/tuple.hpp delete mode 100644 cpp-driver/src/type_parser.cpp delete mode 100644 cpp-driver/src/type_parser.hpp create mode 100644 cpp-driver/src/user_type_field_iterator.cpp create mode 100644 cpp-driver/src/user_type_field_iterator.hpp create mode 100644 cpp-driver/src/user_type_value.cpp create mode 100644 cpp-driver/src/user_type_value.hpp rename cpp-driver/src/{common.cpp => utils.cpp} (69%) rename cpp-driver/src/{common.hpp => utils.hpp} (70%) create mode 100644 cpp-driver/src/whitelist_policy.cpp create mode 100644 cpp-driver/src/whitelist_policy.hpp diff --git a/binding.gyp b/binding.gyp index db97a7f..3756331 100644 --- a/binding.gyp +++ b/binding.gyp @@ -21,23 +21,24 @@ "src/query.cc", "src/type-mapper.cc", + "cpp-driver/src/abstract_data.cpp", "cpp-driver/src/address.cpp", "cpp-driver/src/auth.cpp", "cpp-driver/src/auth_requests.cpp", "cpp-driver/src/auth_responses.cpp", "cpp-driver/src/batch_request.cpp", - "cpp-driver/src/buffer.cpp", - "cpp-driver/src/buffer_collection.cpp", "cpp-driver/src/cluster.cpp", - "cpp-driver/src/cluster_metadata.cpp", + "cpp-driver/src/collection.cpp", "cpp-driver/src/collection_iterator.cpp", - "cpp-driver/src/common.cpp", "cpp-driver/src/connection.cpp", "cpp-driver/src/control_connection.cpp", + "cpp-driver/src/data_type.cpp", + "cpp-driver/src/data_type_parser.cpp", "cpp-driver/src/dc_aware_policy.cpp", "cpp-driver/src/error_response.cpp", "cpp-driver/src/event_response.cpp", "cpp-driver/src/execute_request.cpp", + "cpp-driver/src/external_types.cpp", "cpp-driver/src/future.cpp", "cpp-driver/src/get_time.cpp", "cpp-driver/src/handler.cpp", @@ -48,6 +49,7 @@ "cpp-driver/src/logger.cpp", "cpp-driver/src/map_iterator.cpp", "cpp-driver/src/md5.cpp", + "cpp-driver/src/metadata.cpp", "cpp-driver/src/multiple_request_handler.cpp", "cpp-driver/src/murmur3.cpp", "cpp-driver/src/pool.cpp", @@ -55,16 +57,18 @@ "cpp-driver/src/prepare_request.cpp", "cpp-driver/src/prepared.cpp", "cpp-driver/src/query_request.cpp", + "cpp-driver/src/random.cpp", "cpp-driver/src/register_request.cpp", "cpp-driver/src/replication_strategy.cpp", + "cpp-driver/src/request.cpp", "cpp-driver/src/request_handler.cpp", "cpp-driver/src/response.cpp", "cpp-driver/src/result_metadata.cpp", "cpp-driver/src/result_response.cpp", + "cpp-driver/src/retry_policy.cpp", "cpp-driver/src/ring_buffer.cpp", "cpp-driver/src/row.cpp", "cpp-driver/src/schema_change_handler.cpp", - "cpp-driver/src/schema_metadata.cpp", "cpp-driver/src/session.cpp", "cpp-driver/src/set_keyspace_handler.cpp", "cpp-driver/src/ssl.cpp", @@ -73,12 +77,17 @@ "cpp-driver/src/string_ref.cpp", "cpp-driver/src/supported_response.cpp", "cpp-driver/src/testing.cpp", + "cpp-driver/src/timestamp_generator.cpp", "cpp-driver/src/token_aware_policy.cpp", "cpp-driver/src/token_map.cpp", - "cpp-driver/src/type_parser.cpp", - "cpp-driver/src/types.cpp", + "cpp-driver/src/tuple.cpp", + "cpp-driver/src/user_type_field_iterator.cpp", + "cpp-driver/src/user_type_value.cpp", + "cpp-driver/src/utils.cpp", "cpp-driver/src/uuids.cpp", "cpp-driver/src/value.cpp", + "cpp-driver/src/whitelist_policy.cpp", + "cpp-driver/src/third_party/hdr_histogram/hdr_histogram.cpp" ], "include_dirs": [ diff --git a/cpp-driver/include/cassandra.h b/cpp-driver/include/cassandra.h index 781822c..1232fa7 100644 --- a/cpp-driver/include/cassandra.h +++ b/cpp-driver/include/cassandra.h @@ -20,7 +20,7 @@ #include #if !defined(CASS_STATIC) -# if defined(_WIN32) +# if (defined(WIN32) || defined(_WIN32)) # if defined(CASS_BUILDING) # define CASS_EXPORT __declspec(dllexport) # else @@ -35,6 +35,14 @@ #define CASS_EXPORT #endif +#if defined(_MSC_VER) +# define CASS_DEPRECATED(func) __declspec(deprecated) func +#elif defined(__GNUC__) || defined(__INTEL_COMPILER) +# define CASS_DEPRECATED(func) func __attribute__((deprecated)) +#else +# define CASS_DEPRECATED(func) func +#endif + /** * @file include/cassandra.h * @@ -43,8 +51,8 @@ */ #define CASS_VERSION_MAJOR 2 -#define CASS_VERSION_MINOR 0 -#define CASS_VERSION_PATCH 0 +#define CASS_VERSION_MINOR 2 +#define CASS_VERSION_PATCH 2 #define CASS_VERSION_SUFFIX "" #ifdef __cplusplus @@ -107,12 +115,12 @@ typedef cass_uint8_t cass_byte_t; typedef cass_uint64_t cass_duration_t; /** - * The size of a IPv4 address + * The size of an IPv4 address */ #define CASS_INET_V4_LENGTH 4 /** - * The size of a IPv6 address + * The size of an IPv6 address */ #define CASS_INET_V6_LENGTH 16 @@ -138,7 +146,7 @@ typedef struct CassInet_ { } CassInet; /** - * The size of a hexidecimal UUID string including a null terminator. + * The size of a hexadecimal UUID string including a null terminator. */ #define CASS_UUID_STRING_LENGTH 37 @@ -159,7 +167,7 @@ typedef struct CassUuid_ { /** * Represents the clock sequence and the node part of a UUID. The most * significant 16 bits represent the clock sequence (except for the most - * significant bit which is always set) and the bottom 48 bits respresent + * significant bit which is always set) and the bottom 48 bits represent * the node part. For version 1 (time-based) the clock sequence part is randomly * generated and the node part can be explicitly set, otherwise, it's generated * from node unique information. For version 4 both the clock sequence and the node @@ -193,7 +201,7 @@ typedef struct CassSession_ CassSession; * @struct CassStatement * * A statement object is an executable query. It represents either a regular - * (adhoc) statment or a prepared statement. It maitains the queries' parameter + * (adhoc) statement or a prepared statement. It maintains the queries' parameter * values along with query options (consistency level, paging state, etc.) * * Note: Parameters for regular queries are not supported by the binary protocol @@ -243,6 +251,13 @@ typedef struct CassPrepared_ CassPrepared; */ typedef struct CassResult_ CassResult; +/** + * @struct CassErrorResult + * + * A error result of a request + */ +typedef struct CassErrorResult_ CassErrorResult; + /** * @struct CassIterator * @@ -264,13 +279,45 @@ typedef struct CassRow_ CassRow; */ typedef struct CassValue_ CassValue; +/** + * @struct CassDataType + * + * A data type used to describe a value, collection or + * user defined type. + */ +typedef struct CassDataType_ CassDataType; + +/** + * @struct CassFunctionMeta + */ +typedef struct CassFunctionMeta_ CassFunctionMeta; + +/** + * @struct CassAggregateMeta + */ +typedef struct CassAggregateMeta_ CassAggregateMeta; + /** * @struct CassCollection * - * A collection of primitive values. + * A collection of values. */ typedef struct CassCollection_ CassCollection; +/** + * @struct CassTuple + * + * A tuple of values. + */ +typedef struct CassTuple_ CassTuple; + +/** + * @struct CassUserType + * + * A user defined type. + */ +typedef struct CassUserType_ CassUserType; + /** * @struct CassSsl * @@ -279,25 +326,32 @@ typedef struct CassCollection_ CassCollection; typedef struct CassSsl_ CassSsl; /** - * @struct CassSchema + * @struct CassSchemaMeta * - * A snapshot of the cluster's schema metadata. + * A snapshot of the schema's metadata. */ -typedef struct CassSchema_ CassSchema; +typedef struct CassSchemaMeta_ CassSchemaMeta; /** - * @struct CassSchemaMeta + * @struct CassKeyspaceMeta * - * Table/Column schema metdata. + * Keyspace metadata */ -typedef struct CassSchemaMeta_ CassSchemaMeta; +typedef struct CassKeyspaceMeta_ CassKeyspaceMeta; + +/** + * @struct CassTableMeta + * + * Table metadata + */ +typedef struct CassTableMeta_ CassTableMeta; /** - * @struct CassSchemaMetaField + * @struct CassColumnMeta * - * Key/Value metadata field for a keyspace, table, or column. + * Column metadata */ -typedef struct CassSchemaMetaField_ CassSchemaMetaField; +typedef struct CassColumnMeta_ CassColumnMeta; /** * @struct CassUuidGen @@ -308,6 +362,27 @@ typedef struct CassSchemaMetaField_ CassSchemaMetaField; */ typedef struct CassUuidGen_ CassUuidGen; +/** + * Policies that defined the behavior of a request when a server-side + * read/write timeout or unavailable error occurs. + * + * Generators of client-side, microsecond-precision timestamps. + * + * @struct CassTimestampGen + * + */ +typedef struct CassTimestampGen_ CassTimestampGen; + +/** + * @struct CassRetryPolicy + */ +typedef struct CassRetryPolicy_ CassRetryPolicy; + +/** + * @struct CassCustomPayload + */ +typedef struct CassCustomPayload_ CassCustomPayload; + /** * @struct CassMetrics * @@ -347,6 +422,7 @@ typedef struct CassMetrics_ { } CassMetrics; typedef enum CassConsistency_ { + CASS_CONSISTENCY_UNKNOWN = 0xFFFF, CASS_CONSISTENCY_ANY = 0x0000, CASS_CONSISTENCY_ONE = 0x0001, CASS_CONSISTENCY_TWO = 0x0002, @@ -360,6 +436,38 @@ typedef enum CassConsistency_ { CASS_CONSISTENCY_LOCAL_ONE = 0x000A } CassConsistency; +#define CASS_CONSISTENCY_MAP(XX) \ + XX(CASS_CONSISTENCY_UNKNOWN, "UNKNOWN") \ + XX(CASS_CONSISTENCY_ANY, "ANY") \ + XX(CASS_CONSISTENCY_ONE, "ONE") \ + XX(CASS_CONSISTENCY_TWO, "TWO") \ + XX(CASS_CONSISTENCY_THREE, "THREE") \ + XX(CASS_CONSISTENCY_QUORUM, "QUORUM") \ + XX(CASS_CONSISTENCY_ALL, "ALL") \ + XX(CASS_CONSISTENCY_LOCAL_QUORUM, "LOCAL_QUORUM") \ + XX(CASS_CONSISTENCY_EACH_QUORUM, "EACH_QUORUM") \ + XX(CASS_CONSISTENCY_SERIAL, "SERIAL") \ + XX(CASS_CONSISTENCY_LOCAL_SERIAL, "LOCAL_SERIAL") \ + XX(CASS_CONSISTENCY_LOCAL_ONE, "LOCAL_ONE") + +typedef enum CassWriteType_ { + CASS_WRITE_TYPE_UKNOWN, + CASS_WRITE_TYPE_SIMPLE, + CASS_WRITE_TYPE_BATCH, + CASS_WRITE_TYPE_UNLOGGED_BATCH, + CASS_WRITE_TYPE_COUNTER, + CASS_WRITE_TYPE_BATCH_LOG, + CASS_WRITE_TYPE_CAS +} CassWriteType; + +#define CASS_WRITE_TYPE_MAP(XX) \ + XX(CASS_WRITE_TYPE_SIMPLE, "SIMPLE") \ + XX(CASS_WRITE_TYPE_BATCH, "BATCH") \ + XX(CASS_WRITE_TYPE_UNLOGGED_BATCH, "UNLOGGED_BATCH") \ + XX(CASS_WRITE_TYPE_COUNTER, "COUNTER") \ + XX(CASS_WRITE_TYPE_BATCH_LOG, "BATCH_LOG") \ + XX(CASS_WRITE_TYPE_CAS, "CAS") + typedef enum CassValueType_ { CASS_VALUE_TYPE_UNKNOWN = 0xFFFF, CASS_VALUE_TYPE_CUSTOM = 0x0000, @@ -379,9 +487,18 @@ typedef enum CassValueType_ { CASS_VALUE_TYPE_VARINT = 0x000E, CASS_VALUE_TYPE_TIMEUUID = 0x000F, CASS_VALUE_TYPE_INET = 0x0010, + CASS_VALUE_TYPE_DATE = 0x0011, + CASS_VALUE_TYPE_TIME = 0x0012, + CASS_VALUE_TYPE_SMALL_INT = 0x0013, + CASS_VALUE_TYPE_TINY_INT = 0x0014, CASS_VALUE_TYPE_LIST = 0x0020, CASS_VALUE_TYPE_MAP = 0x0021, - CASS_VALUE_TYPE_SET = 0x0022 + CASS_VALUE_TYPE_SET = 0x0022, + CASS_VALUE_TYPE_UDT = 0x0030, + CASS_VALUE_TYPE_TUPLE = 0x0031, + /* @cond IGNORE */ + CASS_VALUE_TYPE_LAST_ENTRY + /* @endcond */ } CassValueType; typedef enum CassCollectionType_ { @@ -401,16 +518,17 @@ typedef enum CassIteratorType_ { CASS_ITERATOR_TYPE_ROW, CASS_ITERATOR_TYPE_COLLECTION, CASS_ITERATOR_TYPE_MAP, - CASS_ITERATOR_TYPE_SCHEMA_META, - CASS_ITERATOR_TYPE_SCHEMA_META_FIELD + CASS_ITERATOR_TYPE_TUPLE, + CASS_ITERATOR_TYPE_USER_TYPE_FIELD, + CASS_ITERATOR_TYPE_META_FIELD, + CASS_ITERATOR_TYPE_KEYSPACE_META, + CASS_ITERATOR_TYPE_TABLE_META, + CASS_ITERATOR_TYPE_TYPE_META, + CASS_ITERATOR_TYPE_FUNCTION_META, + CASS_ITERATOR_TYPE_AGGREGATE_META, + CASS_ITERATOR_TYPE_COLUMN_META } CassIteratorType; -typedef enum CassSchemaMetaType_ { - CASS_SCHEMA_META_TYPE_KEYSPACE, - CASS_SCHEMA_META_TYPE_TABLE, - CASS_SCHEMA_META_TYPE_COLUMN -} CassSchemaMetaType; - #define CASS_LOG_LEVEL_MAP(XX) \ XX(CASS_LOG_DISABLED, "") \ XX(CASS_LOG_CRITICAL, "CRITICAL") \ @@ -430,11 +548,19 @@ typedef enum CassLogLevel_ { } CassLogLevel; typedef enum CassSslVerifyFlags { - CASS_SSL_VERIFY_NONE = 0, - CASS_SSL_VERIFY_PEER_CERT = 1, - CASS_SSL_VERIFY_PEER_IDENTITY = 2 + CASS_SSL_VERIFY_NONE, + CASS_SSL_VERIFY_PEER_CERT, + CASS_SSL_VERIFY_PEER_IDENTITY } CassSslVerifyFlags; +typedef enum CassColumnType_ { + CASS_COLUMN_TYPE_REGULAR, + CASS_COLUMN_TYPE_PARTITION_KEY, + CASS_COLUMN_TYPE_CLUSTERING_KEY, + CASS_COLUMN_TYPE_STATIC, + CASS_COLUMN_TYPE_COMPACT_VALUE +} CassColumnType; + typedef enum CassErrorSource_ { CASS_ERROR_SOURCE_NONE, CASS_ERROR_SOURCE_LIB, @@ -467,6 +593,10 @@ typedef enum CassErrorSource_ { XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_NOT_IMPLEMENTED, 21, "Not implemented") \ XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_UNABLE_TO_CONNECT, 22, "Unable to connect") \ XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_UNABLE_TO_CLOSE, 23, "Unable to close") \ + XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_NO_PAGING_STATE, 24, "No paging state") \ + XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_PARAMETER_UNSET, 25, "Parameter unset") \ + XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_INVALID_ERROR_RESULT_TYPE, 26, "Invalid error result type") \ + XX(CASS_ERROR_SOURCE_LIB, CASS_ERROR_LIB_INVALID_FUTURE_TYPE, 27, "Invalid future type") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_SERVER_ERROR, 0x0000, "Server error") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_PROTOCOL_ERROR, 0x000A, "Protocol error") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_BAD_CREDENTIALS, 0x0100, "Bad credentials") \ @@ -476,6 +606,9 @@ typedef enum CassErrorSource_ { XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_TRUNCATE_ERROR, 0x1003, "Truncate error") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_WRITE_TIMEOUT, 0x1100, "Write timeout") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_READ_TIMEOUT, 0x1200, "Read timeout") \ + XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_READ_FAILURE, 0x1300, "Read failure") \ + XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_FUNCTION_FAILURE, 0x1400, "Function failure") \ + XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_WRITE_FAILURE, 0x1500, "Write failure") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_SYNTAX_ERROR, 0x2000, "Syntax error") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_UNAUTHORIZED, 0x2100, "Unauthorized") \ XX(CASS_ERROR_SOURCE_SERVER, CASS_ERROR_SERVER_INVALID_QUERY, 0x2200, "Invalid query") \ @@ -486,7 +619,8 @@ typedef enum CassErrorSource_ { XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_INVALID_PRIVATE_KEY, 2, "Unable to load private key") \ XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_NO_PEER_CERT, 3, "No peer certificate") \ XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_INVALID_PEER_CERT, 4, "Invalid peer certificate") \ - XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_IDENTITY_MISMATCH, 5, "Certificate does not match host or IP address") + XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_IDENTITY_MISMATCH, 5, "Certificate does not match host or IP address") \ + XX(CASS_ERROR_SOURCE_SSL, CASS_ERROR_SSL_PROTOCOL_ERROR, 6, "Protocol error") #define CASS_ERROR(source, code) ((source << 24) | code) @@ -614,7 +748,7 @@ cass_cluster_set_contact_points_n(CassCluster* cluster, /** * Sets the port. * - * Default: 9042 + * Default: 9042 * * @public @memberof CassCluster * @@ -641,10 +775,10 @@ cass_cluster_set_ssl(CassCluster* cluster, CassSsl* ssl); /** - * Sets the protocol version. This will automatically downgrade if to - * protocol version 1. + * Sets the protocol version. This will automatically downgrade to the lowest + * supported protocol version. * - * Default: 2 + * Default: 4 * * @public @memberof CassCluster * @@ -660,7 +794,7 @@ cass_cluster_set_protocol_version(CassCluster* cluster, * Sets the number of IO threads. This is the number of threads * that will handle query requests. * - * Default: 1 + * Default: 1 * * @public @memberof CassCluster * @@ -673,10 +807,10 @@ cass_cluster_set_num_threads_io(CassCluster* cluster, unsigned num_threads); /** - * Sets the size of the the fixed size queue that stores + * Sets the size of the fixed size queue that stores * pending requests. * - * Default: 4096 + * Default: 8192 * * @public @memberof CassCluster * @@ -689,10 +823,10 @@ cass_cluster_set_queue_size_io(CassCluster* cluster, unsigned queue_size); /** - * Sets the size of the the fixed size queue that stores + * Sets the size of the fixed size queue that stores * events. * - * Default: 4096 + * Default: 8192 * * @public @memberof CassCluster * @@ -705,10 +839,10 @@ cass_cluster_set_queue_size_event(CassCluster* cluster, unsigned queue_size); /** - * Sets the size of the the fixed size queue that stores + * Sets the size of the fixed size queue that stores * log messages. * - * Default: 4096 + * Default: 8192 * * @public @memberof CassCluster * @@ -724,7 +858,7 @@ cass_cluster_set_queue_size_log(CassCluster* cluster, * Sets the number of connections made to each server in each * IO thread. * - * Default: 1 + * Default: 1 * * @public @memberof CassCluster * @@ -740,7 +874,7 @@ cass_cluster_set_core_connections_per_host(CassCluster* cluster, * Sets the maximum number of connections made to each server in each * IO thread. * - * Default: 2 + * Default: 2 * * @public @memberof CassCluster * @@ -755,7 +889,7 @@ cass_cluster_set_max_connections_per_host(CassCluster* cluster, /** * Sets the amount of time to wait before attempting to reconnect. * - * Default: 2000 milliseconds + * Default: 2000 milliseconds * * @public @memberof CassCluster * @@ -771,7 +905,7 @@ cass_cluster_set_reconnect_wait_time(CassCluster* cluster, * Connections are created when the current connections are unable to keep up with * request throughput. * - * Default: 1 + * Default: 1 * * @public @memberof CassCluster * @@ -788,7 +922,7 @@ cass_cluster_set_max_concurrent_creation(CassCluster* cluster, * on a connection before creating a new connection. The number of new connections * created will not exceed max_connections_per_host. * - * Default: 100 + * Default: 100 * * @public @memberof CassCluster * @@ -804,7 +938,7 @@ cass_cluster_set_max_concurrent_requests_threshold(CassCluster* cluster, * Sets the maximum number of requests processed by an IO worker * per flush. * - * Default: 128 + * Default: 128 * * @public @memberof CassCluster * @@ -821,7 +955,7 @@ cass_cluster_set_max_requests_per_flush(CassCluster* cluster, * on a connection. Disables writes to a connection if the number * of bytes queued exceed this value. * - * Default: 64 KB + * Default: 64 KB * * @public @memberof CassCluster * @@ -838,7 +972,7 @@ cass_cluster_set_write_bytes_high_water_mark(CassCluster* cluster, * connection. After exceeding high water mark bytes, writes will * only resume once the number of bytes fall below this value. * - * Default: 32 KB + * Default: 32 KB * * @public @memberof CassCluster * @@ -856,7 +990,7 @@ cass_cluster_set_write_bytes_low_water_mark(CassCluster* cluster, * host on an IO worker if the number of requests queued exceed this * value. * - * Default: 128 * max_connections_per_host + * Default: 256 * * @public @memberof CassCluster * @@ -874,7 +1008,7 @@ cass_cluster_set_pending_requests_high_water_mark(CassCluster* cluster, * requests, writes to a host will only resume once the number of requests * fall below this value. * - * Default: 64 * max_connections_per_host + * Default: 128 * * @public @memberof CassCluster * @@ -889,7 +1023,7 @@ cass_cluster_set_pending_requests_low_water_mark(CassCluster* cluster, /** * Sets the timeout for connecting to a node. * - * Default: 5000 milliseconds + * Default: 5000 milliseconds * * @public @memberof CassCluster * @@ -903,7 +1037,7 @@ cass_cluster_set_connect_timeout(CassCluster* cluster, /** * Sets the timeout for waiting for a response from a node. * - * Default: 12000 milliseconds + * Default: 12000 milliseconds * * @public @memberof CassCluster * @@ -1015,9 +1149,13 @@ cass_cluster_set_load_balance_dc_aware_n(CassCluster* cluster, cass_bool_t allow_remote_dcs_for_local_cl); /** - * Configures the cluster to use token-aware request routing, or not. + * Configures the cluster to use token-aware request routing or not. * - * Default is cass_true (enabled). + * Important: Token-aware routing depends on keyspace information. + * For this reason enabling token-aware routing will also enable the usage + * of schema metadata. + * + * Default: cass_true (enabled). * * This routing policy composes the base routing policy, routing * requests first to replicas on nodes considered 'local' by @@ -1027,6 +1165,8 @@ cass_cluster_set_load_balance_dc_aware_n(CassCluster* cluster, * * @param[in] cluster * @param[in] enabled + * + * @see cass_cluster_set_use_schema(); */ CASS_EXPORT void cass_cluster_set_token_aware_routing(CassCluster* cluster, @@ -1034,9 +1174,9 @@ cass_cluster_set_token_aware_routing(CassCluster* cluster, /** - * Configures the cluster to use latency-aware request routing, or not. + * Configures the cluster to use latency-aware request routing or not. * - * Default is cass_false (disabled). + * Default: cass_false (disabled). * * This routing policy is a top-level routing policy. It uses the * base routing policy to determine locality (dc-aware) and/or @@ -1054,7 +1194,7 @@ cass_cluster_set_latency_aware_routing(CassCluster* cluster, /** * Configures the settings for latency-aware request routing. * - * Defaults: + * Defaults: * *