Added BOOST_NO_IS_ABSTRACT.

[SVN r26422]
This commit is contained in:
John Maddock
2004-12-04 11:36:36 +00:00
parent f6b977b761
commit 3423ec4c52
177 changed files with 2056 additions and 2486 deletions

View File

@@ -557,6 +557,14 @@ f(&amp;bar); // should choose #2.</pre>
whether it is appropriate to explicitly specialize a template on wchar_t if whether it is appropriate to explicitly specialize a template on wchar_t if
there is already a specialization for other integer types.</td> there is already a specialization for other integer types.</td>
</tr> </tr>
<TR>
<TD vAlign="top" width="51%">BOOST_NO_IS_ABSTRACT</TD>
<TD vAlign="top" width="16%">Compiler</TD>
<TD vAlign="top" width="33%">The C++ compiler does not support SFINAE with
abstract types, this is covered by <A href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">
Core Language DR337</A>, but is not part of the current standard.&nbsp;
Fortunately most compilers that support SFINAE also support this DR.</TD>
</TR>
<tr> <tr>
<td valign="top" width="51%">BOOST_NO_LIMITS</td> <td valign="top" width="51%">BOOST_NO_LIMITS</td>
<td valign="top" width="16%">Standard library</td> <td valign="top" width="16%">Standard library</td>

4
configure vendored
View File

@@ -2552,8 +2552,8 @@ cat > user.hpp << EOF
// define this to disable all config options, // define this to disable all config options,
// excluding the user config. Use if your // excluding the user config. Use if your
// setup is fully ISO compliant, and has no // setup is fully ISO complient, and has no
// useful extensions, or for autoconf generated // useful extentions, or for autoconf generated
// setups: // setups:
#ifndef BOOST_NO_CONFIG #ifndef BOOST_NO_CONFIG
# define BOOST_NO_CONFIG # define BOOST_NO_CONFIG

View File

@@ -54,6 +54,7 @@
// without it, this needs more investigation: // without it, this needs more investigation:
# define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS # define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
# define BOOST_NO_IS_ABSTRACT
# ifdef NDEBUG # ifdef NDEBUG
// fix broken <cstring> so that Boost.test works: // fix broken <cstring> so that Boost.test works:
# include <cstring> # include <cstring>

View File

@@ -13,11 +13,12 @@
// GNU C++ compiler setup: // GNU C++ compiler setup:
# if __GNUC__ == 2 && __GNUC_MINOR__ == 91 #if __GNUC__ < 3
# if __GNUC_MINOR__ == 91
// egcs 1.1 won't parse shared_ptr.hpp without this: // egcs 1.1 won't parse shared_ptr.hpp without this:
# define BOOST_NO_AUTO_PTR # define BOOST_NO_AUTO_PTR
# endif # endif
# if __GNUC__ == 2 && __GNUC_MINOR__ < 95 # if __GNUC_MINOR__ < 95
// //
// Prior to gcc 2.95 member templates only partly // Prior to gcc 2.95 member templates only partly
// work - define BOOST_MSVC6_MEMBER_TEMPLATES // work - define BOOST_MSVC6_MEMBER_TEMPLATES
@@ -29,30 +30,35 @@
# endif # endif
# endif # endif
# if __GNUC__ == 2 && __GNUC_MINOR__ < 96 # if __GNUC_MINOR__ < 96
# define BOOST_NO_SFINAE # define BOOST_NO_SFINAE
# endif # endif
# if __GNUC__ == 2 && __GNUC_MINOR__ <= 97 # if __GNUC_MINOR__ <= 97
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
# define BOOST_NO_OPERATORS_IN_NAMESPACE # define BOOST_NO_OPERATORS_IN_NAMESPACE
# endif # endif
# if __GNUC__ < 3 # define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
# define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL #elif __GNUC__ == 3
# endif //
// gcc-3.x problems:
//
// Bug specific to gcc 3.1 and 3.2:
//
# if ((__GNUC_MINOR__ == 1) || (__GNUC_MINOR__ == 2))
# define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
# endif
# if __GNUC_MINOR__ < 4
# define BOOST_NO_IS_ABSTRACT
# endif
#endif
#ifndef __EXCEPTIONS #ifndef __EXCEPTIONS
# define BOOST_NO_EXCEPTIONS # define BOOST_NO_EXCEPTIONS
#endif #endif
//
// Bug specific to gcc 3.1 and 3.2:
//
#if (__GNUC__ == 3) && ((__GNUC_MINOR__ == 1) || (__GNUC_MINOR__ == 2))
# define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#endif
// //
// Threading support: Turn this on unconditionally here (except for // Threading support: Turn this on unconditionally here (except for
@@ -84,8 +90,8 @@
# error "Compiler not configured - please reconfigure" # error "Compiler not configured - please reconfigure"
#endif #endif
// //
// last known and checked version is 3.4: // last known and checked version is 4.0 (Pre-release):
#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 4)) #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 0))
# if defined(BOOST_ASSERT_CONFIG) # if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results" # error "Unknown compiler version - please run the configure tests and report the results"
# else # else

View File

@@ -55,6 +55,7 @@
# define BOOST_NO_TEMPLATE_TEMPLATES # define BOOST_NO_TEMPLATE_TEMPLATES
# define BOOST_NO_SFINAE # define BOOST_NO_SFINAE
# define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS # define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
# define BOOST_NO_IS_ABSTRACT
# if (_MSC_VER > 1200) # if (_MSC_VER > 1200)
# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS # define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
# endif # endif

View File

