├── .circleci └── config.yml ├── .drone.star ├── .drone ├── after-success.sh ├── before-install.sh ├── before-script.sh └── boost.sh ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── appveyor.yml ├── checks ├── Jamfile.v2 ├── architecture │ ├── .gitignore │ ├── 32.cpp │ ├── 64.cpp │ ├── Jamfile.jam │ ├── arm.cpp │ ├── combined.cpp │ ├── loongarch.cpp │ ├── mips.cpp │ ├── power.cpp │ ├── riscv.cpp │ ├── s390x.cpp │ ├── sparc.cpp │ └── x86.cpp ├── config.jam ├── std │ ├── cpp_aggregate_bases_17.cpp │ ├── cpp_aggregate_nsdmi_14.cpp │ ├── cpp_alias_templates_11.cpp │ ├── cpp_aligned_new_17.cpp │ ├── cpp_attributes_11.cpp │ ├── cpp_binary_literals_14.cpp │ ├── cpp_capture_star_this_17.cpp │ ├── cpp_char8_t_20.cpp │ ├── cpp_conditional_explicit_20.cpp │ ├── cpp_consteval_23.cpp │ ├── cpp_constexpr_11.cpp │ ├── cpp_constexpr_14.cpp │ ├── cpp_constexpr_17.cpp │ ├── cpp_decltype_11.cpp │ ├── cpp_decltype_auto_14.cpp │ ├── cpp_deduction_guides_17.cpp │ ├── cpp_delegating_constructors_11.cpp │ ├── cpp_enumerator_attributes_17.cpp │ ├── cpp_exceptions_03.cpp │ ├── cpp_explicit_conversion_11.cpp │ ├── cpp_explicit_this_parameter_23.cpp │ ├── cpp_fold_expressions_17.cpp │ ├── cpp_generic_lambdas_14.cpp │ ├── cpp_guaranteed_copy_elision_17.cpp │ ├── cpp_hex_float_17.cpp │ ├── cpp_if_consteval_23.cpp │ ├── cpp_if_constexpr_17.cpp │ ├── cpp_impl_destroying_delete_20.cpp │ ├── cpp_impl_three_way_comparison_20.cpp │ ├── cpp_implicit_move_23.cpp │ ├── cpp_inheriting_constructors_11.cpp │ ├── cpp_inheriting_constructors_17.cpp │ ├── cpp_init_captures_14.cpp │ ├── cpp_initializer_lists_11.cpp │ ├── cpp_inline_variables_17.cpp │ ├── cpp_lambdas_11.cpp │ ├── cpp_lib_addressof_constexpr_17.cpp │ ├── cpp_lib_allocator_traits_is_always_equal_17.cpp │ ├── cpp_lib_any_17.cpp │ ├── cpp_lib_apply_17.cpp │ ├── cpp_lib_array_constexpr_17.cpp │ ├── cpp_lib_as_const_17.cpp │ ├── cpp_lib_atomic_is_always_lock_free_17.cpp │ ├── cpp_lib_atomic_ref_20.cpp │ ├── cpp_lib_bind_front_20.cpp │ ├── cpp_lib_bit_cast_20.cpp │ ├── cpp_lib_bool_constant_17.cpp │ ├── cpp_lib_boyer_moore_searcher_17.cpp │ ├── cpp_lib_byte_17.cpp │ ├── cpp_lib_char8_t_20.cpp │ ├── cpp_lib_chrono_17.cpp │ ├── cpp_lib_chrono_udls_14.cpp │ ├── cpp_lib_clamp_17.cpp │ ├── cpp_lib_complex_udls_14.cpp │ ├── cpp_lib_concepts_20.cpp │ ├── cpp_lib_constexpr_misc_20.cpp │ ├── cpp_lib_constexpr_swap_algorithms_20.cpp │ ├── cpp_lib_destroying_delete_20.cpp │ ├── cpp_lib_enable_shared_from_this_17.cpp │ ├── cpp_lib_erase_if_20.cpp │ ├── cpp_lib_exchange_function_14.cpp │ ├── cpp_lib_execution_17.cpp │ ├── cpp_lib_filesystem_17.cpp │ ├── cpp_lib_gcd_lcm_17.cpp │ ├── cpp_lib_generic_associative_lookup_14.cpp │ ├── cpp_lib_generic_unordered_lookup_20.cpp │ ├── cpp_lib_hardware_interference_size_17.cpp │ ├── cpp_lib_has_unique_object_representations_17.cpp │ ├── cpp_lib_hypot_17.cpp │ ├── cpp_lib_incomplete_container_elements_17.cpp │ ├── cpp_lib_integer_sequence_14.cpp │ ├── cpp_lib_integral_constant_callable_14.cpp │ ├── cpp_lib_invoke_17.cpp │ ├── cpp_lib_is_aggregate_17.cpp │ ├── cpp_lib_is_constant_evaluated_20.cpp │ ├── cpp_lib_is_final_14.cpp │ ├── cpp_lib_is_invocable_17.cpp │ ├── cpp_lib_is_null_pointer_14.cpp │ ├── cpp_lib_is_swappable_17.cpp │ ├── cpp_lib_launder_17.cpp │ ├── cpp_lib_list_remove_return_type_20.cpp │ ├── cpp_lib_logical_traits_17.cpp │ ├── cpp_lib_make_from_tuple_17.cpp │ ├── cpp_lib_make_reverse_iterator_14.cpp │ ├── cpp_lib_make_unique_14.cpp │ ├── cpp_lib_map_try_emplace_17.cpp │ ├── cpp_lib_math_special_functions_17.cpp │ ├── cpp_lib_memory_resource_17.cpp │ ├── cpp_lib_node_extract_17.cpp │ ├── cpp_lib_nonmember_container_access_17.cpp │ ├── cpp_lib_not_fn_17.cpp │ ├── cpp_lib_null_iterators_14.cpp │ ├── cpp_lib_optional_17.cpp │ ├── cpp_lib_parallel_algorithm_17.cpp │ ├── cpp_lib_quoted_string_io_14.cpp │ ├── cpp_lib_ranges_20.cpp │ ├── cpp_lib_raw_memory_algorithms_17.cpp │ ├── cpp_lib_result_of_sfinae_14.cpp │ ├── cpp_lib_robust_nonmodifying_seq_ops_14.cpp │ ├── cpp_lib_sample_17.cpp │ ├── cpp_lib_scoped_lock_17.cpp │ ├── cpp_lib_shared_mutex_17.cpp │ ├── cpp_lib_shared_ptr_arrays_17.cpp │ ├── cpp_lib_shared_ptr_weak_type_17.cpp │ ├── cpp_lib_shared_timed_mutex_14.cpp │ ├── cpp_lib_string_udls_14.cpp │ ├── cpp_lib_string_view_17.cpp │ ├── cpp_lib_three_way_comparison_20.cpp │ ├── cpp_lib_to_chars_17.cpp │ ├── cpp_lib_transformation_trait_aliases_14.cpp │ ├── cpp_lib_transparent_operators_14.cpp │ ├── cpp_lib_transparent_operators_17.cpp │ ├── cpp_lib_tuple_element_t_14.cpp │ ├── cpp_lib_tuples_by_type_14.cpp │ ├── cpp_lib_type_trait_variable_templates_17.cpp │ ├── cpp_lib_uncaught_exceptions_17.cpp │ ├── cpp_lib_unordered_map_try_emplace_17.cpp │ ├── cpp_lib_variant_17.cpp │ ├── cpp_lib_void_t_17.cpp │ ├── cpp_multidimensional_subscript_23.cpp │ ├── cpp_named_character_escapes_23.cpp │ ├── cpp_namespace_attributes_17.cpp │ ├── cpp_noexcept_function_type_17.cpp │ ├── cpp_nontype_template_args_17.cpp │ ├── cpp_nontype_template_parameter_auto_17.cpp │ ├── cpp_nontype_template_parameter_class_20.cpp │ ├── cpp_nsdmi_11.cpp │ ├── cpp_range_based_for_11.cpp │ ├── cpp_range_based_for_17.cpp │ ├── cpp_range_based_for_23.cpp │ ├── cpp_raw_strings_11.cpp │ ├── cpp_ref_qualifiers_11.cpp │ ├── cpp_return_type_deduction_14.cpp │ ├── cpp_rtti_03.cpp │ ├── cpp_rvalue_references_11.cpp │ ├── cpp_size_t_suffix_23.cpp │ ├── cpp_sized_deallocation_14.cpp │ ├── cpp_static_assert_11.cpp │ ├── cpp_static_assert_17.cpp │ ├── cpp_static_call_operator_23.cpp │ ├── cpp_structured_bindings_17.cpp │ ├── cpp_template_template_args_17.cpp │ ├── cpp_threadsafe_static_init_11.cpp │ ├── cpp_unicode_characters_11.cpp │ ├── cpp_unicode_literals_11.cpp │ ├── cpp_user_defined_literals_11.cpp │ ├── cpp_variable_templates_14.cpp │ ├── cpp_variadic_templates_11.cpp │ └── cpp_variadic_using_17.cpp └── test_case.cpp ├── configure ├── doc ├── Jamfile.v2 ├── acknowledgements.qbk ├── build_time.qbk ├── config.qbk ├── configuring_boost.qbk ├── cstdint.qbk ├── guidelines.qbk ├── html │ ├── HTML.manifest │ ├── boost_config │ │ ├── acknowledgements.html │ │ ├── boost_macro_reference.html │ │ ├── build_config.html │ │ ├── cstdint.html │ │ ├── guidelines_for_boost_authors.html │ │ └── rationale.html │ └── index.html ├── macro_reference.qbk └── rationale.qbk ├── include └── boost │ ├── config.hpp │ ├── config │ ├── abi │ │ ├── borland_prefix.hpp │ │ ├── borland_suffix.hpp │ │ ├── msvc_prefix.hpp │ │ └── msvc_suffix.hpp │ ├── abi_prefix.hpp │ ├── abi_suffix.hpp │ ├── assert_cxx03.hpp │ ├── assert_cxx11.hpp │ ├── assert_cxx14.hpp │ ├── assert_cxx17.hpp │ ├── assert_cxx20.hpp │ ├── assert_cxx23.hpp │ ├── assert_cxx98.hpp │ ├── auto_link.hpp │ ├── compiler │ │ ├── borland.hpp │ │ ├── clang.hpp │ │ ├── clang_version.hpp │ │ ├── codegear.hpp │ │ ├── comeau.hpp │ │ ├── common_edg.hpp │ │ ├── compaq_cxx.hpp │ │ ├── cray.hpp │ │ ├── diab.hpp │ │ ├── digitalmars.hpp │ │ ├── gcc.hpp │ │ ├── gcc_xml.hpp │ │ ├── greenhills.hpp │ │ ├── hp_acc.hpp │ │ ├── intel.hpp │ │ ├── kai.hpp │ │ ├── metrowerks.hpp │ │ ├── mpw.hpp │ │ ├── nvcc.hpp │ │ ├── pathscale.hpp │ │ ├── pgi.hpp │ │ ├── sgi_mipspro.hpp │ │ ├── sunpro_cc.hpp │ │ ├── vacpp.hpp │ │ ├── visualc.hpp │ │ ├── xlcpp.hpp │ │ └── xlcpp_zos.hpp │ ├── detail │ │ ├── cxx_composite.hpp │ │ ├── posix_features.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ └── suffix.hpp │ ├── header_deprecated.hpp │ ├── helper_macros.hpp │ ├── no_tr1 │ │ ├── cmath.hpp │ │ ├── complex.hpp │ │ ├── functional.hpp │ │ ├── memory.hpp │ │ └── utility.hpp │ ├── platform │ │ ├── aix.hpp │ │ ├── amigaos.hpp │ │ ├── beos.hpp │ │ ├── bsd.hpp │ │ ├── cloudabi.hpp │ │ ├── cray.hpp │ │ ├── cygwin.hpp │ │ ├── haiku.hpp │ │ ├── hpux.hpp │ │ ├── irix.hpp │ │ ├── linux.hpp │ │ ├── macos.hpp │ │ ├── qnxnto.hpp │ │ ├── solaris.hpp │ │ ├── symbian.hpp │ │ ├── vms.hpp │ │ ├── vxworks.hpp │ │ ├── wasm.hpp │ │ ├── win32.hpp │ │ └── zos.hpp │ ├── pragma_message.hpp │ ├── requires_threads.hpp │ ├── stdlib │ │ ├── dinkumware.hpp │ │ ├── libcomo.hpp │ │ ├── libcpp.hpp │ │ ├── libstdcpp3.hpp │ │ ├── modena.hpp │ │ ├── msl.hpp │ │ ├── roguewave.hpp │ │ ├── sgi.hpp │ │ ├── stlport.hpp │ │ ├── vacpp.hpp │ │ └── xlcpp_zos.hpp │ ├── user.hpp │ ├── warning_disable.hpp │ └── workaround.hpp │ ├── cstdint.hpp │ ├── cxx11_char_types.hpp │ ├── detail │ └── workaround.hpp │ ├── limits.hpp │ └── version.hpp ├── index.html ├── meta └── libraries.json ├── test ├── CMakeLists.txt ├── Jamfile.v2 ├── abi │ ├── abi_test.cpp │ ├── abi_test.hpp │ └── main.cpp ├── all │ ├── Jamfile.v2 │ └── options_v2.jam ├── boost_fallthrough_test.cpp ├── boost_has_2arg_use_facet.ipp ├── boost_has_bethreads.ipp ├── boost_has_clock_gettime.ipp ├── boost_has_detect_mismatch.ipp ├── boost_has_dirent_h.ipp ├── boost_has_expm1.ipp ├── boost_has_float128.ipp ├── boost_has_ftime.ipp ├── boost_has_getsystemtimeasfiletime.ipp ├── boost_has_gettimeofday.ipp ├── boost_has_hash.ipp ├── boost_has_int128.ipp ├── boost_has_log1p.ipp ├── boost_has_long_long.ipp ├── boost_has_macro_use_facet.ipp ├── boost_has_ms_int64.ipp ├── boost_has_nanosleep.ipp ├── boost_has_nl_types_h.ipp ├── boost_has_nrvo.ipp ├── boost_has_part_alloc.ipp ├── boost_has_pthread_delay_np.ipp ├── boost_has_pthread_ma_st.ipp ├── boost_has_pthread_yield.ipp ├── boost_has_pthreads.ipp ├── boost_has_rvalue_refs.ipp ├── boost_has_sched_yield.ipp ├── boost_has_sgi_type_traits.ipp ├── boost_has_sigaction.ipp ├── boost_has_slist.ipp ├── boost_has_static_assert.ipp ├── boost_has_stdint_h.ipp ├── boost_has_stlp_use_facet.ipp ├── boost_has_unistd_h.ipp ├── boost_has_variadic_tmpl.ipp ├── boost_has_vc6_mem_templ.ipp ├── boost_has_vc_iterator.ipp ├── boost_has_winthreads.ipp ├── boost_no_adl_barrier.ipp ├── boost_no_arg_dep_lookup.ipp ├── boost_no_array_type_spec.ipp ├── boost_no_auto_declarations.ipp ├── boost_no_auto_multidecl.ipp ├── boost_no_auto_ptr.ipp ├── boost_no_bcb_partial_spec.ipp ├── boost_no_char16_t.ipp ├── boost_no_char32_t.ipp ├── boost_no_com_value_init.ipp ├── boost_no_constexpr.ipp ├── boost_no_ctype_functions.ipp ├── boost_no_cv_spec.ipp ├── boost_no_cv_void_spec.ipp ├── boost_no_cwchar.ipp ├── boost_no_cwctype.ipp ├── boost_no_cxx03.ipp ├── boost_no_cxx11.ipp ├── boost_no_cxx11_addressof.ipp ├── boost_no_cxx11_alignas.ipp ├── boost_no_cxx11_alignof.ipp ├── boost_no_cxx11_allocator.ipp ├── boost_no_cxx11_atomic_sp.ipp ├── boost_no_cxx11_defaulted_moves.ipp ├── boost_no_cxx11_exception.ipp ├── boost_no_cxx11_final.ipp ├── boost_no_cxx11_hdr_array.ipp ├── boost_no_cxx11_hdr_atomic.ipp ├── boost_no_cxx11_hdr_chrono.ipp ├── boost_no_cxx11_hdr_codecvt.ipp ├── boost_no_cxx11_hdr_condition_variable.ipp ├── boost_no_cxx11_hdr_forward_list.ipp ├── boost_no_cxx11_hdr_future.ipp ├── boost_no_cxx11_hdr_initializer_list.ipp ├── boost_no_cxx11_hdr_mutex.ipp ├── boost_no_cxx11_hdr_random.ipp ├── boost_no_cxx11_hdr_ratio.ipp ├── boost_no_cxx11_hdr_regex.ipp ├── boost_no_cxx11_hdr_system_error.ipp ├── boost_no_cxx11_hdr_thread.ipp ├── boost_no_cxx11_hdr_tuple.ipp ├── boost_no_cxx11_hdr_type_traits.ipp ├── boost_no_cxx11_hdr_typeindex.ipp ├── boost_no_cxx11_hdr_unordered_map.ipp ├── boost_no_cxx11_hdr_unordered_set.ipp ├── boost_no_cxx11_inline_namespaces.ipp ├── boost_no_cxx11_non_pub_def_fun.ipp ├── boost_no_cxx11_numeric_limits.ipp ├── boost_no_cxx11_override.ipp ├── boost_no_cxx11_pointer_traits.ipp ├── boost_no_cxx11_ref_qualifiers.ipp ├── boost_no_cxx11_sfinae_expr.ipp ├── boost_no_cxx11_smart_ptr.ipp ├── boost_no_cxx11_std_align.ipp ├── boost_no_cxx11_thread_local.ipp ├── boost_no_cxx11_trailing_result_types.ipp ├── boost_no_cxx11_unrestricted_union.ipp ├── boost_no_cxx11_user_lit.ipp ├── boost_no_cxx14.ipp ├── boost_no_cxx14_binary_literals.ipp ├── boost_no_cxx14_constexpr.ipp ├── boost_no_cxx14_decltype_auto.ipp ├── boost_no_cxx14_digit_separator.ipp ├── boost_no_cxx14_generic_lambda.ipp ├── boost_no_cxx14_hdr_shared_mutex.ipp ├── boost_no_cxx14_lambda_capture.ipp ├── boost_no_cxx14_member_init.ipp ├── boost_no_cxx14_return_type_ded.ipp ├── boost_no_cxx14_std_exchange.ipp ├── boost_no_cxx14_var_templ.ipp ├── boost_no_cxx17.ipp ├── boost_no_cxx17_auto_nontype_template_params.ipp ├── boost_no_cxx17_deduction_guides.ipp ├── boost_no_cxx17_fold_expressions.ipp ├── boost_no_cxx17_hdr_any.ipp ├── boost_no_cxx17_hdr_charconv.ipp ├── boost_no_cxx17_hdr_execution.ipp ├── boost_no_cxx17_hdr_filesystem.ipp ├── boost_no_cxx17_hdr_memory_resource.ipp ├── boost_no_cxx17_hdr_optional.ipp ├── boost_no_cxx17_hdr_string_view.ipp ├── boost_no_cxx17_hdr_variant.ipp ├── boost_no_cxx17_if_constexpr.ipp ├── boost_no_cxx17_inline_variables.ipp ├── boost_no_cxx17_iterator_traits.ipp ├── boost_no_cxx17_std_apply.ipp ├── boost_no_cxx17_std_invoke.ipp ├── boost_no_cxx17_structured_bindings.ipp ├── boost_no_cxx20_hdr_barrier.ipp ├── boost_no_cxx20_hdr_bit.ipp ├── boost_no_cxx20_hdr_compare.ipp ├── boost_no_cxx20_hdr_concepts.ipp ├── boost_no_cxx20_hdr_coroutine.ipp ├── boost_no_cxx20_hdr_format.ipp ├── boost_no_cxx20_hdr_latch.ipp ├── boost_no_cxx20_hdr_numbers.ipp ├── boost_no_cxx20_hdr_ranges.ipp ├── boost_no_cxx20_hdr_semaphore.ipp ├── boost_no_cxx20_hdr_source_location.ipp ├── boost_no_cxx20_hdr_span.ipp ├── boost_no_cxx20_hdr_stop_token.ipp ├── boost_no_cxx20_hdr_syncstream.ipp ├── boost_no_cxx20_hdr_version.ipp ├── boost_no_cxx23_hdr_expected.ipp ├── boost_no_cxx23_hdr_flat_map.ipp ├── boost_no_cxx23_hdr_flat_set.ipp ├── boost_no_cxx23_hdr_generator.ipp ├── boost_no_cxx23_hdr_mdspan.ipp ├── boost_no_cxx23_hdr_print.ipp ├── boost_no_cxx23_hdr_spanstream.ipp ├── boost_no_cxx23_hdr_stacktrace.ipp ├── boost_no_cxx23_hdr_stdfloat.ipp ├── boost_no_cxx98_binders.ipp ├── boost_no_cxx98_function_base.ipp ├── boost_no_cxx98_random_shuffle.ipp ├── boost_no_cxx_hdr_functional.ipp ├── boost_no_decltype.ipp ├── boost_no_decltype_n3276.ipp ├── boost_no_ded_typename.ipp ├── boost_no_defaulted_functions.ipp ├── boost_no_deleted_functions.ipp ├── boost_no_dep_nested_class.ipp ├── boost_no_dep_val_param.ipp ├── boost_no_excep_std.ipp ├── boost_no_exceptions.ipp ├── boost_no_exp_func_tem_arg.ipp ├── boost_no_explicit_cvt_ops.ipp ├── boost_no_extern_template.ipp ├── boost_no_fenv_h.ipp ├── boost_no_fixed_len_variadic_templates.ipp ├── boost_no_func_tmp_order.ipp ├── boost_no_function_template_default_args.ipp ├── boost_no_function_type_spec.ipp ├── boost_no_i64_limits.ipp ├── boost_no_inline_memb_init.ipp ├── boost_no_integral_int64_t.ipp ├── boost_no_iosfwd.ipp ├── boost_no_iostream.ipp ├── boost_no_is_abstract.ipp ├── boost_no_iter_construct.ipp ├── boost_no_lambdas.ipp ├── boost_no_limits.ipp ├── boost_no_limits_const_exp.ipp ├── boost_no_ll_limits.ipp ├── boost_no_long_long.ipp ├── boost_no_mem_func_spec.ipp ├── boost_no_mem_tem_keyword.ipp ├── boost_no_mem_tem_pnts.ipp ├── boost_no_mem_templ_frnds.ipp ├── boost_no_mem_templates.ipp ├── boost_no_nested_friendship.ipp ├── boost_no_noexcept.ipp ├── boost_no_nullptr.ipp ├── boost_no_ops_in_namespace.ipp ├── boost_no_part_spec_def_args.ipp ├── boost_no_partial_spec.ipp ├── boost_no_priv_aggregate.ipp ├── boost_no_ptr_mem_const.ipp ├── boost_no_range_based_for.ipp ├── boost_no_raw_literals.ipp ├── boost_no_restrict_references.ipp ├── boost_no_ret_det.ipp ├── boost_no_rtti.ipp ├── boost_no_rvalue_references.ipp ├── boost_no_scoped_enums.ipp ├── boost_no_sfinae.ipp ├── boost_no_sfinae_expr.ipp ├── boost_no_sstream.ipp ├── boost_no_static_assert.ipp ├── boost_no_std_allocator.ipp ├── boost_no_std_distance.ipp ├── boost_no_std_iter_traits.ipp ├── boost_no_std_iterator.ipp ├── boost_no_std_locale.ipp ├── boost_no_std_messages.ipp ├── boost_no_std_min_max.ipp ├── boost_no_std_oi_assign.ipp ├── boost_no_std_typeinfo.ipp ├── boost_no_std_use_facet.ipp ├── boost_no_std_wstreambuf.ipp ├── boost_no_std_wstring.ipp ├── boost_no_stdc_namespace.ipp ├── boost_no_swprintf.ipp ├── boost_no_tem_local_classes.ipp ├── boost_no_template_aliases.ipp ├── boost_no_template_streams.ipp ├── boost_no_template_template.ipp ├── boost_no_two_phase_lookup.ipp ├── boost_no_typeid.ipp ├── boost_no_typename_with_ctor.ipp ├── boost_no_unicode_literals.ipp ├── boost_no_unified_init.ipp ├── boost_no_using_breaks_adl.ipp ├── boost_no_using_decl_overld.ipp ├── boost_no_using_template.ipp ├── boost_no_variadic_macros.ipp ├── boost_no_variadic_templates.ipp ├── boost_no_void_returns.ipp ├── boost_no_wchar_t.ipp ├── boost_override_test.cpp ├── check_memory.cpp ├── cmd_line_check.cpp ├── config_build_check.cpp ├── config_info.cpp ├── config_test.cpp ├── config_test.cu ├── config_test_c.c ├── cstdint_include_test.cpp ├── cstdint_test.cpp ├── cstdint_test2.cpp ├── has_2arg_use_facet_fail.cpp ├── has_2arg_use_facet_pass.cpp ├── has_bethreads_fail.cpp ├── has_bethreads_pass.cpp ├── has_clock_gettime_fail.cpp ├── has_clock_gettime_pass.cpp ├── has_detect_mismatch_fail.cpp ├── has_detect_mismatch_pass.cpp ├── has_dirent_h_fail.cpp ├── has_dirent_h_pass.cpp ├── has_expm1_fail.cpp ├── has_expm1_pass.cpp ├── has_float128_fail.cpp ├── has_float128_pass.cpp ├── has_ftime_fail.cpp ├── has_ftime_pass.cpp ├── has_getsystemtimeasfiletime_fail.cpp ├── has_getsystemtimeasfiletime_pass.cpp ├── has_gettimeofday_fail.cpp ├── has_gettimeofday_pass.cpp ├── has_hash_fail.cpp ├── has_hash_pass.cpp ├── has_int128_fail.cpp ├── has_int128_pass.cpp ├── has_log1p_fail.cpp ├── has_log1p_pass.cpp ├── has_long_long_fail.cpp ├── has_long_long_pass.cpp ├── has_macro_use_facet_fail.cpp ├── has_macro_use_facet_pass.cpp ├── has_ms_int64_fail.cpp ├── has_ms_int64_pass.cpp ├── has_nanosleep_fail.cpp ├── has_nanosleep_pass.cpp ├── has_nl_types_h_fail.cpp ├── has_nl_types_h_pass.cpp ├── has_nrvo_fail.cpp ├── has_nrvo_pass.cpp ├── has_part_alloc_fail.cpp ├── has_part_alloc_pass.cpp ├── has_pthread_delay_np_fail.cpp ├── has_pthread_delay_np_pass.cpp ├── has_pthread_ma_st_fail.cpp ├── has_pthread_ma_st_pass.cpp ├── has_pthread_yield_fail.cpp ├── has_pthread_yield_pass.cpp ├── has_pthreads_fail.cpp ├── has_pthreads_pass.cpp ├── has_rvalue_refs_fail.cpp ├── has_rvalue_refs_pass.cpp ├── has_sched_yield_fail.cpp ├── has_sched_yield_pass.cpp ├── has_sgi_type_traits_fail.cpp ├── has_sgi_type_traits_pass.cpp ├── has_sigaction_fail.cpp ├── has_sigaction_pass.cpp ├── has_slist_fail.cpp ├── has_slist_pass.cpp ├── has_static_assert_fail.cpp ├── has_static_assert_pass.cpp ├── has_stdint_h_fail.cpp ├── has_stdint_h_pass.cpp ├── has_stlp_use_facet_fail.cpp ├── has_stlp_use_facet_pass.cpp ├── has_unistd_h_fail.cpp ├── has_unistd_h_pass.cpp ├── has_variadic_tmpl_fail.cpp ├── has_variadic_tmpl_pass.cpp ├── has_vc6_mem_templ_fail.cpp ├── has_vc6_mem_templ_pass.cpp ├── has_vc_iterator_fail.cpp ├── has_vc_iterator_pass.cpp ├── has_winthreads_fail.cpp ├── has_winthreads_pass.cpp ├── header_deprecated_test.cpp ├── helper_macro_test.cpp ├── helper_macros_test.cpp ├── limits_test.cpp ├── link │ ├── Jamfile.v2 │ ├── bc_gen.sh │ ├── borland.mak │ ├── common.sh │ ├── link_test.cpp │ ├── link_test.hpp │ ├── main.cpp │ ├── test │ │ └── Jamfile.v2 │ ├── vc6-stlport.mak │ ├── vc6.mak │ ├── vc7-stlport.mak │ ├── vc7.mak │ ├── vc71-stlport.mak │ ├── vc71.mak │ └── vc_gen.sh ├── math_info.cpp ├── no_adl_barrier_fail.cpp ├── no_adl_barrier_pass.cpp ├── no_arg_dep_lookup_fail.cpp ├── no_arg_dep_lookup_pass.cpp ├── no_array_type_spec_fail.cpp ├── no_array_type_spec_pass.cpp ├── no_auto_declarations_fail.cpp ├── no_auto_declarations_pass.cpp ├── no_auto_multidecl_fail.cpp ├── no_auto_multidecl_pass.cpp ├── no_auto_ptr_fail.cpp ├── no_auto_ptr_pass.cpp ├── no_bcb_partial_spec_fail.cpp ├── no_bcb_partial_spec_pass.cpp ├── no_char16_t_fail.cpp ├── no_char16_t_pass.cpp ├── no_char32_t_fail.cpp ├── no_char32_t_pass.cpp ├── no_com_value_init_fail.cpp ├── no_com_value_init_pass.cpp ├── no_constexpr_fail.cpp ├── no_constexpr_pass.cpp ├── no_ctype_functions_fail.cpp ├── no_ctype_functions_pass.cpp ├── no_cv_spec_fail.cpp ├── no_cv_spec_pass.cpp ├── no_cv_void_spec_fail.cpp ├── no_cv_void_spec_pass.cpp ├── no_cwchar_fail.cpp ├── no_cwchar_pass.cpp ├── no_cwctype_fail.cpp ├── no_cwctype_pass.cpp ├── no_cxx03_fail.cpp ├── no_cxx03_pass.cpp ├── no_cxx11_addressof_fail.cpp ├── no_cxx11_addressof_pass.cpp ├── no_cxx11_alignas_fail.cpp ├── no_cxx11_alignas_pass.cpp ├── no_cxx11_alignof_fail.cpp ├── no_cxx11_alignof_pass.cpp ├── no_cxx11_allocator_fail.cpp ├── no_cxx11_allocator_pass.cpp ├── no_cxx11_atomic_sp_fail.cpp ├── no_cxx11_atomic_sp_pass.cpp ├── no_cxx11_defaulted_moves_fail.cpp ├── no_cxx11_defaulted_moves_pass.cpp ├── no_cxx11_exception_fail.cpp ├── no_cxx11_exception_pass.cpp ├── no_cxx11_fail.cpp ├── no_cxx11_final_fail.cpp ├── no_cxx11_final_pass.cpp ├── no_cxx11_hdr_array_fail.cpp ├── no_cxx11_hdr_array_pass.cpp ├── no_cxx11_hdr_atomic_fail.cpp ├── no_cxx11_hdr_atomic_pass.cpp ├── no_cxx11_hdr_chrono_fail.cpp ├── no_cxx11_hdr_chrono_pass.cpp ├── no_cxx11_hdr_codecvt_fail.cpp ├── no_cxx11_hdr_codecvt_pass.cpp ├── no_cxx11_hdr_condition_variable_fail.cpp ├── no_cxx11_hdr_condition_variable_pass.cpp ├── no_cxx11_hdr_forward_list_fail.cpp ├── no_cxx11_hdr_forward_list_pass.cpp ├── no_cxx11_hdr_future_fail.cpp ├── no_cxx11_hdr_future_pass.cpp ├── no_cxx11_hdr_initializer_list_fail.cpp ├── no_cxx11_hdr_initializer_list_pass.cpp ├── no_cxx11_hdr_mutex_fail.cpp ├── no_cxx11_hdr_mutex_pass.cpp ├── no_cxx11_hdr_random_fail.cpp ├── no_cxx11_hdr_random_pass.cpp ├── no_cxx11_hdr_ratio_fail.cpp ├── no_cxx11_hdr_ratio_pass.cpp ├── no_cxx11_hdr_regex_fail.cpp ├── no_cxx11_hdr_regex_pass.cpp ├── no_cxx11_hdr_system_error_fail.cpp ├── no_cxx11_hdr_system_error_pass.cpp ├── no_cxx11_hdr_thread_fail.cpp ├── no_cxx11_hdr_thread_pass.cpp ├── no_cxx11_hdr_tuple_fail.cpp ├── no_cxx11_hdr_tuple_pass.cpp ├── no_cxx11_hdr_type_traits_fail.cpp ├── no_cxx11_hdr_type_traits_pass.cpp ├── no_cxx11_hdr_typeindex_fail.cpp ├── no_cxx11_hdr_typeindex_pass.cpp ├── no_cxx11_hdr_unordered_map_fail.cpp ├── no_cxx11_hdr_unordered_map_pass.cpp ├── no_cxx11_hdr_unordered_set_fail.cpp ├── no_cxx11_hdr_unordered_set_pass.cpp ├── no_cxx11_inline_namespaces_fail.cpp ├── no_cxx11_inline_namespaces_pass.cpp ├── no_cxx11_non_pub_def_fun_fail.cpp ├── no_cxx11_non_pub_def_fun_pass.cpp ├── no_cxx11_numeric_limits_fail.cpp ├── no_cxx11_numeric_limits_pass.cpp ├── no_cxx11_override_fail.cpp ├── no_cxx11_override_pass.cpp ├── no_cxx11_pass.cpp ├── no_cxx11_pointer_traits_fail.cpp ├── no_cxx11_pointer_traits_pass.cpp ├── no_cxx11_ref_qualifiers_fail.cpp ├── no_cxx11_ref_qualifiers_pass.cpp ├── no_cxx11_sfinae_expr_fail.cpp ├── no_cxx11_sfinae_expr_pass.cpp ├── no_cxx11_smart_ptr_fail.cpp ├── no_cxx11_smart_ptr_pass.cpp ├── no_cxx11_std_align_fail.cpp ├── no_cxx11_std_align_pass.cpp ├── no_cxx11_thread_local_fail.cpp ├── no_cxx11_thread_local_pass.cpp ├── no_cxx11_trailing_result_types_fail.cpp ├── no_cxx11_trailing_result_types_pass.cpp ├── no_cxx11_unrestricted_union_fail.cpp ├── no_cxx11_unrestricted_union_pass.cpp ├── no_cxx11_user_lit_fail.cpp ├── no_cxx11_user_lit_pass.cpp ├── no_cxx14_binary_literals_fail.cpp ├── no_cxx14_binary_literals_pass.cpp ├── no_cxx14_constexpr_fail.cpp ├── no_cxx14_constexpr_pass.cpp ├── no_cxx14_decltype_auto_fail.cpp ├── no_cxx14_decltype_auto_pass.cpp ├── no_cxx14_digit_separator_fail.cpp ├── no_cxx14_digit_separator_pass.cpp ├── no_cxx14_fail.cpp ├── no_cxx14_generic_lambda_fail.cpp ├── no_cxx14_generic_lambda_pass.cpp ├── no_cxx14_hdr_shared_mutex_fail.cpp ├── no_cxx14_hdr_shared_mutex_pass.cpp ├── no_cxx14_lambda_capture_fail.cpp ├── no_cxx14_lambda_capture_pass.cpp ├── no_cxx14_member_init_fail.cpp ├── no_cxx14_member_init_pass.cpp ├── no_cxx14_pass.cpp ├── no_cxx14_return_type_ded_fail.cpp ├── no_cxx14_return_type_ded_pass.cpp ├── no_cxx14_std_exchange_fail.cpp ├── no_cxx14_std_exchange_pass.cpp ├── no_cxx14_var_templ_fail.cpp ├── no_cxx14_var_templ_pass.cpp ├── no_cxx17_auto_nontype_template_params_fail.cpp ├── no_cxx17_auto_nontype_template_params_pass.cpp ├── no_cxx17_deduction_guides_fail.cpp ├── no_cxx17_deduction_guides_pass.cpp ├── no_cxx17_fail.cpp ├── no_cxx17_fold_expressions_fail.cpp ├── no_cxx17_fold_expressions_pass.cpp ├── no_cxx17_hdr_any_fail.cpp ├── no_cxx17_hdr_any_pass.cpp ├── no_cxx17_hdr_char_conv_fail.cpp ├── no_cxx17_hdr_char_conv_pass.cpp ├── no_cxx17_hdr_charconv_fail.cpp ├── no_cxx17_hdr_charconv_pass.cpp ├── no_cxx17_hdr_execution_fail.cpp ├── no_cxx17_hdr_execution_pass.cpp ├── no_cxx17_hdr_filesystem_fail.cpp ├── no_cxx17_hdr_filesystem_pass.cpp ├── no_cxx17_hdr_memory_resource_fail.cpp ├── no_cxx17_hdr_memory_resource_pass.cpp ├── no_cxx17_hdr_optional_fail.cpp ├── no_cxx17_hdr_optional_pass.cpp ├── no_cxx17_hdr_string_view_fail.cpp ├── no_cxx17_hdr_string_view_pass.cpp ├── no_cxx17_hdr_variant_fail.cpp ├── no_cxx17_hdr_variant_pass.cpp ├── no_cxx17_if_constexpr_fail.cpp ├── no_cxx17_if_constexpr_pass.cpp ├── no_cxx17_inline_variables_fail.cpp ├── no_cxx17_inline_variables_pass.cpp ├── no_cxx17_iterator_traits_fail.cpp ├── no_cxx17_iterator_traits_pass.cpp ├── no_cxx17_pass.cpp ├── no_cxx17_std_apply_fail.cpp ├── no_cxx17_std_apply_pass.cpp ├── no_cxx17_std_invoke_fail.cpp ├── no_cxx17_std_invoke_pass.cpp ├── no_cxx17_structured_bindings_fail.cpp ├── no_cxx17_structured_bindings_pass.cpp ├── no_cxx20_hdr_barrier_fail.cpp ├── no_cxx20_hdr_barrier_pass.cpp ├── no_cxx20_hdr_bit_fail.cpp ├── no_cxx20_hdr_bit_pass.cpp ├── no_cxx20_hdr_compare_fail.cpp ├── no_cxx20_hdr_compare_pass.cpp ├── no_cxx20_hdr_concepts_fail.cpp ├── no_cxx20_hdr_concepts_pass.cpp ├── no_cxx20_hdr_coroutine_fail.cpp ├── no_cxx20_hdr_coroutine_pass.cpp ├── no_cxx20_hdr_format_fail.cpp ├── no_cxx20_hdr_format_pass.cpp ├── no_cxx20_hdr_latch_fail.cpp ├── no_cxx20_hdr_latch_pass.cpp ├── no_cxx20_hdr_numbers_fail.cpp ├── no_cxx20_hdr_numbers_pass.cpp ├── no_cxx20_hdr_ranges_fail.cpp ├── no_cxx20_hdr_ranges_pass.cpp ├── no_cxx20_hdr_semaphore_fail.cpp ├── no_cxx20_hdr_semaphore_pass.cpp ├── no_cxx20_hdr_source_location_fail.cpp ├── no_cxx20_hdr_source_location_pass.cpp ├── no_cxx20_hdr_span_fail.cpp ├── no_cxx20_hdr_span_pass.cpp ├── no_cxx20_hdr_stop_token_fail.cpp ├── no_cxx20_hdr_stop_token_pass.cpp ├── no_cxx20_hdr_syncstream_fail.cpp ├── no_cxx20_hdr_syncstream_pass.cpp ├── no_cxx20_hdr_version_fail.cpp ├── no_cxx20_hdr_version_pass.cpp ├── no_cxx23_hdr_expected_fail.cpp ├── no_cxx23_hdr_expected_pass.cpp ├── no_cxx23_hdr_flat_map_fail.cpp ├── no_cxx23_hdr_flat_map_pass.cpp ├── no_cxx23_hdr_flat_set_fail.cpp ├── no_cxx23_hdr_flat_set_pass.cpp ├── no_cxx23_hdr_generator_fail.cpp ├── no_cxx23_hdr_generator_pass.cpp ├── no_cxx23_hdr_mdspan_fail.cpp ├── no_cxx23_hdr_mdspan_pass.cpp ├── no_cxx23_hdr_print_fail.cpp ├── no_cxx23_hdr_print_pass.cpp ├── no_cxx23_hdr_spanstream_fail.cpp ├── no_cxx23_hdr_spanstream_pass.cpp ├── no_cxx23_hdr_stacktrace_fail.cpp ├── no_cxx23_hdr_stacktrace_pass.cpp ├── no_cxx23_hdr_stdfloat_fail.cpp ├── no_cxx23_hdr_stdfloat_pass.cpp ├── no_cxx98_binders_fail.cpp ├── no_cxx98_binders_pass.cpp ├── no_cxx98_function_base_fail.cpp ├── no_cxx98_function_base_pass.cpp ├── no_cxx98_random_shuffle_fail.cpp ├── no_cxx98_random_shuffle_pass.cpp ├── no_cxx_hdr_functional_fail.cpp ├── no_cxx_hdr_functional_pass.cpp ├── no_decltype_fail.cpp ├── no_decltype_n3276_fail.cpp ├── no_decltype_n3276_pass.cpp ├── no_decltype_pass.cpp ├── no_ded_typename_fail.cpp ├── no_ded_typename_pass.cpp ├── no_defaulted_functions_fail.cpp ├── no_defaulted_functions_pass.cpp ├── no_deleted_functions_fail.cpp ├── no_deleted_functions_pass.cpp ├── no_dep_nested_class_fail.cpp ├── no_dep_nested_class_pass.cpp ├── no_dep_val_param_fail.cpp ├── no_dep_val_param_pass.cpp ├── no_excep_std_fail.cpp ├── no_excep_std_pass.cpp ├── no_exceptions_fail.cpp ├── no_exceptions_pass.cpp ├── no_exp_func_tem_arg_fail.cpp ├── no_exp_func_tem_arg_pass.cpp ├── no_explicit_cvt_ops_fail.cpp ├── no_explicit_cvt_ops_pass.cpp ├── no_extern_template_fail.cpp ├── no_extern_template_pass.cpp ├── no_fenv_h_fail.cpp ├── no_fenv_h_pass.cpp ├── no_fixed_len_variadic_templates_fail.cpp ├── no_fixed_len_variadic_templates_pass.cpp ├── no_func_tmp_order_fail.cpp ├── no_func_tmp_order_pass.cpp ├── no_function_template_default_args_fail.cpp ├── no_function_template_default_args_pass.cpp ├── no_function_type_spec_fail.cpp ├── no_function_type_spec_pass.cpp ├── no_i64_limits_fail.cpp ├── no_i64_limits_pass.cpp ├── no_inline_memb_init_fail.cpp ├── no_inline_memb_init_pass.cpp ├── no_integral_int64_t_fail.cpp ├── no_integral_int64_t_pass.cpp ├── no_iosfwd_fail.cpp ├── no_iosfwd_pass.cpp ├── no_iostream_fail.cpp ├── no_iostream_pass.cpp ├── no_is_abstract_fail.cpp ├── no_is_abstract_pass.cpp ├── no_iter_construct_fail.cpp ├── no_iter_construct_pass.cpp ├── no_lambdas_fail.cpp ├── no_lambdas_pass.cpp ├── no_limits_const_exp_fail.cpp ├── no_limits_const_exp_pass.cpp ├── no_limits_fail.cpp ├── no_limits_pass.cpp ├── no_ll_limits_fail.cpp ├── no_ll_limits_pass.cpp ├── no_long_long_fail.cpp ├── no_long_long_pass.cpp ├── no_mem_func_spec_fail.cpp ├── no_mem_func_spec_pass.cpp ├── no_mem_tem_keyword_fail.cpp ├── no_mem_tem_keyword_pass.cpp ├── no_mem_tem_pnts_fail.cpp ├── no_mem_tem_pnts_pass.cpp ├── no_mem_templ_frnds_fail.cpp ├── no_mem_templ_frnds_pass.cpp ├── no_mem_templates_fail.cpp ├── no_mem_templates_pass.cpp ├── no_nested_friendship_fail.cpp ├── no_nested_friendship_pass.cpp ├── no_noexcept_fail.cpp ├── no_noexcept_pass.cpp ├── no_nullptr_fail.cpp ├── no_nullptr_pass.cpp ├── no_ops_in_namespace_fail.cpp ├── no_ops_in_namespace_pass.cpp ├── no_part_spec_def_args_fail.cpp ├── no_part_spec_def_args_pass.cpp ├── no_partial_spec_fail.cpp ├── no_partial_spec_pass.cpp ├── no_priv_aggregate_fail.cpp ├── no_priv_aggregate_pass.cpp ├── no_ptr_mem_const_fail.cpp ├── no_ptr_mem_const_pass.cpp ├── no_range_based_for_fail.cpp ├── no_range_based_for_pass.cpp ├── no_raw_literals_fail.cpp ├── no_raw_literals_pass.cpp ├── no_restrict_references_fail.cpp ├── no_restrict_references_pass.cpp ├── no_ret_det_fail.cpp ├── no_ret_det_pass.cpp ├── no_rtti_fail.cpp ├── no_rtti_pass.cpp ├── no_rvalue_references_fail.cpp ├── no_rvalue_references_pass.cpp ├── no_scoped_enums_fail.cpp ├── no_scoped_enums_pass.cpp ├── no_sfinae_expr_fail.cpp ├── no_sfinae_expr_pass.cpp ├── no_sfinae_fail.cpp ├── no_sfinae_pass.cpp ├── no_sstream_fail.cpp ├── no_sstream_pass.cpp ├── no_static_assert_fail.cpp ├── no_static_assert_pass.cpp ├── no_std_allocator_fail.cpp ├── no_std_allocator_pass.cpp ├── no_std_distance_fail.cpp ├── no_std_distance_pass.cpp ├── no_std_iter_traits_fail.cpp ├── no_std_iter_traits_pass.cpp ├── no_std_iterator_fail.cpp ├── no_std_iterator_pass.cpp ├── no_std_locale_fail.cpp ├── no_std_locale_pass.cpp ├── no_std_messages_fail.cpp ├── no_std_messages_pass.cpp ├── no_std_min_max_fail.cpp ├── no_std_min_max_pass.cpp ├── no_std_oi_assign_fail.cpp ├── no_std_oi_assign_pass.cpp ├── no_std_typeinfo_fail.cpp ├── no_std_typeinfo_pass.cpp ├── no_std_use_facet_fail.cpp ├── no_std_use_facet_pass.cpp ├── no_std_wstreambuf_fail.cpp ├── no_std_wstreambuf_pass.cpp ├── no_std_wstring_fail.cpp ├── no_std_wstring_pass.cpp ├── no_stdc_namespace_fail.cpp ├── no_stdc_namespace_pass.cpp ├── no_swprintf_fail.cpp ├── no_swprintf_pass.cpp ├── no_tem_local_classes_fail.cpp ├── no_tem_local_classes_pass.cpp ├── no_template_aliases_fail.cpp ├── no_template_aliases_pass.cpp ├── no_template_streams_fail.cpp ├── no_template_streams_pass.cpp ├── no_template_template_fail.cpp ├── no_template_template_pass.cpp ├── no_two_phase_lookup_fail.cpp ├── no_two_phase_lookup_pass.cpp ├── no_typeid_fail.cpp ├── no_typeid_pass.cpp ├── no_typename_with_ctor_fail.cpp ├── no_typename_with_ctor_pass.cpp ├── no_unicode_literals_fail.cpp ├── no_unicode_literals_pass.cpp ├── no_unified_init_fail.cpp ├── no_unified_init_pass.cpp ├── no_using_breaks_adl_fail.cpp ├── no_using_breaks_adl_pass.cpp ├── no_using_decl_overld_fail.cpp ├── no_using_decl_overld_pass.cpp ├── no_using_template_fail.cpp ├── no_using_template_pass.cpp ├── no_variadic_macros_fail.cpp ├── no_variadic_macros_pass.cpp ├── no_variadic_templates_fail.cpp ├── no_variadic_templates_pass.cpp ├── no_void_returns_fail.cpp ├── no_void_returns_pass.cpp ├── no_wchar_t_fail.cpp ├── no_wchar_t_pass.cpp ├── pragma_message_test.cpp ├── symbol_deprecated_test.cpp ├── test.hpp └── threads │ ├── test_thread_fail1.cpp │ └── test_thread_fail2.cpp └── tools ├── Jamfile.v2 ├── configure.in └── generate.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.drone.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/.drone.star -------------------------------------------------------------------------------- /.drone/after-success.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/before-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/before-script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/.drone/boost.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | checks/architecture/bin 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/appveyor.yml -------------------------------------------------------------------------------- /checks/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/Jamfile.v2 -------------------------------------------------------------------------------- /checks/architecture/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /checks/architecture/32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/32.cpp -------------------------------------------------------------------------------- /checks/architecture/64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/64.cpp -------------------------------------------------------------------------------- /checks/architecture/Jamfile.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/Jamfile.jam -------------------------------------------------------------------------------- /checks/architecture/arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/arm.cpp -------------------------------------------------------------------------------- /checks/architecture/combined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/combined.cpp -------------------------------------------------------------------------------- /checks/architecture/loongarch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/loongarch.cpp -------------------------------------------------------------------------------- /checks/architecture/mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/mips.cpp -------------------------------------------------------------------------------- /checks/architecture/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/power.cpp -------------------------------------------------------------------------------- /checks/architecture/riscv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/riscv.cpp -------------------------------------------------------------------------------- /checks/architecture/s390x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/s390x.cpp -------------------------------------------------------------------------------- /checks/architecture/sparc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/sparc.cpp -------------------------------------------------------------------------------- /checks/architecture/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/architecture/x86.cpp -------------------------------------------------------------------------------- /checks/config.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/config.jam -------------------------------------------------------------------------------- /checks/std/cpp_aggregate_bases_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_aggregate_bases_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_aggregate_nsdmi_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_aggregate_nsdmi_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_alias_templates_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_alias_templates_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_aligned_new_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_aligned_new_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_attributes_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_attributes_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_binary_literals_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_binary_literals_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_capture_star_this_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_capture_star_this_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_char8_t_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_char8_t_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_consteval_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_consteval_23.cpp -------------------------------------------------------------------------------- /checks/std/cpp_constexpr_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_constexpr_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_constexpr_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_constexpr_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_constexpr_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_constexpr_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_decltype_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_decltype_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_decltype_auto_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_decltype_auto_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_deduction_guides_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_deduction_guides_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_exceptions_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_exceptions_03.cpp -------------------------------------------------------------------------------- /checks/std/cpp_explicit_conversion_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_explicit_conversion_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_fold_expressions_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_fold_expressions_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_generic_lambdas_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_generic_lambdas_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_hex_float_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_hex_float_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_if_consteval_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_if_consteval_23.cpp -------------------------------------------------------------------------------- /checks/std/cpp_if_constexpr_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_if_constexpr_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_implicit_move_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_implicit_move_23.cpp -------------------------------------------------------------------------------- /checks/std/cpp_init_captures_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_init_captures_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_initializer_lists_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_initializer_lists_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_inline_variables_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_inline_variables_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lambdas_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lambdas_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_any_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_any_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_apply_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_apply_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_array_constexpr_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_array_constexpr_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_as_const_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_as_const_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_atomic_ref_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_atomic_ref_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_bind_front_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_bind_front_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_bit_cast_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_bit_cast_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_bool_constant_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_bool_constant_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_byte_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_byte_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_char8_t_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_char8_t_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_chrono_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_chrono_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_chrono_udls_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_chrono_udls_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_clamp_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_clamp_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_complex_udls_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_complex_udls_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_concepts_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_concepts_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_constexpr_misc_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_constexpr_misc_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_erase_if_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_erase_if_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_execution_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_execution_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_filesystem_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_filesystem_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_gcd_lcm_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_gcd_lcm_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_hypot_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_hypot_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_invoke_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_invoke_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_is_aggregate_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_is_aggregate_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_is_final_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_is_final_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_is_invocable_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_is_invocable_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_is_null_pointer_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_is_null_pointer_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_is_swappable_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_is_swappable_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_launder_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_launder_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_logical_traits_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_logical_traits_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_make_from_tuple_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_make_from_tuple_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_make_unique_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_make_unique_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_map_try_emplace_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_map_try_emplace_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_memory_resource_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_memory_resource_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_node_extract_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_node_extract_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_not_fn_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_not_fn_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_null_iterators_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_null_iterators_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_optional_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_optional_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_ranges_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_ranges_20.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_sample_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_sample_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_scoped_lock_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_scoped_lock_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_shared_mutex_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_shared_mutex_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_string_udls_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_string_udls_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_string_view_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_string_view_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_to_chars_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_to_chars_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_tuple_element_t_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_tuple_element_t_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_tuples_by_type_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_tuples_by_type_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_variant_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_variant_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_lib_void_t_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_lib_void_t_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_nsdmi_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_nsdmi_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_range_based_for_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_range_based_for_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_range_based_for_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_range_based_for_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_range_based_for_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_range_based_for_23.cpp -------------------------------------------------------------------------------- /checks/std/cpp_raw_strings_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_raw_strings_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_ref_qualifiers_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_ref_qualifiers_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_rtti_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_rtti_03.cpp -------------------------------------------------------------------------------- /checks/std/cpp_rvalue_references_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_rvalue_references_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_size_t_suffix_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_size_t_suffix_23.cpp -------------------------------------------------------------------------------- /checks/std/cpp_sized_deallocation_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_sized_deallocation_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_static_assert_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_static_assert_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_static_assert_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_static_assert_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_structured_bindings_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_structured_bindings_17.cpp -------------------------------------------------------------------------------- /checks/std/cpp_unicode_characters_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_unicode_characters_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_unicode_literals_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_unicode_literals_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_variable_templates_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_variable_templates_14.cpp -------------------------------------------------------------------------------- /checks/std/cpp_variadic_templates_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_variadic_templates_11.cpp -------------------------------------------------------------------------------- /checks/std/cpp_variadic_using_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/std/cpp_variadic_using_17.cpp -------------------------------------------------------------------------------- /checks/test_case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/checks/test_case.cpp -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/configure -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/acknowledgements.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/acknowledgements.qbk -------------------------------------------------------------------------------- /doc/build_time.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/build_time.qbk -------------------------------------------------------------------------------- /doc/config.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/config.qbk -------------------------------------------------------------------------------- /doc/configuring_boost.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/configuring_boost.qbk -------------------------------------------------------------------------------- /doc/cstdint.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/cstdint.qbk -------------------------------------------------------------------------------- /doc/guidelines.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/guidelines.qbk -------------------------------------------------------------------------------- /doc/html/HTML.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/html/HTML.manifest -------------------------------------------------------------------------------- /doc/html/boost_config/build_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/html/boost_config/build_config.html -------------------------------------------------------------------------------- /doc/html/boost_config/cstdint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/html/boost_config/cstdint.html -------------------------------------------------------------------------------- /doc/html/boost_config/rationale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/html/boost_config/rationale.html -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/macro_reference.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/macro_reference.qbk -------------------------------------------------------------------------------- /doc/rationale.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/doc/rationale.qbk -------------------------------------------------------------------------------- /include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /include/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx03.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx11.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx14.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx17.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx20.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx23.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx23.hpp -------------------------------------------------------------------------------- /include/boost/config/assert_cxx98.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/assert_cxx98.hpp -------------------------------------------------------------------------------- /include/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /include/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/wasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/wasm.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/user.hpp -------------------------------------------------------------------------------- /include/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/config/workaround.hpp -------------------------------------------------------------------------------- /include/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/cstdint.hpp -------------------------------------------------------------------------------- /include/boost/cxx11_char_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/cxx11_char_types.hpp -------------------------------------------------------------------------------- /include/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/limits.hpp -------------------------------------------------------------------------------- /include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/include/boost/version.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/abi/abi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/abi/abi_test.cpp -------------------------------------------------------------------------------- /test/abi/abi_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/abi/abi_test.hpp -------------------------------------------------------------------------------- /test/abi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/abi/main.cpp -------------------------------------------------------------------------------- /test/all/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/all/Jamfile.v2 -------------------------------------------------------------------------------- /test/all/options_v2.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/all/options_v2.jam -------------------------------------------------------------------------------- /test/boost_fallthrough_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_fallthrough_test.cpp -------------------------------------------------------------------------------- /test/boost_has_2arg_use_facet.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_2arg_use_facet.ipp -------------------------------------------------------------------------------- /test/boost_has_bethreads.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_bethreads.ipp -------------------------------------------------------------------------------- /test/boost_has_clock_gettime.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_clock_gettime.ipp -------------------------------------------------------------------------------- /test/boost_has_detect_mismatch.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_detect_mismatch.ipp -------------------------------------------------------------------------------- /test/boost_has_dirent_h.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_dirent_h.ipp -------------------------------------------------------------------------------- /test/boost_has_expm1.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_expm1.ipp -------------------------------------------------------------------------------- /test/boost_has_float128.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_float128.ipp -------------------------------------------------------------------------------- /test/boost_has_ftime.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_ftime.ipp -------------------------------------------------------------------------------- /test/boost_has_gettimeofday.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_gettimeofday.ipp -------------------------------------------------------------------------------- /test/boost_has_hash.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_hash.ipp -------------------------------------------------------------------------------- /test/boost_has_int128.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_int128.ipp -------------------------------------------------------------------------------- /test/boost_has_log1p.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_log1p.ipp -------------------------------------------------------------------------------- /test/boost_has_long_long.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_long_long.ipp -------------------------------------------------------------------------------- /test/boost_has_macro_use_facet.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_macro_use_facet.ipp -------------------------------------------------------------------------------- /test/boost_has_ms_int64.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_ms_int64.ipp -------------------------------------------------------------------------------- /test/boost_has_nanosleep.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_nanosleep.ipp -------------------------------------------------------------------------------- /test/boost_has_nl_types_h.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_nl_types_h.ipp -------------------------------------------------------------------------------- /test/boost_has_nrvo.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_nrvo.ipp -------------------------------------------------------------------------------- /test/boost_has_part_alloc.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_part_alloc.ipp -------------------------------------------------------------------------------- /test/boost_has_pthread_delay_np.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_pthread_delay_np.ipp -------------------------------------------------------------------------------- /test/boost_has_pthread_ma_st.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_pthread_ma_st.ipp -------------------------------------------------------------------------------- /test/boost_has_pthread_yield.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_pthread_yield.ipp -------------------------------------------------------------------------------- /test/boost_has_pthreads.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_pthreads.ipp -------------------------------------------------------------------------------- /test/boost_has_rvalue_refs.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_rvalue_refs.ipp -------------------------------------------------------------------------------- /test/boost_has_sched_yield.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_sched_yield.ipp -------------------------------------------------------------------------------- /test/boost_has_sgi_type_traits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_sgi_type_traits.ipp -------------------------------------------------------------------------------- /test/boost_has_sigaction.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_sigaction.ipp -------------------------------------------------------------------------------- /test/boost_has_slist.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_slist.ipp -------------------------------------------------------------------------------- /test/boost_has_static_assert.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_static_assert.ipp -------------------------------------------------------------------------------- /test/boost_has_stdint_h.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_stdint_h.ipp -------------------------------------------------------------------------------- /test/boost_has_stlp_use_facet.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_stlp_use_facet.ipp -------------------------------------------------------------------------------- /test/boost_has_unistd_h.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_unistd_h.ipp -------------------------------------------------------------------------------- /test/boost_has_variadic_tmpl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_variadic_tmpl.ipp -------------------------------------------------------------------------------- /test/boost_has_vc6_mem_templ.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_vc6_mem_templ.ipp -------------------------------------------------------------------------------- /test/boost_has_vc_iterator.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_vc_iterator.ipp -------------------------------------------------------------------------------- /test/boost_has_winthreads.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_has_winthreads.ipp -------------------------------------------------------------------------------- /test/boost_no_adl_barrier.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_adl_barrier.ipp -------------------------------------------------------------------------------- /test/boost_no_arg_dep_lookup.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_arg_dep_lookup.ipp -------------------------------------------------------------------------------- /test/boost_no_array_type_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_array_type_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_auto_declarations.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_auto_declarations.ipp -------------------------------------------------------------------------------- /test/boost_no_auto_multidecl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_auto_multidecl.ipp -------------------------------------------------------------------------------- /test/boost_no_auto_ptr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_auto_ptr.ipp -------------------------------------------------------------------------------- /test/boost_no_bcb_partial_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_bcb_partial_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_char16_t.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_char16_t.ipp -------------------------------------------------------------------------------- /test/boost_no_char32_t.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_char32_t.ipp -------------------------------------------------------------------------------- /test/boost_no_com_value_init.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_com_value_init.ipp -------------------------------------------------------------------------------- /test/boost_no_constexpr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_constexpr.ipp -------------------------------------------------------------------------------- /test/boost_no_ctype_functions.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ctype_functions.ipp -------------------------------------------------------------------------------- /test/boost_no_cv_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cv_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_cv_void_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cv_void_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_cwchar.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cwchar.ipp -------------------------------------------------------------------------------- /test/boost_no_cwctype.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cwctype.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx03.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx03.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_addressof.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_addressof.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_alignas.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_alignas.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_alignof.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_alignof.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_allocator.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_allocator.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_atomic_sp.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_atomic_sp.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_exception.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_exception.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_final.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_final.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_array.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_array.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_atomic.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_atomic.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_chrono.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_chrono.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_codecvt.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_codecvt.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_future.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_future.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_mutex.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_mutex.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_random.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_random.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_ratio.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_ratio.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_regex.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_regex.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_thread.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_thread.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_tuple.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_tuple.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_hdr_typeindex.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_hdr_typeindex.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_numeric_limits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_numeric_limits.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_override.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_override.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_pointer_traits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_pointer_traits.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_ref_qualifiers.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_ref_qualifiers.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_sfinae_expr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_sfinae_expr.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_smart_ptr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_smart_ptr.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_std_align.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_std_align.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_thread_local.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_thread_local.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx11_user_lit.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx11_user_lit.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_constexpr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_constexpr.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_decltype_auto.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_decltype_auto.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_generic_lambda.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_generic_lambda.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_lambda_capture.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_lambda_capture.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_member_init.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_member_init.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_std_exchange.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_std_exchange.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx14_var_templ.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx14_var_templ.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_any.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_any.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_charconv.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_charconv.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_execution.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_execution.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_filesystem.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_filesystem.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_optional.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_optional.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_hdr_variant.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_hdr_variant.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_if_constexpr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_if_constexpr.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_std_apply.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_std_apply.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx17_std_invoke.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx17_std_invoke.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_barrier.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_barrier.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_bit.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_bit.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_compare.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_compare.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_concepts.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_concepts.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_coroutine.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_coroutine.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_format.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_format.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_latch.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_latch.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_numbers.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_numbers.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_ranges.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_ranges.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_semaphore.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_semaphore.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_span.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_span.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_stop_token.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_stop_token.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_syncstream.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_syncstream.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx20_hdr_version.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx20_hdr_version.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_expected.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_expected.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_flat_map.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_flat_map.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_flat_set.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_flat_set.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_generator.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_generator.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_mdspan.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_mdspan.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_print.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_print.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_spanstream.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_spanstream.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_stacktrace.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_stacktrace.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx23_hdr_stdfloat.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx23_hdr_stdfloat.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx98_binders.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx98_binders.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx98_function_base.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx98_function_base.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx98_random_shuffle.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx98_random_shuffle.ipp -------------------------------------------------------------------------------- /test/boost_no_cxx_hdr_functional.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_cxx_hdr_functional.ipp -------------------------------------------------------------------------------- /test/boost_no_decltype.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_decltype.ipp -------------------------------------------------------------------------------- /test/boost_no_decltype_n3276.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_decltype_n3276.ipp -------------------------------------------------------------------------------- /test/boost_no_ded_typename.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ded_typename.ipp -------------------------------------------------------------------------------- /test/boost_no_defaulted_functions.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_defaulted_functions.ipp -------------------------------------------------------------------------------- /test/boost_no_deleted_functions.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_deleted_functions.ipp -------------------------------------------------------------------------------- /test/boost_no_dep_nested_class.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_dep_nested_class.ipp -------------------------------------------------------------------------------- /test/boost_no_dep_val_param.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_dep_val_param.ipp -------------------------------------------------------------------------------- /test/boost_no_excep_std.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_excep_std.ipp -------------------------------------------------------------------------------- /test/boost_no_exceptions.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_exceptions.ipp -------------------------------------------------------------------------------- /test/boost_no_exp_func_tem_arg.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_exp_func_tem_arg.ipp -------------------------------------------------------------------------------- /test/boost_no_explicit_cvt_ops.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_explicit_cvt_ops.ipp -------------------------------------------------------------------------------- /test/boost_no_extern_template.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_extern_template.ipp -------------------------------------------------------------------------------- /test/boost_no_fenv_h.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_fenv_h.ipp -------------------------------------------------------------------------------- /test/boost_no_func_tmp_order.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_func_tmp_order.ipp -------------------------------------------------------------------------------- /test/boost_no_function_type_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_function_type_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_i64_limits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_i64_limits.ipp -------------------------------------------------------------------------------- /test/boost_no_inline_memb_init.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_inline_memb_init.ipp -------------------------------------------------------------------------------- /test/boost_no_integral_int64_t.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_integral_int64_t.ipp -------------------------------------------------------------------------------- /test/boost_no_iosfwd.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_iosfwd.ipp -------------------------------------------------------------------------------- /test/boost_no_iostream.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_iostream.ipp -------------------------------------------------------------------------------- /test/boost_no_is_abstract.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_is_abstract.ipp -------------------------------------------------------------------------------- /test/boost_no_iter_construct.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_iter_construct.ipp -------------------------------------------------------------------------------- /test/boost_no_lambdas.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_lambdas.ipp -------------------------------------------------------------------------------- /test/boost_no_limits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_limits.ipp -------------------------------------------------------------------------------- /test/boost_no_limits_const_exp.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_limits_const_exp.ipp -------------------------------------------------------------------------------- /test/boost_no_ll_limits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ll_limits.ipp -------------------------------------------------------------------------------- /test/boost_no_long_long.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_long_long.ipp -------------------------------------------------------------------------------- /test/boost_no_mem_func_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_mem_func_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_mem_tem_keyword.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_mem_tem_keyword.ipp -------------------------------------------------------------------------------- /test/boost_no_mem_tem_pnts.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_mem_tem_pnts.ipp -------------------------------------------------------------------------------- /test/boost_no_mem_templ_frnds.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_mem_templ_frnds.ipp -------------------------------------------------------------------------------- /test/boost_no_mem_templates.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_mem_templates.ipp -------------------------------------------------------------------------------- /test/boost_no_nested_friendship.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_nested_friendship.ipp -------------------------------------------------------------------------------- /test/boost_no_noexcept.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_noexcept.ipp -------------------------------------------------------------------------------- /test/boost_no_nullptr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_nullptr.ipp -------------------------------------------------------------------------------- /test/boost_no_ops_in_namespace.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ops_in_namespace.ipp -------------------------------------------------------------------------------- /test/boost_no_part_spec_def_args.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_part_spec_def_args.ipp -------------------------------------------------------------------------------- /test/boost_no_partial_spec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_partial_spec.ipp -------------------------------------------------------------------------------- /test/boost_no_priv_aggregate.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_priv_aggregate.ipp -------------------------------------------------------------------------------- /test/boost_no_ptr_mem_const.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ptr_mem_const.ipp -------------------------------------------------------------------------------- /test/boost_no_range_based_for.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_range_based_for.ipp -------------------------------------------------------------------------------- /test/boost_no_raw_literals.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_raw_literals.ipp -------------------------------------------------------------------------------- /test/boost_no_restrict_references.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_restrict_references.ipp -------------------------------------------------------------------------------- /test/boost_no_ret_det.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_ret_det.ipp -------------------------------------------------------------------------------- /test/boost_no_rtti.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_rtti.ipp -------------------------------------------------------------------------------- /test/boost_no_rvalue_references.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_rvalue_references.ipp -------------------------------------------------------------------------------- /test/boost_no_scoped_enums.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_scoped_enums.ipp -------------------------------------------------------------------------------- /test/boost_no_sfinae.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_sfinae.ipp -------------------------------------------------------------------------------- /test/boost_no_sfinae_expr.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_sfinae_expr.ipp -------------------------------------------------------------------------------- /test/boost_no_sstream.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_sstream.ipp -------------------------------------------------------------------------------- /test/boost_no_static_assert.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_static_assert.ipp -------------------------------------------------------------------------------- /test/boost_no_std_allocator.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_allocator.ipp -------------------------------------------------------------------------------- /test/boost_no_std_distance.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_distance.ipp -------------------------------------------------------------------------------- /test/boost_no_std_iter_traits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_iter_traits.ipp -------------------------------------------------------------------------------- /test/boost_no_std_iterator.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_iterator.ipp -------------------------------------------------------------------------------- /test/boost_no_std_locale.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_locale.ipp -------------------------------------------------------------------------------- /test/boost_no_std_messages.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_messages.ipp -------------------------------------------------------------------------------- /test/boost_no_std_min_max.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_min_max.ipp -------------------------------------------------------------------------------- /test/boost_no_std_oi_assign.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_oi_assign.ipp -------------------------------------------------------------------------------- /test/boost_no_std_typeinfo.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_typeinfo.ipp -------------------------------------------------------------------------------- /test/boost_no_std_use_facet.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_use_facet.ipp -------------------------------------------------------------------------------- /test/boost_no_std_wstreambuf.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_wstreambuf.ipp -------------------------------------------------------------------------------- /test/boost_no_std_wstring.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_std_wstring.ipp -------------------------------------------------------------------------------- /test/boost_no_stdc_namespace.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_stdc_namespace.ipp -------------------------------------------------------------------------------- /test/boost_no_swprintf.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_swprintf.ipp -------------------------------------------------------------------------------- /test/boost_no_tem_local_classes.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_tem_local_classes.ipp -------------------------------------------------------------------------------- /test/boost_no_template_aliases.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_template_aliases.ipp -------------------------------------------------------------------------------- /test/boost_no_template_streams.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_template_streams.ipp -------------------------------------------------------------------------------- /test/boost_no_template_template.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_template_template.ipp -------------------------------------------------------------------------------- /test/boost_no_two_phase_lookup.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_two_phase_lookup.ipp -------------------------------------------------------------------------------- /test/boost_no_typeid.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_typeid.ipp -------------------------------------------------------------------------------- /test/boost_no_typename_with_ctor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_typename_with_ctor.ipp -------------------------------------------------------------------------------- /test/boost_no_unicode_literals.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_unicode_literals.ipp -------------------------------------------------------------------------------- /test/boost_no_unified_init.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_unified_init.ipp -------------------------------------------------------------------------------- /test/boost_no_using_breaks_adl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_using_breaks_adl.ipp -------------------------------------------------------------------------------- /test/boost_no_using_decl_overld.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_using_decl_overld.ipp -------------------------------------------------------------------------------- /test/boost_no_using_template.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_using_template.ipp -------------------------------------------------------------------------------- /test/boost_no_variadic_macros.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_variadic_macros.ipp -------------------------------------------------------------------------------- /test/boost_no_variadic_templates.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_variadic_templates.ipp -------------------------------------------------------------------------------- /test/boost_no_void_returns.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_void_returns.ipp -------------------------------------------------------------------------------- /test/boost_no_wchar_t.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_no_wchar_t.ipp -------------------------------------------------------------------------------- /test/boost_override_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/boost_override_test.cpp -------------------------------------------------------------------------------- /test/check_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/check_memory.cpp -------------------------------------------------------------------------------- /test/cmd_line_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/cmd_line_check.cpp -------------------------------------------------------------------------------- /test/config_build_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/config_build_check.cpp -------------------------------------------------------------------------------- /test/config_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/config_info.cpp -------------------------------------------------------------------------------- /test/config_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/config_test.cpp -------------------------------------------------------------------------------- /test/config_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/config_test.cu -------------------------------------------------------------------------------- /test/config_test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/config_test_c.c -------------------------------------------------------------------------------- /test/cstdint_include_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/cstdint_include_test.cpp -------------------------------------------------------------------------------- /test/cstdint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/cstdint_test.cpp -------------------------------------------------------------------------------- /test/cstdint_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/cstdint_test2.cpp -------------------------------------------------------------------------------- /test/has_2arg_use_facet_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_2arg_use_facet_fail.cpp -------------------------------------------------------------------------------- /test/has_2arg_use_facet_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_2arg_use_facet_pass.cpp -------------------------------------------------------------------------------- /test/has_bethreads_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_bethreads_fail.cpp -------------------------------------------------------------------------------- /test/has_bethreads_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_bethreads_pass.cpp -------------------------------------------------------------------------------- /test/has_clock_gettime_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_clock_gettime_fail.cpp -------------------------------------------------------------------------------- /test/has_clock_gettime_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_clock_gettime_pass.cpp -------------------------------------------------------------------------------- /test/has_detect_mismatch_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_detect_mismatch_fail.cpp -------------------------------------------------------------------------------- /test/has_detect_mismatch_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_detect_mismatch_pass.cpp -------------------------------------------------------------------------------- /test/has_dirent_h_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_dirent_h_fail.cpp -------------------------------------------------------------------------------- /test/has_dirent_h_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_dirent_h_pass.cpp -------------------------------------------------------------------------------- /test/has_expm1_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_expm1_fail.cpp -------------------------------------------------------------------------------- /test/has_expm1_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_expm1_pass.cpp -------------------------------------------------------------------------------- /test/has_float128_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_float128_fail.cpp -------------------------------------------------------------------------------- /test/has_float128_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_float128_pass.cpp -------------------------------------------------------------------------------- /test/has_ftime_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_ftime_fail.cpp -------------------------------------------------------------------------------- /test/has_ftime_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_ftime_pass.cpp -------------------------------------------------------------------------------- /test/has_gettimeofday_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_gettimeofday_fail.cpp -------------------------------------------------------------------------------- /test/has_gettimeofday_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_gettimeofday_pass.cpp -------------------------------------------------------------------------------- /test/has_hash_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_hash_fail.cpp -------------------------------------------------------------------------------- /test/has_hash_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_hash_pass.cpp -------------------------------------------------------------------------------- /test/has_int128_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_int128_fail.cpp -------------------------------------------------------------------------------- /test/has_int128_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_int128_pass.cpp -------------------------------------------------------------------------------- /test/has_log1p_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_log1p_fail.cpp -------------------------------------------------------------------------------- /test/has_log1p_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_log1p_pass.cpp -------------------------------------------------------------------------------- /test/has_long_long_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_long_long_fail.cpp -------------------------------------------------------------------------------- /test/has_long_long_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_long_long_pass.cpp -------------------------------------------------------------------------------- /test/has_macro_use_facet_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_macro_use_facet_fail.cpp -------------------------------------------------------------------------------- /test/has_macro_use_facet_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_macro_use_facet_pass.cpp -------------------------------------------------------------------------------- /test/has_ms_int64_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_ms_int64_fail.cpp -------------------------------------------------------------------------------- /test/has_ms_int64_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_ms_int64_pass.cpp -------------------------------------------------------------------------------- /test/has_nanosleep_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nanosleep_fail.cpp -------------------------------------------------------------------------------- /test/has_nanosleep_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nanosleep_pass.cpp -------------------------------------------------------------------------------- /test/has_nl_types_h_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nl_types_h_fail.cpp -------------------------------------------------------------------------------- /test/has_nl_types_h_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nl_types_h_pass.cpp -------------------------------------------------------------------------------- /test/has_nrvo_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nrvo_fail.cpp -------------------------------------------------------------------------------- /test/has_nrvo_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_nrvo_pass.cpp -------------------------------------------------------------------------------- /test/has_part_alloc_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_part_alloc_fail.cpp -------------------------------------------------------------------------------- /test/has_part_alloc_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_part_alloc_pass.cpp -------------------------------------------------------------------------------- /test/has_pthread_delay_np_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_delay_np_fail.cpp -------------------------------------------------------------------------------- /test/has_pthread_delay_np_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_delay_np_pass.cpp -------------------------------------------------------------------------------- /test/has_pthread_ma_st_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_ma_st_fail.cpp -------------------------------------------------------------------------------- /test/has_pthread_ma_st_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_ma_st_pass.cpp -------------------------------------------------------------------------------- /test/has_pthread_yield_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_yield_fail.cpp -------------------------------------------------------------------------------- /test/has_pthread_yield_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthread_yield_pass.cpp -------------------------------------------------------------------------------- /test/has_pthreads_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthreads_fail.cpp -------------------------------------------------------------------------------- /test/has_pthreads_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_pthreads_pass.cpp -------------------------------------------------------------------------------- /test/has_rvalue_refs_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_rvalue_refs_fail.cpp -------------------------------------------------------------------------------- /test/has_rvalue_refs_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_rvalue_refs_pass.cpp -------------------------------------------------------------------------------- /test/has_sched_yield_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sched_yield_fail.cpp -------------------------------------------------------------------------------- /test/has_sched_yield_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sched_yield_pass.cpp -------------------------------------------------------------------------------- /test/has_sgi_type_traits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sgi_type_traits_fail.cpp -------------------------------------------------------------------------------- /test/has_sgi_type_traits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sgi_type_traits_pass.cpp -------------------------------------------------------------------------------- /test/has_sigaction_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sigaction_fail.cpp -------------------------------------------------------------------------------- /test/has_sigaction_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_sigaction_pass.cpp -------------------------------------------------------------------------------- /test/has_slist_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_slist_fail.cpp -------------------------------------------------------------------------------- /test/has_slist_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_slist_pass.cpp -------------------------------------------------------------------------------- /test/has_static_assert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_static_assert_fail.cpp -------------------------------------------------------------------------------- /test/has_static_assert_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_static_assert_pass.cpp -------------------------------------------------------------------------------- /test/has_stdint_h_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_stdint_h_fail.cpp -------------------------------------------------------------------------------- /test/has_stdint_h_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_stdint_h_pass.cpp -------------------------------------------------------------------------------- /test/has_stlp_use_facet_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_stlp_use_facet_fail.cpp -------------------------------------------------------------------------------- /test/has_stlp_use_facet_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_stlp_use_facet_pass.cpp -------------------------------------------------------------------------------- /test/has_unistd_h_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_unistd_h_fail.cpp -------------------------------------------------------------------------------- /test/has_unistd_h_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_unistd_h_pass.cpp -------------------------------------------------------------------------------- /test/has_variadic_tmpl_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_variadic_tmpl_fail.cpp -------------------------------------------------------------------------------- /test/has_variadic_tmpl_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_variadic_tmpl_pass.cpp -------------------------------------------------------------------------------- /test/has_vc6_mem_templ_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_vc6_mem_templ_fail.cpp -------------------------------------------------------------------------------- /test/has_vc6_mem_templ_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_vc6_mem_templ_pass.cpp -------------------------------------------------------------------------------- /test/has_vc_iterator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_vc_iterator_fail.cpp -------------------------------------------------------------------------------- /test/has_vc_iterator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_vc_iterator_pass.cpp -------------------------------------------------------------------------------- /test/has_winthreads_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_winthreads_fail.cpp -------------------------------------------------------------------------------- /test/has_winthreads_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/has_winthreads_pass.cpp -------------------------------------------------------------------------------- /test/header_deprecated_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/header_deprecated_test.cpp -------------------------------------------------------------------------------- /test/helper_macro_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/helper_macro_test.cpp -------------------------------------------------------------------------------- /test/helper_macros_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/helper_macros_test.cpp -------------------------------------------------------------------------------- /test/limits_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/limits_test.cpp -------------------------------------------------------------------------------- /test/link/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/Jamfile.v2 -------------------------------------------------------------------------------- /test/link/bc_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/bc_gen.sh -------------------------------------------------------------------------------- /test/link/borland.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/borland.mak -------------------------------------------------------------------------------- /test/link/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/common.sh -------------------------------------------------------------------------------- /test/link/link_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/link_test.cpp -------------------------------------------------------------------------------- /test/link/link_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/link_test.hpp -------------------------------------------------------------------------------- /test/link/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/main.cpp -------------------------------------------------------------------------------- /test/link/test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/link/vc6-stlport.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc6-stlport.mak -------------------------------------------------------------------------------- /test/link/vc6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc6.mak -------------------------------------------------------------------------------- /test/link/vc7-stlport.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc7-stlport.mak -------------------------------------------------------------------------------- /test/link/vc7.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc7.mak -------------------------------------------------------------------------------- /test/link/vc71-stlport.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc71-stlport.mak -------------------------------------------------------------------------------- /test/link/vc71.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc71.mak -------------------------------------------------------------------------------- /test/link/vc_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/link/vc_gen.sh -------------------------------------------------------------------------------- /test/math_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/math_info.cpp -------------------------------------------------------------------------------- /test/no_adl_barrier_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_adl_barrier_fail.cpp -------------------------------------------------------------------------------- /test/no_adl_barrier_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_adl_barrier_pass.cpp -------------------------------------------------------------------------------- /test/no_arg_dep_lookup_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_arg_dep_lookup_fail.cpp -------------------------------------------------------------------------------- /test/no_arg_dep_lookup_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_arg_dep_lookup_pass.cpp -------------------------------------------------------------------------------- /test/no_array_type_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_array_type_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_array_type_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_array_type_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_auto_declarations_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_declarations_fail.cpp -------------------------------------------------------------------------------- /test/no_auto_declarations_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_declarations_pass.cpp -------------------------------------------------------------------------------- /test/no_auto_multidecl_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_multidecl_fail.cpp -------------------------------------------------------------------------------- /test/no_auto_multidecl_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_multidecl_pass.cpp -------------------------------------------------------------------------------- /test/no_auto_ptr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_ptr_fail.cpp -------------------------------------------------------------------------------- /test/no_auto_ptr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_auto_ptr_pass.cpp -------------------------------------------------------------------------------- /test/no_bcb_partial_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_bcb_partial_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_bcb_partial_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_bcb_partial_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_char16_t_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_char16_t_fail.cpp -------------------------------------------------------------------------------- /test/no_char16_t_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_char16_t_pass.cpp -------------------------------------------------------------------------------- /test/no_char32_t_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_char32_t_fail.cpp -------------------------------------------------------------------------------- /test/no_char32_t_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_char32_t_pass.cpp -------------------------------------------------------------------------------- /test/no_com_value_init_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_com_value_init_fail.cpp -------------------------------------------------------------------------------- /test/no_com_value_init_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_com_value_init_pass.cpp -------------------------------------------------------------------------------- /test/no_constexpr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_constexpr_fail.cpp -------------------------------------------------------------------------------- /test/no_constexpr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_constexpr_pass.cpp -------------------------------------------------------------------------------- /test/no_ctype_functions_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ctype_functions_fail.cpp -------------------------------------------------------------------------------- /test/no_ctype_functions_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ctype_functions_pass.cpp -------------------------------------------------------------------------------- /test/no_cv_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cv_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_cv_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cv_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_cv_void_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cv_void_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_cv_void_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cv_void_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_cwchar_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cwchar_fail.cpp -------------------------------------------------------------------------------- /test/no_cwchar_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cwchar_pass.cpp -------------------------------------------------------------------------------- /test/no_cwctype_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cwctype_fail.cpp -------------------------------------------------------------------------------- /test/no_cwctype_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cwctype_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx03_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx03_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx03_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx03_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_addressof_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_addressof_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_addressof_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_addressof_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_alignas_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_alignas_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_alignas_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_alignas_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_alignof_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_alignof_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_alignof_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_alignof_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_allocator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_allocator_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_allocator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_allocator_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_atomic_sp_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_atomic_sp_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_atomic_sp_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_atomic_sp_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_defaulted_moves_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_defaulted_moves_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_defaulted_moves_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_defaulted_moves_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_exception_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_exception_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_exception_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_exception_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_final_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_final_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_final_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_final_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_array_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_array_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_array_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_array_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_atomic_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_atomic_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_atomic_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_atomic_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_chrono_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_chrono_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_chrono_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_chrono_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_codecvt_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_codecvt_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_codecvt_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_codecvt_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_future_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_future_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_future_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_future_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_mutex_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_mutex_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_mutex_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_mutex_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_random_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_random_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_random_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_random_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_ratio_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_ratio_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_ratio_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_ratio_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_regex_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_regex_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_regex_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_regex_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_thread_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_thread_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_thread_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_thread_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_tuple_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_tuple_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_tuple_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_tuple_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_type_traits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_type_traits_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_type_traits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_type_traits_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_typeindex_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_typeindex_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_hdr_typeindex_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_hdr_typeindex_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_non_pub_def_fun_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_non_pub_def_fun_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_non_pub_def_fun_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_non_pub_def_fun_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_numeric_limits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_numeric_limits_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_numeric_limits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_numeric_limits_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_override_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_override_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_override_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_override_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_pointer_traits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_pointer_traits_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_pointer_traits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_pointer_traits_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_ref_qualifiers_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_ref_qualifiers_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_ref_qualifiers_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_ref_qualifiers_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_sfinae_expr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_sfinae_expr_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_sfinae_expr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_sfinae_expr_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_smart_ptr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_smart_ptr_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_smart_ptr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_smart_ptr_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_std_align_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_std_align_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_std_align_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_std_align_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_thread_local_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_thread_local_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_thread_local_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_thread_local_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx11_user_lit_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_user_lit_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx11_user_lit_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx11_user_lit_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_binary_literals_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_binary_literals_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_binary_literals_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_binary_literals_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_constexpr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_constexpr_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_constexpr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_constexpr_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_decltype_auto_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_decltype_auto_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_decltype_auto_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_decltype_auto_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_digit_separator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_digit_separator_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_digit_separator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_digit_separator_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_generic_lambda_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_generic_lambda_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_generic_lambda_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_generic_lambda_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_lambda_capture_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_lambda_capture_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_lambda_capture_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_lambda_capture_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_member_init_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_member_init_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_member_init_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_member_init_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_return_type_ded_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_return_type_ded_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_return_type_ded_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_return_type_ded_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_std_exchange_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_std_exchange_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_std_exchange_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_std_exchange_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx14_var_templ_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_var_templ_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx14_var_templ_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx14_var_templ_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_any_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_any_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_any_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_any_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_char_conv_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_char_conv_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_char_conv_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_char_conv_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_charconv_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_charconv_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_charconv_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_charconv_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_execution_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_execution_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_execution_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_execution_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_filesystem_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_filesystem_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_filesystem_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_filesystem_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_optional_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_optional_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_optional_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_optional_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_string_view_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_string_view_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_string_view_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_string_view_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_variant_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_variant_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_hdr_variant_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_hdr_variant_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_if_constexpr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_if_constexpr_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_if_constexpr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_if_constexpr_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_iterator_traits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_iterator_traits_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_iterator_traits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_iterator_traits_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_std_apply_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_std_apply_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_std_apply_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_std_apply_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx17_std_invoke_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_std_invoke_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx17_std_invoke_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx17_std_invoke_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_barrier_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_barrier_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_barrier_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_barrier_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_bit_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_bit_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_bit_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_bit_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_compare_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_compare_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_compare_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_compare_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_concepts_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_concepts_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_concepts_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_concepts_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_coroutine_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_coroutine_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_coroutine_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_coroutine_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_format_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_format_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_format_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_format_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_latch_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_latch_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_latch_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_latch_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_numbers_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_numbers_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_numbers_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_numbers_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_ranges_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_ranges_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_ranges_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_ranges_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_semaphore_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_semaphore_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_semaphore_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_semaphore_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_span_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_span_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_span_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_span_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_stop_token_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_stop_token_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_stop_token_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_stop_token_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_syncstream_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_syncstream_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_syncstream_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_syncstream_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_version_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_version_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx20_hdr_version_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx20_hdr_version_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_expected_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_expected_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_expected_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_expected_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_flat_map_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_flat_map_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_flat_map_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_flat_map_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_flat_set_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_flat_set_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_flat_set_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_flat_set_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_generator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_generator_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_generator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_generator_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_mdspan_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_mdspan_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_mdspan_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_mdspan_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_print_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_print_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_print_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_print_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_spanstream_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_spanstream_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_spanstream_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_spanstream_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_stacktrace_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_stacktrace_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_stacktrace_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_stacktrace_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_stdfloat_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_stdfloat_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx23_hdr_stdfloat_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx23_hdr_stdfloat_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx98_binders_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_binders_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx98_binders_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_binders_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx98_function_base_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_function_base_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx98_function_base_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_function_base_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx98_random_shuffle_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_random_shuffle_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx98_random_shuffle_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx98_random_shuffle_pass.cpp -------------------------------------------------------------------------------- /test/no_cxx_hdr_functional_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx_hdr_functional_fail.cpp -------------------------------------------------------------------------------- /test/no_cxx_hdr_functional_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_cxx_hdr_functional_pass.cpp -------------------------------------------------------------------------------- /test/no_decltype_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_decltype_fail.cpp -------------------------------------------------------------------------------- /test/no_decltype_n3276_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_decltype_n3276_fail.cpp -------------------------------------------------------------------------------- /test/no_decltype_n3276_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_decltype_n3276_pass.cpp -------------------------------------------------------------------------------- /test/no_decltype_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_decltype_pass.cpp -------------------------------------------------------------------------------- /test/no_ded_typename_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ded_typename_fail.cpp -------------------------------------------------------------------------------- /test/no_ded_typename_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ded_typename_pass.cpp -------------------------------------------------------------------------------- /test/no_defaulted_functions_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_defaulted_functions_fail.cpp -------------------------------------------------------------------------------- /test/no_defaulted_functions_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_defaulted_functions_pass.cpp -------------------------------------------------------------------------------- /test/no_deleted_functions_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_deleted_functions_fail.cpp -------------------------------------------------------------------------------- /test/no_deleted_functions_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_deleted_functions_pass.cpp -------------------------------------------------------------------------------- /test/no_dep_nested_class_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_dep_nested_class_fail.cpp -------------------------------------------------------------------------------- /test/no_dep_nested_class_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_dep_nested_class_pass.cpp -------------------------------------------------------------------------------- /test/no_dep_val_param_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_dep_val_param_fail.cpp -------------------------------------------------------------------------------- /test/no_dep_val_param_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_dep_val_param_pass.cpp -------------------------------------------------------------------------------- /test/no_excep_std_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_excep_std_fail.cpp -------------------------------------------------------------------------------- /test/no_excep_std_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_excep_std_pass.cpp -------------------------------------------------------------------------------- /test/no_exceptions_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_exceptions_fail.cpp -------------------------------------------------------------------------------- /test/no_exceptions_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_exceptions_pass.cpp -------------------------------------------------------------------------------- /test/no_exp_func_tem_arg_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_exp_func_tem_arg_fail.cpp -------------------------------------------------------------------------------- /test/no_exp_func_tem_arg_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_exp_func_tem_arg_pass.cpp -------------------------------------------------------------------------------- /test/no_explicit_cvt_ops_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_explicit_cvt_ops_fail.cpp -------------------------------------------------------------------------------- /test/no_explicit_cvt_ops_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_explicit_cvt_ops_pass.cpp -------------------------------------------------------------------------------- /test/no_extern_template_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_extern_template_fail.cpp -------------------------------------------------------------------------------- /test/no_extern_template_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_extern_template_pass.cpp -------------------------------------------------------------------------------- /test/no_fenv_h_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_fenv_h_fail.cpp -------------------------------------------------------------------------------- /test/no_fenv_h_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_fenv_h_pass.cpp -------------------------------------------------------------------------------- /test/no_func_tmp_order_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_func_tmp_order_fail.cpp -------------------------------------------------------------------------------- /test/no_func_tmp_order_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_func_tmp_order_pass.cpp -------------------------------------------------------------------------------- /test/no_function_type_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_function_type_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_function_type_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_function_type_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_i64_limits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_i64_limits_fail.cpp -------------------------------------------------------------------------------- /test/no_i64_limits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_i64_limits_pass.cpp -------------------------------------------------------------------------------- /test/no_inline_memb_init_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_inline_memb_init_fail.cpp -------------------------------------------------------------------------------- /test/no_inline_memb_init_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_inline_memb_init_pass.cpp -------------------------------------------------------------------------------- /test/no_integral_int64_t_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_integral_int64_t_fail.cpp -------------------------------------------------------------------------------- /test/no_integral_int64_t_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_integral_int64_t_pass.cpp -------------------------------------------------------------------------------- /test/no_iosfwd_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iosfwd_fail.cpp -------------------------------------------------------------------------------- /test/no_iosfwd_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iosfwd_pass.cpp -------------------------------------------------------------------------------- /test/no_iostream_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iostream_fail.cpp -------------------------------------------------------------------------------- /test/no_iostream_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iostream_pass.cpp -------------------------------------------------------------------------------- /test/no_is_abstract_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_is_abstract_fail.cpp -------------------------------------------------------------------------------- /test/no_is_abstract_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_is_abstract_pass.cpp -------------------------------------------------------------------------------- /test/no_iter_construct_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iter_construct_fail.cpp -------------------------------------------------------------------------------- /test/no_iter_construct_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_iter_construct_pass.cpp -------------------------------------------------------------------------------- /test/no_lambdas_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_lambdas_fail.cpp -------------------------------------------------------------------------------- /test/no_lambdas_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_lambdas_pass.cpp -------------------------------------------------------------------------------- /test/no_limits_const_exp_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_limits_const_exp_fail.cpp -------------------------------------------------------------------------------- /test/no_limits_const_exp_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_limits_const_exp_pass.cpp -------------------------------------------------------------------------------- /test/no_limits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_limits_fail.cpp -------------------------------------------------------------------------------- /test/no_limits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_limits_pass.cpp -------------------------------------------------------------------------------- /test/no_ll_limits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ll_limits_fail.cpp -------------------------------------------------------------------------------- /test/no_ll_limits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ll_limits_pass.cpp -------------------------------------------------------------------------------- /test/no_long_long_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_long_long_fail.cpp -------------------------------------------------------------------------------- /test/no_long_long_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_long_long_pass.cpp -------------------------------------------------------------------------------- /test/no_mem_func_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_func_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_mem_func_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_func_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_mem_tem_keyword_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_tem_keyword_fail.cpp -------------------------------------------------------------------------------- /test/no_mem_tem_keyword_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_tem_keyword_pass.cpp -------------------------------------------------------------------------------- /test/no_mem_tem_pnts_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_tem_pnts_fail.cpp -------------------------------------------------------------------------------- /test/no_mem_tem_pnts_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_tem_pnts_pass.cpp -------------------------------------------------------------------------------- /test/no_mem_templ_frnds_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_templ_frnds_fail.cpp -------------------------------------------------------------------------------- /test/no_mem_templ_frnds_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_templ_frnds_pass.cpp -------------------------------------------------------------------------------- /test/no_mem_templates_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_templates_fail.cpp -------------------------------------------------------------------------------- /test/no_mem_templates_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_mem_templates_pass.cpp -------------------------------------------------------------------------------- /test/no_nested_friendship_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_nested_friendship_fail.cpp -------------------------------------------------------------------------------- /test/no_nested_friendship_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_nested_friendship_pass.cpp -------------------------------------------------------------------------------- /test/no_noexcept_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_noexcept_fail.cpp -------------------------------------------------------------------------------- /test/no_noexcept_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_noexcept_pass.cpp -------------------------------------------------------------------------------- /test/no_nullptr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_nullptr_fail.cpp -------------------------------------------------------------------------------- /test/no_nullptr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_nullptr_pass.cpp -------------------------------------------------------------------------------- /test/no_ops_in_namespace_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ops_in_namespace_fail.cpp -------------------------------------------------------------------------------- /test/no_ops_in_namespace_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ops_in_namespace_pass.cpp -------------------------------------------------------------------------------- /test/no_part_spec_def_args_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_part_spec_def_args_fail.cpp -------------------------------------------------------------------------------- /test/no_part_spec_def_args_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_part_spec_def_args_pass.cpp -------------------------------------------------------------------------------- /test/no_partial_spec_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_partial_spec_fail.cpp -------------------------------------------------------------------------------- /test/no_partial_spec_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_partial_spec_pass.cpp -------------------------------------------------------------------------------- /test/no_priv_aggregate_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_priv_aggregate_fail.cpp -------------------------------------------------------------------------------- /test/no_priv_aggregate_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_priv_aggregate_pass.cpp -------------------------------------------------------------------------------- /test/no_ptr_mem_const_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ptr_mem_const_fail.cpp -------------------------------------------------------------------------------- /test/no_ptr_mem_const_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ptr_mem_const_pass.cpp -------------------------------------------------------------------------------- /test/no_range_based_for_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_range_based_for_fail.cpp -------------------------------------------------------------------------------- /test/no_range_based_for_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_range_based_for_pass.cpp -------------------------------------------------------------------------------- /test/no_raw_literals_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_raw_literals_fail.cpp -------------------------------------------------------------------------------- /test/no_raw_literals_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_raw_literals_pass.cpp -------------------------------------------------------------------------------- /test/no_restrict_references_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_restrict_references_fail.cpp -------------------------------------------------------------------------------- /test/no_restrict_references_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_restrict_references_pass.cpp -------------------------------------------------------------------------------- /test/no_ret_det_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ret_det_fail.cpp -------------------------------------------------------------------------------- /test/no_ret_det_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_ret_det_pass.cpp -------------------------------------------------------------------------------- /test/no_rtti_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_rtti_fail.cpp -------------------------------------------------------------------------------- /test/no_rtti_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_rtti_pass.cpp -------------------------------------------------------------------------------- /test/no_rvalue_references_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_rvalue_references_fail.cpp -------------------------------------------------------------------------------- /test/no_rvalue_references_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_rvalue_references_pass.cpp -------------------------------------------------------------------------------- /test/no_scoped_enums_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_scoped_enums_fail.cpp -------------------------------------------------------------------------------- /test/no_scoped_enums_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_scoped_enums_pass.cpp -------------------------------------------------------------------------------- /test/no_sfinae_expr_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sfinae_expr_fail.cpp -------------------------------------------------------------------------------- /test/no_sfinae_expr_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sfinae_expr_pass.cpp -------------------------------------------------------------------------------- /test/no_sfinae_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sfinae_fail.cpp -------------------------------------------------------------------------------- /test/no_sfinae_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sfinae_pass.cpp -------------------------------------------------------------------------------- /test/no_sstream_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sstream_fail.cpp -------------------------------------------------------------------------------- /test/no_sstream_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_sstream_pass.cpp -------------------------------------------------------------------------------- /test/no_static_assert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_static_assert_fail.cpp -------------------------------------------------------------------------------- /test/no_static_assert_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_static_assert_pass.cpp -------------------------------------------------------------------------------- /test/no_std_allocator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_allocator_fail.cpp -------------------------------------------------------------------------------- /test/no_std_allocator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_allocator_pass.cpp -------------------------------------------------------------------------------- /test/no_std_distance_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_distance_fail.cpp -------------------------------------------------------------------------------- /test/no_std_distance_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_distance_pass.cpp -------------------------------------------------------------------------------- /test/no_std_iter_traits_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_iter_traits_fail.cpp -------------------------------------------------------------------------------- /test/no_std_iter_traits_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_iter_traits_pass.cpp -------------------------------------------------------------------------------- /test/no_std_iterator_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_iterator_fail.cpp -------------------------------------------------------------------------------- /test/no_std_iterator_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_iterator_pass.cpp -------------------------------------------------------------------------------- /test/no_std_locale_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_locale_fail.cpp -------------------------------------------------------------------------------- /test/no_std_locale_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_locale_pass.cpp -------------------------------------------------------------------------------- /test/no_std_messages_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_messages_fail.cpp -------------------------------------------------------------------------------- /test/no_std_messages_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_messages_pass.cpp -------------------------------------------------------------------------------- /test/no_std_min_max_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_min_max_fail.cpp -------------------------------------------------------------------------------- /test/no_std_min_max_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_min_max_pass.cpp -------------------------------------------------------------------------------- /test/no_std_oi_assign_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_oi_assign_fail.cpp -------------------------------------------------------------------------------- /test/no_std_oi_assign_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_oi_assign_pass.cpp -------------------------------------------------------------------------------- /test/no_std_typeinfo_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_typeinfo_fail.cpp -------------------------------------------------------------------------------- /test/no_std_typeinfo_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_typeinfo_pass.cpp -------------------------------------------------------------------------------- /test/no_std_use_facet_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_use_facet_fail.cpp -------------------------------------------------------------------------------- /test/no_std_use_facet_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_use_facet_pass.cpp -------------------------------------------------------------------------------- /test/no_std_wstreambuf_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_wstreambuf_fail.cpp -------------------------------------------------------------------------------- /test/no_std_wstreambuf_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_wstreambuf_pass.cpp -------------------------------------------------------------------------------- /test/no_std_wstring_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_wstring_fail.cpp -------------------------------------------------------------------------------- /test/no_std_wstring_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_std_wstring_pass.cpp -------------------------------------------------------------------------------- /test/no_stdc_namespace_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_stdc_namespace_fail.cpp -------------------------------------------------------------------------------- /test/no_stdc_namespace_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_stdc_namespace_pass.cpp -------------------------------------------------------------------------------- /test/no_swprintf_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_swprintf_fail.cpp -------------------------------------------------------------------------------- /test/no_swprintf_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_swprintf_pass.cpp -------------------------------------------------------------------------------- /test/no_tem_local_classes_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_tem_local_classes_fail.cpp -------------------------------------------------------------------------------- /test/no_tem_local_classes_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_tem_local_classes_pass.cpp -------------------------------------------------------------------------------- /test/no_template_aliases_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_aliases_fail.cpp -------------------------------------------------------------------------------- /test/no_template_aliases_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_aliases_pass.cpp -------------------------------------------------------------------------------- /test/no_template_streams_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_streams_fail.cpp -------------------------------------------------------------------------------- /test/no_template_streams_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_streams_pass.cpp -------------------------------------------------------------------------------- /test/no_template_template_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_template_fail.cpp -------------------------------------------------------------------------------- /test/no_template_template_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_template_template_pass.cpp -------------------------------------------------------------------------------- /test/no_two_phase_lookup_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_two_phase_lookup_fail.cpp -------------------------------------------------------------------------------- /test/no_two_phase_lookup_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_two_phase_lookup_pass.cpp -------------------------------------------------------------------------------- /test/no_typeid_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_typeid_fail.cpp -------------------------------------------------------------------------------- /test/no_typeid_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_typeid_pass.cpp -------------------------------------------------------------------------------- /test/no_typename_with_ctor_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_typename_with_ctor_fail.cpp -------------------------------------------------------------------------------- /test/no_typename_with_ctor_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_typename_with_ctor_pass.cpp -------------------------------------------------------------------------------- /test/no_unicode_literals_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_unicode_literals_fail.cpp -------------------------------------------------------------------------------- /test/no_unicode_literals_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_unicode_literals_pass.cpp -------------------------------------------------------------------------------- /test/no_unified_init_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_unified_init_fail.cpp -------------------------------------------------------------------------------- /test/no_unified_init_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_unified_init_pass.cpp -------------------------------------------------------------------------------- /test/no_using_breaks_adl_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_breaks_adl_fail.cpp -------------------------------------------------------------------------------- /test/no_using_breaks_adl_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_breaks_adl_pass.cpp -------------------------------------------------------------------------------- /test/no_using_decl_overld_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_decl_overld_fail.cpp -------------------------------------------------------------------------------- /test/no_using_decl_overld_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_decl_overld_pass.cpp -------------------------------------------------------------------------------- /test/no_using_template_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_template_fail.cpp -------------------------------------------------------------------------------- /test/no_using_template_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_using_template_pass.cpp -------------------------------------------------------------------------------- /test/no_variadic_macros_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_variadic_macros_fail.cpp -------------------------------------------------------------------------------- /test/no_variadic_macros_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_variadic_macros_pass.cpp -------------------------------------------------------------------------------- /test/no_variadic_templates_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_variadic_templates_fail.cpp -------------------------------------------------------------------------------- /test/no_variadic_templates_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_variadic_templates_pass.cpp -------------------------------------------------------------------------------- /test/no_void_returns_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_void_returns_fail.cpp -------------------------------------------------------------------------------- /test/no_void_returns_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_void_returns_pass.cpp -------------------------------------------------------------------------------- /test/no_wchar_t_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_wchar_t_fail.cpp -------------------------------------------------------------------------------- /test/no_wchar_t_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/no_wchar_t_pass.cpp -------------------------------------------------------------------------------- /test/pragma_message_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/pragma_message_test.cpp -------------------------------------------------------------------------------- /test/symbol_deprecated_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/symbol_deprecated_test.cpp -------------------------------------------------------------------------------- /test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/test.hpp -------------------------------------------------------------------------------- /test/threads/test_thread_fail1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/threads/test_thread_fail1.cpp -------------------------------------------------------------------------------- /test/threads/test_thread_fail2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/test/threads/test_thread_fail2.cpp -------------------------------------------------------------------------------- /tools/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/tools/Jamfile.v2 -------------------------------------------------------------------------------- /tools/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/tools/configure.in -------------------------------------------------------------------------------- /tools/generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/config/HEAD/tools/generate.cpp --------------------------------------------------------------------------------