@@ -1,8 +1,8 @@
# #
# Regression test Jamfile for boost configuration setup. # Regression test Jamfile for boost configuration setup.
# *** DO NOT EDIT THIS FILE BY HAND *** # *** DO NOT EDIT THIS FILE BY HAND ***
# This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, # This file was automatically generated on Sat Dec 04 10:44:19 2004
# by libs/config/tools/generate # by libs/config/tools/generate.cpp
# Copyright John Maddock. # Copyright John Maddock.
# #
# If you need to alter build preferences then set them in # If you need to alter build preferences then set them in
@@ -17,168 +17,6 @@ run config_test.cpp <template>config_options ;
run limits_test.cpp <template>config_test_options ; run limits_test.cpp <template>config_test_options ;
run abi/abi_test.cpp abi/main.cpp <template>config_options ; run abi/abi_test.cpp abi/main.cpp <template>config_options ;
test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
[ run no_arg_dep_lookup_pass.cpp <template>config_options ]
[ compile-fail no_arg_dep_lookup_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" :
[ run no_array_type_spec_pass.cpp <template>config_options ]
[ compile-fail no_array_type_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_AUTO_PTR" :
[ run no_auto_ptr_pass.cpp <template>config_options ]
[ compile-fail no_auto_ptr_fail.cpp <template>config_options ] ;
test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" :
[ run no_bcb_partial_spec_pass.cpp <template>config_options ]
[ compile-fail no_bcb_partial_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CTYPE_FUNCTIONS" :
[ run no_ctype_functions_pass.cpp <template>config_options ]
[ compile-fail no_ctype_functions_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CV_SPECIALIZATIONS" :
[ run no_cv_spec_pass.cpp <template>config_options ]
[ compile-fail no_cv_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" :
[ run no_cv_void_spec_pass.cpp <template>config_options ]
[ compile-fail no_cv_void_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CWCHAR" :
[ run no_cwchar_pass.cpp <template>config_options ]
[ compile-fail no_cwchar_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CWCTYPE" :
[ run no_cwctype_pass.cpp <template>config_options ]
[ compile-fail no_cwctype_fail.cpp <template>config_options ] ;
test-suite "BOOST_DEDUCED_TYPENAME" :
[ run no_ded_typename_pass.cpp <template>config_options ]
[ compile-fail no_ded_typename_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" :
[ run no_dep_nested_class_pass.cpp <template>config_options ]
[ compile-fail no_dep_nested_class_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" :
[ run no_dep_val_param_pass.cpp <template>config_options ]
[ compile-fail no_dep_val_param_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" :
[ run no_excep_std_pass.cpp <template>config_options ]
[ compile-fail no_excep_std_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXCEPTIONS" :
[ run no_exceptions_pass.cpp <template>config_options ]
[ compile-fail no_exceptions_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" :
[ run no_exp_func_tem_arg_pass.cpp <template>config_options ]
[ compile-fail no_exp_func_tem_arg_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" :
[ run no_func_tmp_order_pass.cpp <template>config_options ]
[ compile-fail no_func_tmp_order_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" :
[ run no_i64_limits_pass.cpp <template>config_options ]
[ compile-fail no_i64_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" :
[ run no_inline_memb_init_pass.cpp <template>config_options ]
[ compile-fail no_inline_memb_init_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INTEGRAL_INT64_T" :
[ run no_integral_int64_t_pass.cpp <template>config_options ]
[ compile-fail no_integral_int64_t_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" :
[ run no_iter_construct_pass.cpp <template>config_options ]
[ compile-fail no_iter_construct_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LIMITS" :
[ run no_limits_pass.cpp <template>config_options ]
[ compile-fail no_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" :
[ run no_limits_const_exp_pass.cpp <template>config_options ]
[ compile-fail no_limits_const_exp_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" :
[ run no_ll_limits_pass.cpp <template>config_options ]
[ compile-fail no_ll_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" :
[ run no_mem_func_spec_pass.cpp <template>config_options ]
[ compile-fail no_mem_func_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" :
[ run no_mem_tem_keyword_pass.cpp <template>config_options ]
[ compile-fail no_mem_tem_keyword_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" :
[ run no_mem_tem_pnts_pass.cpp <template>config_options ]
[ compile-fail no_mem_tem_pnts_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" :
[ run no_mem_templ_frnds_pass.cpp <template>config_options ]
[ compile-fail no_mem_templ_frnds_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATES" :
[ run no_mem_templates_pass.cpp <template>config_options ]
[ compile-fail no_mem_templates_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" :
[ run no_ops_in_namespace_pass.cpp <template>config_options ]
[ compile-fail no_ops_in_namespace_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" :
[ run no_partial_spec_pass.cpp <template>config_options ]
[ compile-fail no_partial_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" :
[ run no_priv_aggregate_pass.cpp <template>config_options ]
[ compile-fail no_priv_aggregate_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" :
[ run no_ptr_mem_const_pass.cpp <template>config_options ]
[ compile-fail no_ptr_mem_const_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" :
[ run no_ret_det_pass.cpp <template>config_options ]
[ compile-fail no_ret_det_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_SFINAE" :
[ run no_sfinae_pass.cpp <template>config_options ]
[ compile-fail no_sfinae_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STRINGSTREAM" :
[ run no_sstream_pass.cpp <template>config_options ]
[ compile-fail no_sstream_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ALLOCATOR" :
[ run no_std_allocator_pass.cpp <template>config_options ]
[ compile-fail no_std_allocator_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_DISTANCE" :
[ run no_std_distance_pass.cpp <template>config_options ]
[ compile-fail no_std_distance_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ITERATOR_TRAITS" :
[ run no_std_iter_traits_pass.cpp <template>config_options ]
[ compile-fail no_std_iter_traits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ITERATOR" :
[ run no_std_iterator_pass.cpp <template>config_options ]
[ compile-fail no_std_iterator_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_LOCALE" :
[ run no_std_locale_pass.cpp <template>config_options ]
[ compile-fail no_std_locale_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_MESSAGES" :
[ run no_std_messages_pass.cpp <template>config_options ]
[ compile-fail no_std_messages_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_MIN_MAX" :
[ run no_std_min_max_pass.cpp <template>config_options ]
[ compile-fail no_std_min_max_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" :
[ run no_std_oi_assign_pass.cpp <template>config_options ]
[ compile-fail no_std_oi_assign_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_USE_FACET" :
[ run no_std_use_facet_pass.cpp <template>config_options ]
[ compile-fail no_std_use_facet_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_WSTREAMBUF" :
[ run no_std_wstreambuf_pass.cpp <template>config_options ]
[ compile-fail no_std_wstreambuf_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_WSTRING" :
[ run no_std_wstring_pass.cpp <template>config_options ]
[ compile-fail no_std_wstring_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STDC_NAMESPACE" :
[ run no_stdc_namespace_pass.cpp <template>config_options ]
[ compile-fail no_stdc_namespace_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_SWPRINTF" :
[ run no_swprintf_pass.cpp <template>config_options ]
[ compile-fail no_swprintf_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
[ run no_template_template_pass.cpp <template>config_options ]
[ compile-fail no_template_template_fail.cpp <template>config_options ] ;
test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
[ run no_using_breaks_adl_pass.cpp <template>config_options ]
[ compile-fail no_using_breaks_adl_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" :
[ run no_using_decl_overld_pass.cpp <template>config_options ]
[ compile-fail no_using_decl_overld_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_USING_TEMPLATE" :
[ run no_using_template_pass.cpp <template>config_options ]
[ compile-fail no_using_template_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_VOID_RETURNS" :
[ run no_void_returns_pass.cpp <template>config_options ]
[ compile-fail no_void_returns_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INTRINSIC_WCHAR_T" :
[ run no_wchar_t_pass.cpp <template>config_options ]
[ compile-fail no_wchar_t_fail.cpp <template>config_options ] ;
test-suite "BOOST_HAS_TWO_ARG_USE_FACET" : test-suite "BOOST_HAS_TWO_ARG_USE_FACET" :
[ run has_2arg_use_facet_pass.cpp <template>config_options ] [ run has_2arg_use_facet_pass.cpp <template>config_options ]
[ compile-fail has_2arg_use_facet_fail.cpp <template>config_options ] ; [ compile-fail has_2arg_use_facet_fail.cpp <template>config_options ] ;
@@ -221,6 +59,9 @@ test-suite "BOOST_HAS_NRVO" :
test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" : test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" :
[ run has_part_alloc_pass.cpp <template>config_options ] [ run has_part_alloc_pass.cpp <template>config_options ]
[ compile-fail has_part_alloc_fail.cpp <template>config_options ] ; [ compile-fail has_part_alloc_fail.cpp <template>config_options ] ;
test-suite "BOOST_HAS_PTHREADS" :
[ run has_pthreads_pass.cpp <template>config_options ]
[ compile-fail has_pthreads_fail.cpp <template>config_options ] ;
test-suite "BOOST_HAS_PTHREAD_DELAY_NP" : test-suite "BOOST_HAS_PTHREAD_DELAY_NP" :
[ run has_pthread_delay_np_pass.cpp <template>config_options ] [ run has_pthread_delay_np_pass.cpp <template>config_options ]
[ compile-fail has_pthread_delay_np_fail.cpp <template>config_options ] ; [ compile-fail has_pthread_delay_np_fail.cpp <template>config_options ] ;
@@ -230,9 +71,6 @@ test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" :
test-suite "BOOST_HAS_PTHREAD_YIELD" : test-suite "BOOST_HAS_PTHREAD_YIELD" :
[ run has_pthread_yield_pass.cpp <template>config_options ] [ run has_pthread_yield_pass.cpp <template>config_options ]
[ compile-fail has_pthread_yield_fail.cpp <template>config_options ] ; [ compile-fail has_pthread_yield_fail.cpp <template>config_options ] ;
test-suite "BOOST_HAS_PTHREADS" :
[ run has_pthreads_pass.cpp <template>config_options ]
[ compile-fail has_pthreads_fail.cpp <template>config_options ] ;
test-suite "BOOST_HAS_SCHED_YIELD" : test-suite "BOOST_HAS_SCHED_YIELD" :
[ run has_sched_yield_pass.cpp <template>config_options ] [ run has_sched_yield_pass.cpp <template>config_options ]
[ compile-fail has_sched_yield_fail.cpp <template>config_options ] ; [ compile-fail has_sched_yield_fail.cpp <template>config_options ] ;
@@ -263,3 +101,169 @@ test-suite "BOOST_MSVC_STD_ITERATOR" :
test-suite "BOOST_HAS_WINTHREADS" : test-suite "BOOST_HAS_WINTHREADS" :
[ run has_winthreads_pass.cpp <template>config_options ] [ run has_winthreads_pass.cpp <template>config_options ]
[ compile-fail has_winthreads_fail.cpp <template>config_options ] ; [ compile-fail has_winthreads_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
[ run no_arg_dep_lookup_pass.cpp <template>config_options ]
[ compile-fail no_arg_dep_lookup_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" :
[ run no_array_type_spec_pass.cpp <template>config_options ]
[ compile-fail no_array_type_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_AUTO_PTR" :
[ run no_auto_ptr_pass.cpp <template>config_options ]
[ compile-fail no_auto_ptr_fail.cpp <template>config_options ] ;
test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" :
[ run no_bcb_partial_spec_pass.cpp <template>config_options ]
[ compile-fail no_bcb_partial_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CTYPE_FUNCTIONS" :
[ run no_ctype_functions_pass.cpp <template>config_options ]
[ compile-fail no_ctype_functions_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CV_SPECIALIZATIONS" :
[ run no_cv_spec_pass.cpp <template>config_options ]
[ compile-fail no_cv_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" :
[ run no_cv_void_spec_pass.cpp <template>config_options ]
[ compile-fail no_cv_void_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CWCHAR" :
[ run no_cwchar_pass.cpp <template>config_options ]
[ compile-fail no_cwchar_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_CWCTYPE" :
[ run no_cwctype_pass.cpp <template>config_options ]
[ compile-fail no_cwctype_fail.cpp <template>config_options ] ;
test-suite "BOOST_DEDUCED_TYPENAME" :
[ run no_ded_typename_pass.cpp <template>config_options ]
[ compile-fail no_ded_typename_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" :
[ run no_dep_nested_class_pass.cpp <template>config_options ]
[ compile-fail no_dep_nested_class_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" :
[ run no_dep_val_param_pass.cpp <template>config_options ]
[ compile-fail no_dep_val_param_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXCEPTIONS" :
[ run no_exceptions_pass.cpp <template>config_options ]
[ compile-fail no_exceptions_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" :
[ run no_excep_std_pass.cpp <template>config_options ]
[ compile-fail no_excep_std_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" :
[ run no_exp_func_tem_arg_pass.cpp <template>config_options ]
[ compile-fail no_exp_func_tem_arg_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" :
[ run no_func_tmp_order_pass.cpp <template>config_options ]
[ compile-fail no_func_tmp_order_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" :
[ run no_i64_limits_pass.cpp <template>config_options ]
[ compile-fail no_i64_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" :
[ run no_inline_memb_init_pass.cpp <template>config_options ]
[ compile-fail no_inline_memb_init_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INTEGRAL_INT64_T" :
[ run no_integral_int64_t_pass.cpp <template>config_options ]
[ compile-fail no_integral_int64_t_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_IS_ABSTRACT" :
[ run no_is_abstract_pass.cpp <template>config_options ]
[ compile-fail no_is_abstract_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" :
[ run no_iter_construct_pass.cpp <template>config_options ]
[ compile-fail no_iter_construct_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LIMITS" :
[ run no_limits_pass.cpp <template>config_options ]
[ compile-fail no_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" :
[ run no_limits_const_exp_pass.cpp <template>config_options ]
[ compile-fail no_limits_const_exp_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" :
[ run no_ll_limits_pass.cpp <template>config_options ]
[ compile-fail no_ll_limits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" :
[ run no_mem_func_spec_pass.cpp <template>config_options ]
[ compile-fail no_mem_func_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATES" :
[ run no_mem_templates_pass.cpp <template>config_options ]
[ compile-fail no_mem_templates_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" :
[ run no_mem_templ_frnds_pass.cpp <template>config_options ]
[ compile-fail no_mem_templ_frnds_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" :
[ run no_mem_tem_keyword_pass.cpp <template>config_options ]
[ compile-fail no_mem_tem_keyword_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" :
[ run no_mem_tem_pnts_pass.cpp <template>config_options ]
[ compile-fail no_mem_tem_pnts_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" :
[ run no_ops_in_namespace_pass.cpp <template>config_options ]
[ compile-fail no_ops_in_namespace_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" :
[ run no_partial_spec_pass.cpp <template>config_options ]
[ compile-fail no_partial_spec_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" :
[ run no_priv_aggregate_pass.cpp <template>config_options ]
[ compile-fail no_priv_aggregate_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" :
[ run no_ptr_mem_const_pass.cpp <template>config_options ]
[ compile-fail no_ptr_mem_const_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" :
[ run no_ret_det_pass.cpp <template>config_options ]
[ compile-fail no_ret_det_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_SFINAE" :
[ run no_sfinae_pass.cpp <template>config_options ]
[ compile-fail no_sfinae_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STRINGSTREAM" :
[ run no_sstream_pass.cpp <template>config_options ]
[ compile-fail no_sstream_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STDC_NAMESPACE" :
[ run no_stdc_namespace_pass.cpp <template>config_options ]
[ compile-fail no_stdc_namespace_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ALLOCATOR" :
[ run no_std_allocator_pass.cpp <template>config_options ]
[ compile-fail no_std_allocator_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_DISTANCE" :
[ run no_std_distance_pass.cpp <template>config_options ]
[ compile-fail no_std_distance_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ITERATOR" :
[ run no_std_iterator_pass.cpp <template>config_options ]
[ compile-fail no_std_iterator_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_ITERATOR_TRAITS" :
[ run no_std_iter_traits_pass.cpp <template>config_options ]
[ compile-fail no_std_iter_traits_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_LOCALE" :
[ run no_std_locale_pass.cpp <template>config_options ]
[ compile-fail no_std_locale_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_MESSAGES" :
[ run no_std_messages_pass.cpp <template>config_options ]
[ compile-fail no_std_messages_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_MIN_MAX" :
[ run no_std_min_max_pass.cpp <template>config_options ]
[ compile-fail no_std_min_max_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" :
[ run no_std_oi_assign_pass.cpp <template>config_options ]
[ compile-fail no_std_oi_assign_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_USE_FACET" :
[ run no_std_use_facet_pass.cpp <template>config_options ]
[ compile-fail no_std_use_facet_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_WSTREAMBUF" :
[ run no_std_wstreambuf_pass.cpp <template>config_options ]
[ compile-fail no_std_wstreambuf_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_STD_WSTRING" :
[ run no_std_wstring_pass.cpp <template>config_options ]
[ compile-fail no_std_wstring_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_SWPRINTF" :
[ run no_swprintf_pass.cpp <template>config_options ]
[ compile-fail no_swprintf_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
[ run no_template_template_pass.cpp <template>config_options ]
[ compile-fail no_template_template_fail.cpp <template>config_options ] ;
test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
[ run no_using_breaks_adl_pass.cpp <template>config_options ]
[ compile-fail no_using_breaks_adl_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" :
[ run no_using_decl_overld_pass.cpp <template>config_options ]
[ compile-fail no_using_decl_overld_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_USING_TEMPLATE" :
[ run no_using_template_pass.cpp <template>config_options ]
[ compile-fail no_using_template_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_VOID_RETURNS" :
[ run no_void_returns_pass.cpp <template>config_options ]
[ compile-fail no_void_returns_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_INTRINSIC_WCHAR_T" :
[ run no_wchar_t_pass.cpp <template>config_options ]
[ compile-fail no_wchar_t_fail.cpp <template>config_options ] ;

View File

@@ -0,0 +1,52 @@
// (C) Copyright John Maddock and Dave Abrahams 2002.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org/libs/config for most recent version.
// MACRO: BOOST_NO_IS_ABSTRACT
// TITLE: is_abstract implementation technique
// DESCRIPTION: Some compilers can't handle the code used for is_abstract even if they support SFINAE.
namespace boost_no_is_abstract{
template<class T>
struct is_abstract_test
{
// Deduction fails if T is void, function type,
// reference type (14.8.2/2)or an abstract class type
// according to review status issue #337
//
template<class U>
static double check_sig(U (*)[1]);
template<class U>
static char check_sig(...);
#ifdef __GNUC__
enum{ s1 = sizeof(is_abstract_imp<T>::template check_sig<T>(0))) };
#else
enum{ s1 = sizeof(check_sig<T>(0)) };
#endif
enum{ value = (s1 == sizeof(char)) };
};
struct non_abstract{};
struct abstract{ virtual void foo() = 0; };
int test()
{
return is_abstract_test<non_abstract>::value == is_abstract_test<abstract>::value;
}
}

View File

@@ -20,8 +20,8 @@ int test()
{ {
int i = 0; int i = 0;
int j = 2; int j = 2;
if(std::min(i,j) != 0) return -1; if((std::min)(i,j) != 0) return -1;
if(std::max(i,j) != 2) return -1; if((std::max)(i,j) != 2) return -1;
return 0; return 0;
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_TWO_ARG_USE_FACET // Test file for macro BOOST_HAS_TWO_ARG_USE_FACET
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_TWO_ARG_USE_FACET may be defined. // BOOST_HAS_TWO_ARG_USE_FACET should be defined.
// see boost_has_2arg_use_facet.ipp for more details // See file boost_has_2arg_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_two_arg_use_facet::test(); return boost_has_two_arg_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_TWO_ARG_USE_FACET // Test file for macro BOOST_HAS_TWO_ARG_USE_FACET
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_TWO_ARG_USE_FACET should not be defined. // BOOST_HAS_TWO_ARG_USE_FACET should not be defined.
// see boost_has_2arg_use_facet.ipp for more details // See file boost_has_2arg_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_two_arg_use_facet = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_two_arg_use_facet::test(); return boost_has_two_arg_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_BETHREADS // Test file for macro BOOST_HAS_BETHREADS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_BETHREADS may be defined. // BOOST_HAS_BETHREADS should be defined.
// see boost_has_bethreads.ipp for more details // See file boost_has_bethreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_bethreads::test(); return boost_has_bethreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_BETHREADS // Test file for macro BOOST_HAS_BETHREADS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_BETHREADS should not be defined. // BOOST_HAS_BETHREADS should not be defined.
// see boost_has_bethreads.ipp for more details // See file boost_has_bethreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_bethreads = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_bethreads::test(); return boost_has_bethreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_CLOCK_GETTIME // Test file for macro BOOST_HAS_CLOCK_GETTIME
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_CLOCK_GETTIME may be defined. // BOOST_HAS_CLOCK_GETTIME should be defined.
// see boost_has_clock_gettime.ipp for more details // See file boost_has_clock_gettime.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_clock_gettime::test(); return boost_has_clock_gettime::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_CLOCK_GETTIME // Test file for macro BOOST_HAS_CLOCK_GETTIME
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_CLOCK_GETTIME should not be defined. // BOOST_HAS_CLOCK_GETTIME should not be defined.
// see boost_has_clock_gettime.ipp for more details // See file boost_has_clock_gettime.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_clock_gettime = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_clock_gettime::test(); return boost_has_clock_gettime::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_DIRENT_H // Test file for macro BOOST_HAS_DIRENT_H
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_DIRENT_H may be defined. // BOOST_HAS_DIRENT_H should be defined.
// see boost_has_dirent_h.ipp for more details // See file boost_has_dirent_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_dirent_h::test(); return boost_has_dirent_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_DIRENT_H // Test file for macro BOOST_HAS_DIRENT_H
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_DIRENT_H should not be defined. // BOOST_HAS_DIRENT_H should not be defined.
// see boost_has_dirent_h.ipp for more details // See file boost_has_dirent_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_dirent_h = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_dirent_h::test(); return boost_has_dirent_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_FTIME // Test file for macro BOOST_HAS_FTIME
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_FTIME may be defined. // BOOST_HAS_FTIME should be defined.
// see boost_has_ftime.ipp for more details // See file boost_has_ftime.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ftime::test(); return boost_has_ftime::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_FTIME // Test file for macro BOOST_HAS_FTIME
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_FTIME should not be defined. // BOOST_HAS_FTIME should not be defined.
// see boost_has_ftime.ipp for more details // See file boost_has_ftime.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_ftime = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ftime::test(); return boost_has_ftime::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_GETTIMEOFDAY // Test file for macro BOOST_HAS_GETTIMEOFDAY
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_GETTIMEOFDAY may be defined. // BOOST_HAS_GETTIMEOFDAY should be defined.
// see boost_has_gettimeofday.ipp for more details // See file boost_has_gettimeofday.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_gettimeofday::test(); return boost_has_gettimeofday::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_GETTIMEOFDAY // Test file for macro BOOST_HAS_GETTIMEOFDAY
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_GETTIMEOFDAY should not be defined. // BOOST_HAS_GETTIMEOFDAY should not be defined.
// see boost_has_gettimeofday.ipp for more details // See file boost_has_gettimeofday.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_gettimeofday = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_gettimeofday::test(); return boost_has_gettimeofday::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_HASH // Test file for macro BOOST_HAS_HASH
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_HASH may be defined. // BOOST_HAS_HASH should be defined.
// see boost_has_hash.ipp for more details // See file boost_has_hash.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_hash::test(); return boost_has_hash::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:03:59 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_HASH // Test file for macro BOOST_HAS_HASH
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_HASH should not be defined. // BOOST_HAS_HASH should not be defined.
// see boost_has_hash.ipp for more details // See file boost_has_hash.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_hash = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_hash::test(); return boost_has_hash::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_LONG_LONG // Test file for macro BOOST_HAS_LONG_LONG
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_LONG_LONG may be defined. // BOOST_HAS_LONG_LONG should be defined.
// see boost_has_long_long.ipp for more details // See file boost_has_long_long.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_long_long::test(); return boost_has_long_long::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_LONG_LONG // Test file for macro BOOST_HAS_LONG_LONG
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_LONG_LONG should not be defined. // BOOST_HAS_LONG_LONG should not be defined.
// see boost_has_long_long.ipp for more details // See file boost_has_long_long.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_long_long = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_long_long::test(); return boost_has_long_long::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_MACRO_USE_FACET // Test file for macro BOOST_HAS_MACRO_USE_FACET
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_MACRO_USE_FACET may be defined. // BOOST_HAS_MACRO_USE_FACET should be defined.
// see boost_has_macro_use_facet.ipp for more details // See file boost_has_macro_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_macro_use_facet::test(); return boost_has_macro_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_MACRO_USE_FACET // Test file for macro BOOST_HAS_MACRO_USE_FACET
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_MACRO_USE_FACET should not be defined. // BOOST_HAS_MACRO_USE_FACET should not be defined.
// see boost_has_macro_use_facet.ipp for more details // See file boost_has_macro_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_macro_use_facet = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_macro_use_facet::test(); return boost_has_macro_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_MS_INT64 // Test file for macro BOOST_HAS_MS_INT64
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_MS_INT64 may be defined. // BOOST_HAS_MS_INT64 should be defined.
// see boost_has_ms_int64.ipp for more details // See file boost_has_ms_int64.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ms_int64::test(); return boost_has_ms_int64::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_MS_INT64 // Test file for macro BOOST_HAS_MS_INT64
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_MS_INT64 should not be defined. // BOOST_HAS_MS_INT64 should not be defined.
// see boost_has_ms_int64.ipp for more details // See file boost_has_ms_int64.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_ms_int64 = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ms_int64::test(); return boost_has_ms_int64::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_NANOSLEEP // Test file for macro BOOST_HAS_NANOSLEEP
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_NANOSLEEP may be defined. // BOOST_HAS_NANOSLEEP should be defined.
// see boost_has_nanosleep.ipp for more details // See file boost_has_nanosleep.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nanosleep::test(); return boost_has_nanosleep::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_NANOSLEEP // Test file for macro BOOST_HAS_NANOSLEEP
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_NANOSLEEP should not be defined. // BOOST_HAS_NANOSLEEP should not be defined.
// see boost_has_nanosleep.ipp for more details // See file boost_has_nanosleep.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_nanosleep = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nanosleep::test(); return boost_has_nanosleep::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_NL_TYPES_H // Test file for macro BOOST_HAS_NL_TYPES_H
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_NL_TYPES_H may be defined. // BOOST_HAS_NL_TYPES_H should be defined.
// see boost_has_nl_types_h.ipp for more details // See file boost_has_nl_types_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nl_types_h::test(); return boost_has_nl_types_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_NL_TYPES_H // Test file for macro BOOST_HAS_NL_TYPES_H
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_NL_TYPES_H should not be defined. // BOOST_HAS_NL_TYPES_H should not be defined.
// see boost_has_nl_types_h.ipp for more details // See file boost_has_nl_types_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_nl_types_h = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nl_types_h::test(); return boost_has_nl_types_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_NRVO // Test file for macro BOOST_HAS_NRVO
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_NRVO may be defined. // BOOST_HAS_NRVO should be defined.
// see boost_has_nrvo.ipp for more details // See file boost_has_nrvo.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nrvo.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nrvo::test(); return boost_has_nrvo::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_NRVO // Test file for macro BOOST_HAS_NRVO
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_NRVO should not be defined. // BOOST_HAS_NRVO should not be defined.
// see boost_has_nrvo.ipp for more details // See file boost_has_nrvo.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nrvo.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_nrvo = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nrvo::test(); return boost_has_nrvo::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_PARTIAL_STD_ALLOCATOR // Test file for macro BOOST_HAS_PARTIAL_STD_ALLOCATOR
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_PARTIAL_STD_ALLOCATOR may be defined. // BOOST_HAS_PARTIAL_STD_ALLOCATOR should be defined.
// see boost_has_part_alloc.ipp for more details // See file boost_has_part_alloc.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_partial_std_allocator::test(); return boost_has_partial_std_allocator::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_PARTIAL_STD_ALLOCATOR // Test file for macro BOOST_HAS_PARTIAL_STD_ALLOCATOR
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_PARTIAL_STD_ALLOCATOR should not be defined. // BOOST_HAS_PARTIAL_STD_ALLOCATOR should not be defined.
// see boost_has_part_alloc.ipp for more details // See file boost_has_part_alloc.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_partial_std_allocator = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_partial_std_allocator::test(); return boost_has_partial_std_allocator::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_PTHREAD_DELAY_NP // Test file for macro BOOST_HAS_PTHREAD_DELAY_NP
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_PTHREAD_DELAY_NP may be defined. // BOOST_HAS_PTHREAD_DELAY_NP should be defined.
// see boost_has_pthread_delay_np.ipp for more details // See file boost_has_pthread_delay_np.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_delay_np::test(); return boost_has_pthread_delay_np::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_PTHREAD_DELAY_NP // Test file for macro BOOST_HAS_PTHREAD_DELAY_NP
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_PTHREAD_DELAY_NP should not be defined. // BOOST_HAS_PTHREAD_DELAY_NP should not be defined.
// see boost_has_pthread_delay_np.ipp for more details // See file boost_has_pthread_delay_np.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_pthread_delay_np = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_delay_np::test(); return boost_has_pthread_delay_np::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE // Test file for macro BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE may be defined. // BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE should be defined.
// see boost_has_pthread_ma_st.ipp for more details // See file boost_has_pthread_ma_st.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_mutexattr_settype::test(); return boost_has_pthread_mutexattr_settype::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE // Test file for macro BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE should not be defined. // BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE should not be defined.
// see boost_has_pthread_ma_st.ipp for more details // See file boost_has_pthread_ma_st.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_pthread_mutexattr_settype = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_mutexattr_settype::test(); return boost_has_pthread_mutexattr_settype::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_PTHREAD_YIELD // Test file for macro BOOST_HAS_PTHREAD_YIELD
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_PTHREAD_YIELD may be defined. // BOOST_HAS_PTHREAD_YIELD should be defined.
// see boost_has_pthread_yield.ipp for more details // See file boost_has_pthread_yield.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_yield::test(); return boost_has_pthread_yield::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_PTHREAD_YIELD // Test file for macro BOOST_HAS_PTHREAD_YIELD
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_PTHREAD_YIELD should not be defined. // BOOST_HAS_PTHREAD_YIELD should not be defined.
// see boost_has_pthread_yield.ipp for more details // See file boost_has_pthread_yield.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_pthread_yield = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_yield::test(); return boost_has_pthread_yield::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_PTHREADS // Test file for macro BOOST_HAS_PTHREADS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_PTHREADS may be defined. // BOOST_HAS_PTHREADS should be defined.
// see boost_has_pthreads.ipp for more details // See file boost_has_pthreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthreads::test(); return boost_has_pthreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_PTHREADS // Test file for macro BOOST_HAS_PTHREADS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_PTHREADS should not be defined. // BOOST_HAS_PTHREADS should not be defined.
// see boost_has_pthreads.ipp for more details // See file boost_has_pthreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_pthreads = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthreads::test(); return boost_has_pthreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_SCHED_YIELD // Test file for macro BOOST_HAS_SCHED_YIELD
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_SCHED_YIELD may be defined. // BOOST_HAS_SCHED_YIELD should be defined.
// see boost_has_sched_yield.ipp for more details // See file boost_has_sched_yield.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sched_yield::test(); return boost_has_sched_yield::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_SCHED_YIELD // Test file for macro BOOST_HAS_SCHED_YIELD
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_SCHED_YIELD should not be defined. // BOOST_HAS_SCHED_YIELD should not be defined.
// see boost_has_sched_yield.ipp for more details // See file boost_has_sched_yield.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_sched_yield = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sched_yield::test(); return boost_has_sched_yield::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_SGI_TYPE_TRAITS // Test file for macro BOOST_HAS_SGI_TYPE_TRAITS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_SGI_TYPE_TRAITS may be defined. // BOOST_HAS_SGI_TYPE_TRAITS should be defined.
// see boost_has_sgi_type_traits.ipp for more details // See file boost_has_sgi_type_traits.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sgi_type_traits::test(); return boost_has_sgi_type_traits::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_SGI_TYPE_TRAITS // Test file for macro BOOST_HAS_SGI_TYPE_TRAITS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_SGI_TYPE_TRAITS should not be defined. // BOOST_HAS_SGI_TYPE_TRAITS should not be defined.
// see boost_has_sgi_type_traits.ipp for more details // See file boost_has_sgi_type_traits.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_sgi_type_traits = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sgi_type_traits::test(); return boost_has_sgi_type_traits::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_SIGACTION // Test file for macro BOOST_HAS_SIGACTION
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_SIGACTION may be defined. // BOOST_HAS_SIGACTION should be defined.
// see boost_has_sigaction.ipp for more details // See file boost_has_sigaction.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sigaction.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sigaction::test(); return boost_has_sigaction::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_SIGACTION // Test file for macro BOOST_HAS_SIGACTION
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_SIGACTION should not be defined. // BOOST_HAS_SIGACTION should not be defined.
// see boost_has_sigaction.ipp for more details // See file boost_has_sigaction.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sigaction.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_sigaction = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sigaction::test(); return boost_has_sigaction::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_SLIST // Test file for macro BOOST_HAS_SLIST
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_SLIST may be defined. // BOOST_HAS_SLIST should be defined.
// see boost_has_slist.ipp for more details // See file boost_has_slist.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_slist::test(); return boost_has_slist::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_SLIST // Test file for macro BOOST_HAS_SLIST
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_SLIST should not be defined. // BOOST_HAS_SLIST should not be defined.
// see boost_has_slist.ipp for more details // See file boost_has_slist.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_slist = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_slist::test(); return boost_has_slist::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_STDINT_H // Test file for macro BOOST_HAS_STDINT_H
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_STDINT_H may be defined. // BOOST_HAS_STDINT_H should be defined.
// see boost_has_stdint_h.ipp for more details // See file boost_has_stdint_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stdint_h::test(); return boost_has_stdint_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_STDINT_H // Test file for macro BOOST_HAS_STDINT_H
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_STDINT_H should not be defined. // BOOST_HAS_STDINT_H should not be defined.
// see boost_has_stdint_h.ipp for more details // See file boost_has_stdint_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_stdint_h = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stdint_h::test(); return boost_has_stdint_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_STLP_USE_FACET // Test file for macro BOOST_HAS_STLP_USE_FACET
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_STLP_USE_FACET may be defined. // BOOST_HAS_STLP_USE_FACET should be defined.
// see boost_has_stlp_use_facet.ipp for more details // See file boost_has_stlp_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stlp_use_facet::test(); return boost_has_stlp_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_STLP_USE_FACET // Test file for macro BOOST_HAS_STLP_USE_FACET
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_STLP_USE_FACET should not be defined. // BOOST_HAS_STLP_USE_FACET should not be defined.
// see boost_has_stlp_use_facet.ipp for more details // See file boost_has_stlp_use_facet.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_stlp_use_facet = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stlp_use_facet::test(); return boost_has_stlp_use_facet::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_UNISTD_H // Test file for macro BOOST_HAS_UNISTD_H
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_UNISTD_H may be defined. // BOOST_HAS_UNISTD_H should be defined.
// see boost_has_unistd_h.ipp for more details // See file boost_has_unistd_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_unistd_h::test(); return boost_has_unistd_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_UNISTD_H // Test file for macro BOOST_HAS_UNISTD_H
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_UNISTD_H should not be defined. // BOOST_HAS_UNISTD_H should not be defined.
// see boost_has_unistd_h.ipp for more details // See file boost_has_unistd_h.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_unistd_h = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_unistd_h::test(); return boost_has_unistd_h::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_MSVC6_MEMBER_TEMPLATES // Test file for macro BOOST_MSVC6_MEMBER_TEMPLATES
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_MSVC6_MEMBER_TEMPLATES may be defined. // BOOST_MSVC6_MEMBER_TEMPLATES should be defined.
// see boost_has_vc6_mem_templ.ipp for more details // See file boost_has_vc6_mem_templ.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc6_member_templates::test(); return boost_msvc6_member_templates::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_MSVC6_MEMBER_TEMPLATES // Test file for macro BOOST_MSVC6_MEMBER_TEMPLATES
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_MSVC6_MEMBER_TEMPLATES should not be defined. // BOOST_MSVC6_MEMBER_TEMPLATES should not be defined.
// see boost_has_vc6_mem_templ.ipp for more details // See file boost_has_vc6_mem_templ.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_msvc6_member_templates = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc6_member_templates::test(); return boost_msvc6_member_templates::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_MSVC_STD_ITERATOR // Test file for macro BOOST_MSVC_STD_ITERATOR
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_MSVC_STD_ITERATOR may be defined. // BOOST_MSVC_STD_ITERATOR should be defined.
// see boost_has_vc_iterator.ipp for more details // See file boost_has_vc_iterator.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc_std_iterator::test(); return boost_msvc_std_iterator::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_MSVC_STD_ITERATOR // Test file for macro BOOST_MSVC_STD_ITERATOR
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_MSVC_STD_ITERATOR should not be defined. // BOOST_MSVC_STD_ITERATOR should not be defined.
// see boost_has_vc_iterator.ipp for more details // See file boost_has_vc_iterator.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_msvc_std_iterator = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc_std_iterator::test(); return boost_msvc_std_iterator::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_HAS_WINTHREADS // Test file for macro BOOST_HAS_WINTHREADS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_HAS_WINTHREADS may be defined. // BOOST_HAS_WINTHREADS should be defined.
// see boost_has_winthreads.ipp for more details // See file boost_has_winthreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_winthreads::test(); return boost_has_winthreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -11,11 +10,7 @@
// Test file for macro BOOST_HAS_WINTHREADS // Test file for macro BOOST_HAS_WINTHREADS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_HAS_WINTHREADS should not be defined. // BOOST_HAS_WINTHREADS should not be defined.
// see boost_has_winthreads.ipp for more details // See file boost_has_winthreads.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_has_winthreads = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_winthreads::test(); return boost_has_winthreads::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP // Test file for macro BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP need not be defined. // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP should not be defined.
// see boost_no_arg_dep_lookup.ipp for more details // See file boost_no_arg_dep_lookup.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_argument_dependent_lookup::test(); return boost_no_argument_dependent_lookup::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP // Test file for macro BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP needs to be defined. // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP should be defined.
// see boost_no_arg_dep_lookup.ipp for more details // See file boost_no_arg_dep_lookup.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_argument_dependent_lookup = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_argument_dependent_lookup::test(); return boost_no_argument_dependent_lookup::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS // Test file for macro BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS need not be defined. // BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS should not be defined.
// see boost_no_array_type_spec.ipp for more details // See file boost_no_array_type_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_array_type_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_array_type_specializations::test(); return boost_no_array_type_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS // Test file for macro BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS needs to be defined. // BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS should be defined.
// see boost_no_array_type_spec.ipp for more details // See file boost_no_array_type_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_array_type_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_array_type_specializations = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_array_type_specializations::test(); return boost_no_array_type_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_AUTO_PTR // Test file for macro BOOST_NO_AUTO_PTR
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_AUTO_PTR need not be defined. // BOOST_NO_AUTO_PTR should not be defined.
// see boost_no_auto_ptr.ipp for more details // See file boost_no_auto_ptr.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_auto_ptr::test(); return boost_no_auto_ptr::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:00 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_AUTO_PTR // Test file for macro BOOST_NO_AUTO_PTR
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_AUTO_PTR needs to be defined. // BOOST_NO_AUTO_PTR should be defined.
// see boost_no_auto_ptr.ipp for more details // See file boost_no_auto_ptr.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_auto_ptr = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_auto_ptr::test(); return boost_no_auto_ptr::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_BCB_PARTIAL_SPECIALIZATION_BUG // Test file for macro BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_BCB_PARTIAL_SPECIALIZATION_BUG need not be defined. // BOOST_BCB_PARTIAL_SPECIALIZATION_BUG should not be defined.
// see boost_no_bcb_partial_spec.ipp for more details // See file boost_no_bcb_partial_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_bcb_partial_specialization_bug::test(); return boost_bcb_partial_specialization_bug::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_BCB_PARTIAL_SPECIALIZATION_BUG // Test file for macro BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_BCB_PARTIAL_SPECIALIZATION_BUG needs to be defined. // BOOST_BCB_PARTIAL_SPECIALIZATION_BUG should be defined.
// see boost_no_bcb_partial_spec.ipp for more details // See file boost_no_bcb_partial_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_bcb_partial_specialization_bug = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_bcb_partial_specialization_bug::test(); return boost_bcb_partial_specialization_bug::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CTYPE_FUNCTIONS // Test file for macro BOOST_NO_CTYPE_FUNCTIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_CTYPE_FUNCTIONS need not be defined. // BOOST_NO_CTYPE_FUNCTIONS should not be defined.
// see boost_no_ctype_functions.ipp for more details // See file boost_no_ctype_functions.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ctype_functions::test(); return boost_no_ctype_functions::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CTYPE_FUNCTIONS // Test file for macro BOOST_NO_CTYPE_FUNCTIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_CTYPE_FUNCTIONS needs to be defined. // BOOST_NO_CTYPE_FUNCTIONS should be defined.
// see boost_no_ctype_functions.ipp for more details // See file boost_no_ctype_functions.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_ctype_functions = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ctype_functions::test(); return boost_no_ctype_functions::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CV_SPECIALIZATIONS // Test file for macro BOOST_NO_CV_SPECIALIZATIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_CV_SPECIALIZATIONS need not be defined. // BOOST_NO_CV_SPECIALIZATIONS should not be defined.
// see boost_no_cv_spec.ipp for more details // See file boost_no_cv_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_specializations::test(); return boost_no_cv_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CV_SPECIALIZATIONS // Test file for macro BOOST_NO_CV_SPECIALIZATIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_CV_SPECIALIZATIONS needs to be defined. // BOOST_NO_CV_SPECIALIZATIONS should be defined.
// see boost_no_cv_spec.ipp for more details // See file boost_no_cv_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_cv_specializations = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_specializations::test(); return boost_no_cv_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CV_VOID_SPECIALIZATIONS // Test file for macro BOOST_NO_CV_VOID_SPECIALIZATIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_CV_VOID_SPECIALIZATIONS need not be defined. // BOOST_NO_CV_VOID_SPECIALIZATIONS should not be defined.
// see boost_no_cv_void_spec.ipp for more details // See file boost_no_cv_void_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_void_specializations::test(); return boost_no_cv_void_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CV_VOID_SPECIALIZATIONS // Test file for macro BOOST_NO_CV_VOID_SPECIALIZATIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_CV_VOID_SPECIALIZATIONS needs to be defined. // BOOST_NO_CV_VOID_SPECIALIZATIONS should be defined.
// see boost_no_cv_void_spec.ipp for more details // See file boost_no_cv_void_spec.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_cv_void_specializations = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_void_specializations::test(); return boost_no_cv_void_specializations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CWCHAR // Test file for macro BOOST_NO_CWCHAR
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_CWCHAR need not be defined. // BOOST_NO_CWCHAR should not be defined.
// see boost_no_cwchar.ipp for more details // See file boost_no_cwchar.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwchar::test(); return boost_no_cwchar::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CWCHAR // Test file for macro BOOST_NO_CWCHAR
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_CWCHAR needs to be defined. // BOOST_NO_CWCHAR should be defined.
// see boost_no_cwchar.ipp for more details // See file boost_no_cwchar.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_cwchar = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwchar::test(); return boost_no_cwchar::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CWCTYPE // Test file for macro BOOST_NO_CWCTYPE
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_CWCTYPE need not be defined. // BOOST_NO_CWCTYPE should not be defined.
// see boost_no_cwctype.ipp for more details // See file boost_no_cwctype.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwctype::test(); return boost_no_cwctype::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_CWCTYPE // Test file for macro BOOST_NO_CWCTYPE
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_CWCTYPE needs to be defined. // BOOST_NO_CWCTYPE should be defined.
// see boost_no_cwctype.ipp for more details // See file boost_no_cwctype.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_cwctype = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwctype::test(); return boost_no_cwctype::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_DEDUCED_TYPENAME // Test file for macro BOOST_DEDUCED_TYPENAME
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_DEDUCED_TYPENAME need not be defined. // BOOST_DEDUCED_TYPENAME should not be defined.
// see boost_no_ded_typename.ipp for more details // See file boost_no_ded_typename.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ded_typename.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_deduced_typename::test(); return boost_deduced_typename::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_DEDUCED_TYPENAME // Test file for macro BOOST_DEDUCED_TYPENAME
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_DEDUCED_TYPENAME needs to be defined. // BOOST_DEDUCED_TYPENAME should be defined.
// see boost_no_ded_typename.ipp for more details // See file boost_no_ded_typename.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ded_typename.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_deduced_typename = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_deduced_typename::test(); return boost_deduced_typename::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_DEPENDENT_NESTED_DERIVATIONS // Test file for macro BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_DEPENDENT_NESTED_DERIVATIONS need not be defined. // BOOST_NO_DEPENDENT_NESTED_DERIVATIONS should not be defined.
// see boost_no_dep_nested_class.ipp for more details // See file boost_no_dep_nested_class.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_nested_derivations::test(); return boost_no_dependent_nested_derivations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_DEPENDENT_NESTED_DERIVATIONS // Test file for macro BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_DEPENDENT_NESTED_DERIVATIONS needs to be defined. // BOOST_NO_DEPENDENT_NESTED_DERIVATIONS should be defined.
// see boost_no_dep_nested_class.ipp for more details // See file boost_no_dep_nested_class.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_dependent_nested_derivations = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_nested_derivations::test(); return boost_no_dependent_nested_derivations::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS // Test file for macro BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS need not be defined. // BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS should not be defined.
// see boost_no_dep_val_param.ipp for more details // See file boost_no_dep_val_param.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_types_in_template_value_parameters::test(); return boost_no_dependent_types_in_template_value_parameters::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS // Test file for macro BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS needs to be defined. // BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS should be defined.
// see boost_no_dep_val_param.ipp for more details // See file boost_no_dep_val_param.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_types_in_template_value_parameters::test(); return boost_no_dependent_types_in_template_value_parameters::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXCEPTION_STD_NAMESPACE // Test file for macro BOOST_NO_EXCEPTION_STD_NAMESPACE
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_EXCEPTION_STD_NAMESPACE need not be defined. // BOOST_NO_EXCEPTION_STD_NAMESPACE should not be defined.
// see boost_no_excep_std.ipp for more details // See file boost_no_excep_std.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exception_std_namespace::test(); return boost_no_exception_std_namespace::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXCEPTION_STD_NAMESPACE // Test file for macro BOOST_NO_EXCEPTION_STD_NAMESPACE
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_EXCEPTION_STD_NAMESPACE needs to be defined. // BOOST_NO_EXCEPTION_STD_NAMESPACE should be defined.
// see boost_no_excep_std.ipp for more details // See file boost_no_excep_std.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_exception_std_namespace = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exception_std_namespace::test(); return boost_no_exception_std_namespace::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXCEPTIONS // Test file for macro BOOST_NO_EXCEPTIONS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_EXCEPTIONS need not be defined. // BOOST_NO_EXCEPTIONS should not be defined.
// see boost_no_exceptions.ipp for more details // See file boost_no_exceptions.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exceptions::test(); return boost_no_exceptions::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXCEPTIONS // Test file for macro BOOST_NO_EXCEPTIONS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_EXCEPTIONS needs to be defined. // BOOST_NO_EXCEPTIONS should be defined.
// see boost_no_exceptions.ipp for more details // See file boost_no_exceptions.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_exceptions = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exceptions::test(); return boost_no_exceptions::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS // Test file for macro BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS need not be defined. // BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS should not be defined.
// see boost_no_exp_func_tem_arg.ipp for more details // See file boost_no_exp_func_tem_arg.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_explicit_function_template_arguments::test(); return boost_no_explicit_function_template_arguments::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS // Test file for macro BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS needs to be defined. // BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS should be defined.
// see boost_no_exp_func_tem_arg.ipp for more details // See file boost_no_exp_func_tem_arg.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_explicit_function_template_arguments = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_explicit_function_template_arguments::test(); return boost_no_explicit_function_template_arguments::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_FUNCTION_TEMPLATE_ORDERING // Test file for macro BOOST_NO_FUNCTION_TEMPLATE_ORDERING
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_FUNCTION_TEMPLATE_ORDERING need not be defined. // BOOST_NO_FUNCTION_TEMPLATE_ORDERING should not be defined.
// see boost_no_func_tmp_order.ipp for more details // See file boost_no_func_tmp_order.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_function_template_ordering::test(); return boost_no_function_template_ordering::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_FUNCTION_TEMPLATE_ORDERING // Test file for macro BOOST_NO_FUNCTION_TEMPLATE_ORDERING
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_FUNCTION_TEMPLATE_ORDERING needs to be defined. // BOOST_NO_FUNCTION_TEMPLATE_ORDERING should be defined.
// see boost_no_func_tmp_order.ipp for more details // See file boost_no_func_tmp_order.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_function_template_ordering = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_function_template_ordering::test(); return boost_no_function_template_ordering::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_MS_INT64_NUMERIC_LIMITS // Test file for macro BOOST_NO_MS_INT64_NUMERIC_LIMITS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_MS_INT64_NUMERIC_LIMITS need not be defined. // BOOST_NO_MS_INT64_NUMERIC_LIMITS should not be defined.
// see boost_no_i64_limits.ipp for more details // See file boost_no_i64_limits.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ms_int64_numeric_limits::test(); return boost_no_ms_int64_numeric_limits::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_MS_INT64_NUMERIC_LIMITS // Test file for macro BOOST_NO_MS_INT64_NUMERIC_LIMITS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_MS_INT64_NUMERIC_LIMITS needs to be defined. // BOOST_NO_MS_INT64_NUMERIC_LIMITS should be defined.
// see boost_no_i64_limits.ipp for more details // See file boost_no_i64_limits.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@ namespace boost_no_ms_int64_numeric_limits = empty_boost;
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ms_int64_numeric_limits::test(); return boost_no_ms_int64_numeric_limits::test();
} }

View File

@@ -1,6 +1,5 @@
// This file was automatically generated on Fri Dec 03 18:04:01 2004
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004, // by libs/config/tools/generate.cpp
// by libs/config/tools/generate
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
@@ -10,12 +9,8 @@
// Test file for macro BOOST_NO_INCLASS_MEMBER_INITIALIZATION // Test file for macro BOOST_NO_INCLASS_MEMBER_INITIALIZATION
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_INCLASS_MEMBER_INITIALIZATION need not be defined. // BOOST_NO_INCLASS_MEMBER_INITIALIZATION should not be defined.
// see boost_no_inline_memb_init.ipp for more details // See file boost_no_inline_memb_init.ipp for details
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_inline_memb_init.ipp on
// Sun Jul 25 11:47:49 GMTDT 2004
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -35,5 +30,5 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_inclass_member_initialization::test(); return boost_no_inclass_member_initialization::test();
} }

Some files were not shown because too many files have changed in this diff Show More