Updated config test system to use new .ipp file extensions.

All dependencies on Boost.Test have also been removed for the basic tests.


[SVN r23102]
This commit is contained in:
John Maddock
2004-06-15 11:37:57 +00:00
parent c7942674bc
commit 73034c7e9c
168 changed files with 1372 additions and 1037 deletions

19
configure vendored
View File

@@ -2169,9 +2169,9 @@ fi
# #
# enumerate test files and test each one: # enumerate test files and test each one:
# #
for file in $boost_base/libs/config/test/boost_no*.cxx; do for file in $boost_base/libs/config/test/boost_no*.ipp; do
basename=`echo $file | sed 's/.*boost_\(.*\)\.cxx/\1/'` basename=`echo $file | sed 's/.*boost_\(.*\)\.ipp/\1/'`
macroname=`cat $file | grep '^//[] []*MACRO:' | sed 's/.*MACRO:[] []*\([]_A-Z0-9[]*\).*/\1/'` macroname=`cat $file | grep '^//[] []*MACRO:' | sed 's/.*MACRO:[] []*\([]_A-Z0-9[]*\).*/\1/'`
title=`cat $file | grep '^//[] []*TITLE:' | sed 's/.*TITLE:[] []*\([]^ [].*\)/\1/'` title=`cat $file | grep '^//[] []*TITLE:' | sed 's/.*TITLE:[] []*\([]^ [].*\)/\1/'`
namespace=`echo $macroname | tr [:upper:] [:lower:]` namespace=`echo $macroname | tr [:upper:] [:lower:]`
@@ -2208,7 +2208,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include "test.hpp" #include "test.hpp"
#ifndef $macroname #ifndef $macroname
#include "boost_$basename.cxx" #include "boost_$basename.ipp"
#else #else
namespace ${namespace} = empty_boost; namespace ${namespace} = empty_boost;
#endif #endif
@@ -2267,7 +2267,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include "test.hpp" #include "test.hpp"
#ifdef $macroname #ifdef $macroname
#include "boost_$basename.cxx" #include "boost_$basename.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
@@ -2310,9 +2310,9 @@ done
# #
# enumerate optional test files and test each one: # enumerate optional test files and test each one:
# #
for file in $boost_base/libs/config/test/boost_has*.cxx; do for file in $boost_base/libs/config/test/boost_has*.ipp; do
basename=`echo $file | sed 's/.*boost_\(.*\)\.cxx/\1/'` basename=`echo $file | sed 's/.*boost_\(.*\)\.ipp/\1/'`
macroname=`cat $file | grep '^//[] []*MACRO:' | sed 's/.*MACRO:[] []*\([]_A-Z0-9[]*\).*/\1/'` macroname=`cat $file | grep '^//[] []*MACRO:' | sed 's/.*MACRO:[] []*\([]_A-Z0-9[]*\).*/\1/'`
title=`cat $file | grep '^//[] []*TITLE:' | sed 's/.*TITLE:[] []*\([]^ [].*\)/\1/'` title=`cat $file | grep '^//[] []*TITLE:' | sed 's/.*TITLE:[] []*\([]^ [].*\)/\1/'`
namespace=`echo $macroname | tr [:upper:] [:lower:]` namespace=`echo $macroname | tr [:upper:] [:lower:]`
@@ -2344,7 +2344,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include "test.hpp" #include "test.hpp"
#ifdef $macroname #ifdef $macroname
#include "boost_$basename.cxx" #include "boost_$basename.ipp"
#else #else
namespace ${namespace} = empty_boost; namespace ${namespace} = empty_boost;
#endif #endif
@@ -2400,7 +2400,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include "test.hpp" #include "test.hpp"
#ifndef $macroname #ifndef $macroname
#include "boost_$basename.cxx" #include "boost_$basename.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
@@ -2462,7 +2462,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <boost/config.hpp> #include <boost/config.hpp>
#include "test.hpp" #include "test.hpp"
#include "boost_$basename.cxx" #include "boost_$basename.ipp"
int main(){ return ${namespace}::test(); } int main(){ return ${namespace}::test(); }
@@ -3336,5 +3336,6 @@ fi

View File

@@ -1,7 +1,7 @@
# #
# 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 Sat Dec 13 12:29:38 GMTST 2003, # This file was automatically generated on Tue Jun 15 11:50:28 GMTST 2004,
# by libs/config/tools/generate # by libs/config/tools/generate
# #
# If you need to alter build preferences then set them in # If you need to alter build preferences then set them in
@@ -12,11 +12,9 @@ subproject libs/config/test ;
import testing ./options ; import testing ./options ;
run config_info.cpp <template>config_options ; run config_info.cpp <template>config_options ;
run config_test.cpp <lib>../../test/build/boost_test_exec_monitor <template>config_options ; 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 ;
compile-fail threads/test_thread_fail1.cpp ;
compile-fail threads/test_thread_fail2.cpp ;
test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" : test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
[ run no_arg_dep_lookup_pass.cpp <template>config_test_options ] [ run no_arg_dep_lookup_pass.cpp <template>config_test_options ]

View File

@@ -7,505 +7,830 @@
// Test file for config setup // Test file for config setup
// This file should compile, if it does not then // This file should compile, if it does not then
// one or more macros need to be defined. // one or more macros need to be defined.
// see boost_*.cxx for more details // see boost_*.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_*.cxx on // ../tools/generate from boost_*.ipp on
// Sat Dec 13 12:29:38 GMTST 2003 // Tue Jun 15 11:50:28 GMTST 2004
#include <boost/config.hpp> #include <boost/config.hpp>
#define BOOST_INCLUDE_MAIN #include <iostream>
#include <boost/test/test_tools.hpp>
#include "test.hpp" #include "test.hpp"
int error_count = 0;
#ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
#include "boost_no_arg_dep_lookup.cxx" #include "boost_no_arg_dep_lookup.ipp"
#else #else
namespace boost_no_argument_dependent_lookup = empty_boost; namespace boost_no_argument_dependent_lookup = empty_boost;
#endif #endif
#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS #ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
#include "boost_no_array_type_spec.cxx" #include "boost_no_array_type_spec.ipp"
#else #else
namespace boost_no_array_type_specializations = empty_boost; namespace boost_no_array_type_specializations = empty_boost;
#endif #endif
#ifndef BOOST_NO_AUTO_PTR #ifndef BOOST_NO_AUTO_PTR
#include "boost_no_auto_ptr.cxx" #include "boost_no_auto_ptr.ipp"
#else #else
namespace boost_no_auto_ptr = empty_boost; namespace boost_no_auto_ptr = empty_boost;
#endif #endif
#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
#include "boost_no_bcb_partial_spec.cxx" #include "boost_no_bcb_partial_spec.ipp"
#else #else
namespace boost_bcb_partial_specialization_bug = empty_boost; namespace boost_bcb_partial_specialization_bug = empty_boost;
#endif #endif
#ifndef BOOST_NO_CTYPE_FUNCTIONS #ifndef BOOST_NO_CTYPE_FUNCTIONS
#include "boost_no_ctype_functions.cxx" #include "boost_no_ctype_functions.ipp"
#else #else
namespace boost_no_ctype_functions = empty_boost; namespace boost_no_ctype_functions = empty_boost;
#endif #endif
#ifndef BOOST_NO_CV_SPECIALIZATIONS #ifndef BOOST_NO_CV_SPECIALIZATIONS
#include "boost_no_cv_spec.cxx" #include "boost_no_cv_spec.ipp"
#else #else
namespace boost_no_cv_specializations = empty_boost; namespace boost_no_cv_specializations = empty_boost;
#endif #endif
#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS #ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
#include "boost_no_cv_void_spec.cxx" #include "boost_no_cv_void_spec.ipp"
#else #else
namespace boost_no_cv_void_specializations = empty_boost; namespace boost_no_cv_void_specializations = empty_boost;
#endif #endif
#ifndef BOOST_NO_CWCHAR #ifndef BOOST_NO_CWCHAR
#include "boost_no_cwchar.cxx" #include "boost_no_cwchar.ipp"
#else #else
namespace boost_no_cwchar = empty_boost; namespace boost_no_cwchar = empty_boost;
#endif #endif
#ifndef BOOST_NO_CWCTYPE #ifndef BOOST_NO_CWCTYPE
#include "boost_no_cwctype.cxx" #include "boost_no_cwctype.ipp"
#else #else
namespace boost_no_cwctype = empty_boost; namespace boost_no_cwctype = empty_boost;
#endif #endif
#ifndef BOOST_DEDUCED_TYPENAME #ifndef BOOST_DEDUCED_TYPENAME
#include "boost_no_ded_typename.cxx" #include "boost_no_ded_typename.ipp"
#else #else
namespace boost_deduced_typename = empty_boost; namespace boost_deduced_typename = empty_boost;
#endif #endif
#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS #ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
#include "boost_no_dep_nested_class.cxx" #include "boost_no_dep_nested_class.ipp"
#else #else
namespace boost_no_dependent_nested_derivations = empty_boost; namespace boost_no_dependent_nested_derivations = empty_boost;
#endif #endif
#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS #ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
#include "boost_no_dep_val_param.cxx" #include "boost_no_dep_val_param.ipp"
#else #else
namespace boost_no_dependent_types_in_template_value_parameters = empty_boost; namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
#endif #endif
#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE #ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE
#include "boost_no_excep_std.cxx" #include "boost_no_excep_std.ipp"
#else #else
namespace boost_no_exception_std_namespace = empty_boost; namespace boost_no_exception_std_namespace = empty_boost;
#endif #endif
#ifndef BOOST_NO_EXCEPTIONS #ifndef BOOST_NO_EXCEPTIONS
#include "boost_no_exceptions.cxx" #include "boost_no_exceptions.ipp"
#else #else
namespace boost_no_exceptions = empty_boost; namespace boost_no_exceptions = empty_boost;
#endif #endif
#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#include "boost_no_exp_func_tem_arg.cxx" #include "boost_no_exp_func_tem_arg.ipp"
#else #else
namespace boost_no_explicit_function_template_arguments = empty_boost; namespace boost_no_explicit_function_template_arguments = empty_boost;
#endif #endif
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
#include "boost_no_func_tmp_order.cxx" #include "boost_no_func_tmp_order.ipp"
#else #else
namespace boost_no_function_template_ordering = empty_boost; namespace boost_no_function_template_ordering = empty_boost;
#endif #endif
#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS #ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS
#include "boost_no_i64_limits.cxx" #include "boost_no_i64_limits.ipp"
#else #else
namespace boost_no_ms_int64_numeric_limits = empty_boost; namespace boost_no_ms_int64_numeric_limits = empty_boost;
#endif #endif
#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
#include "boost_no_inline_memb_init.cxx" #include "boost_no_inline_memb_init.ipp"
#else #else
namespace boost_no_inclass_member_initialization = empty_boost; namespace boost_no_inclass_member_initialization = empty_boost;
#endif #endif
#ifndef BOOST_NO_INTEGRAL_INT64_T #ifndef BOOST_NO_INTEGRAL_INT64_T
#include "boost_no_integral_int64_t.cxx" #include "boost_no_integral_int64_t.ipp"
#else #else
namespace boost_no_integral_int64_t = empty_boost; namespace boost_no_integral_int64_t = empty_boost;
#endif #endif
#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS #ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
#include "boost_no_iter_construct.cxx" #include "boost_no_iter_construct.ipp"
#else #else
namespace boost_no_templated_iterator_constructors = empty_boost; namespace boost_no_templated_iterator_constructors = empty_boost;
#endif #endif
#ifndef BOOST_NO_LIMITS #ifndef BOOST_NO_LIMITS
#include "boost_no_limits.cxx" #include "boost_no_limits.ipp"
#else #else
namespace boost_no_limits = empty_boost; namespace boost_no_limits = empty_boost;
#endif #endif
#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS #ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
#include "boost_no_limits_const_exp.cxx" #include "boost_no_limits_const_exp.ipp"
#else #else
namespace boost_no_limits_compile_time_constants = empty_boost; namespace boost_no_limits_compile_time_constants = empty_boost;
#endif #endif
#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS #ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS
#include "boost_no_ll_limits.cxx" #include "boost_no_ll_limits.ipp"
#else #else
namespace boost_no_long_long_numeric_limits = empty_boost; namespace boost_no_long_long_numeric_limits = empty_boost;
#endif #endif
#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS #ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
#include "boost_no_mem_func_spec.cxx" #include "boost_no_mem_func_spec.ipp"
#else #else
namespace boost_no_member_function_specializations = empty_boost; namespace boost_no_member_function_specializations = empty_boost;
#endif #endif
#ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD #ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD
#include "boost_no_mem_tem_keyword.cxx" #include "boost_no_mem_tem_keyword.ipp"
#else #else
namespace boost_no_member_template_keyword = empty_boost; namespace boost_no_member_template_keyword = empty_boost;
#endif #endif
#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
#include "boost_no_mem_templ_frnds.cxx" #include "boost_no_mem_templ_frnds.ipp"
#else #else
namespace boost_no_member_template_friends = empty_boost; namespace boost_no_member_template_friends = empty_boost;
#endif #endif
#ifndef BOOST_NO_MEMBER_TEMPLATES #ifndef BOOST_NO_MEMBER_TEMPLATES
#include "boost_no_mem_templates.cxx" #include "boost_no_mem_templates.ipp"
#else #else
namespace boost_no_member_templates = empty_boost; namespace boost_no_member_templates = empty_boost;
#endif #endif
#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE #ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
#include "boost_no_ops_in_namespace.cxx" #include "boost_no_ops_in_namespace.ipp"
#else #else
namespace boost_no_operators_in_namespace = empty_boost; namespace boost_no_operators_in_namespace = empty_boost;
#endif #endif
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
#include "boost_no_partial_spec.cxx" #include "boost_no_partial_spec.ipp"
#else #else
namespace boost_no_template_partial_specialization = empty_boost; namespace boost_no_template_partial_specialization = empty_boost;
#endif #endif
#ifndef BOOST_NO_PRIVATE_IN_AGGREGATE #ifndef BOOST_NO_PRIVATE_IN_AGGREGATE
#include "boost_no_priv_aggregate.cxx" #include "boost_no_priv_aggregate.ipp"
#else #else
namespace boost_no_private_in_aggregate = empty_boost; namespace boost_no_private_in_aggregate = empty_boost;
#endif #endif
#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST #ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
#include "boost_no_ptr_mem_const.cxx" #include "boost_no_ptr_mem_const.ipp"
#else #else
namespace boost_no_pointer_to_member_const = empty_boost; namespace boost_no_pointer_to_member_const = empty_boost;
#endif #endif
#ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION #ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION
#include "boost_no_ret_det.cxx" #include "boost_no_ret_det.ipp"
#else #else
namespace boost_no_unreachable_return_detection = empty_boost; namespace boost_no_unreachable_return_detection = empty_boost;
#endif #endif
#ifndef BOOST_NO_SFINAE #ifndef BOOST_NO_SFINAE
#include "boost_no_sfinae.cxx" #include "boost_no_sfinae.ipp"
#else #else
namespace boost_no_sfinae = empty_boost; namespace boost_no_sfinae = empty_boost;
#endif #endif
#ifndef BOOST_NO_STRINGSTREAM #ifndef BOOST_NO_STRINGSTREAM
#include "boost_no_sstream.cxx" #include "boost_no_sstream.ipp"
#else #else
namespace boost_no_stringstream = empty_boost; namespace boost_no_stringstream = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_ALLOCATOR #ifndef BOOST_NO_STD_ALLOCATOR
#include "boost_no_std_allocator.cxx" #include "boost_no_std_allocator.ipp"
#else #else
namespace boost_no_std_allocator = empty_boost; namespace boost_no_std_allocator = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_DISTANCE #ifndef BOOST_NO_STD_DISTANCE
#include "boost_no_std_distance.cxx" #include "boost_no_std_distance.ipp"
#else #else
namespace boost_no_std_distance = empty_boost; namespace boost_no_std_distance = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_ITERATOR_TRAITS #ifndef BOOST_NO_STD_ITERATOR_TRAITS
#include "boost_no_std_iter_traits.cxx" #include "boost_no_std_iter_traits.ipp"
#else #else
namespace boost_no_std_iterator_traits = empty_boost; namespace boost_no_std_iterator_traits = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_ITERATOR #ifndef BOOST_NO_STD_ITERATOR
#include "boost_no_std_iterator.cxx" #include "boost_no_std_iterator.ipp"
#else #else
namespace boost_no_std_iterator = empty_boost; namespace boost_no_std_iterator = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_LOCALE #ifndef BOOST_NO_STD_LOCALE
#include "boost_no_std_locale.cxx" #include "boost_no_std_locale.ipp"
#else #else
namespace boost_no_std_locale = empty_boost; namespace boost_no_std_locale = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_MESSAGES #ifndef BOOST_NO_STD_MESSAGES
#include "boost_no_std_messages.cxx" #include "boost_no_std_messages.ipp"
#else #else
namespace boost_no_std_messages = empty_boost; namespace boost_no_std_messages = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_MIN_MAX #ifndef BOOST_NO_STD_MIN_MAX
#include "boost_no_std_min_max.cxx" #include "boost_no_std_min_max.ipp"
#else #else
namespace boost_no_std_min_max = empty_boost; namespace boost_no_std_min_max = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN #ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
#include "boost_no_std_oi_assign.cxx" #include "boost_no_std_oi_assign.ipp"
#else #else
namespace boost_no_std_output_iterator_assign = empty_boost; namespace boost_no_std_output_iterator_assign = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_USE_FACET #ifndef BOOST_NO_STD_USE_FACET
#include "boost_no_std_use_facet.cxx" #include "boost_no_std_use_facet.ipp"
#else #else
namespace boost_no_std_use_facet = empty_boost; namespace boost_no_std_use_facet = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_WSTREAMBUF #ifndef BOOST_NO_STD_WSTREAMBUF
#include "boost_no_std_wstreambuf.cxx" #include "boost_no_std_wstreambuf.ipp"
#else #else
namespace boost_no_std_wstreambuf = empty_boost; namespace boost_no_std_wstreambuf = empty_boost;
#endif #endif
#ifndef BOOST_NO_STD_WSTRING #ifndef BOOST_NO_STD_WSTRING
#include "boost_no_std_wstring.cxx" #include "boost_no_std_wstring.ipp"
#else #else
namespace boost_no_std_wstring = empty_boost; namespace boost_no_std_wstring = empty_boost;
#endif #endif
#ifndef BOOST_NO_STDC_NAMESPACE #ifndef BOOST_NO_STDC_NAMESPACE
#include "boost_no_stdc_namespace.cxx" #include "boost_no_stdc_namespace.ipp"
#else #else
namespace boost_no_stdc_namespace = empty_boost; namespace boost_no_stdc_namespace = empty_boost;
#endif #endif
#ifndef BOOST_NO_SWPRINTF #ifndef BOOST_NO_SWPRINTF
#include "boost_no_swprintf.cxx" #include "boost_no_swprintf.ipp"
#else #else
namespace boost_no_swprintf = empty_boost; namespace boost_no_swprintf = empty_boost;
#endif #endif
#ifndef BOOST_NO_TEMPLATE_TEMPLATES #ifndef BOOST_NO_TEMPLATE_TEMPLATES
#include "boost_no_template_template.cxx" #include "boost_no_template_template.ipp"
#else #else
namespace boost_no_template_templates = empty_boost; namespace boost_no_template_templates = empty_boost;
#endif #endif
#ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL #ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
#include "boost_no_using_breaks_adl.cxx" #include "boost_no_using_breaks_adl.ipp"
#else #else
namespace boost_function_scope_using_declaration_breaks_adl = empty_boost; namespace boost_function_scope_using_declaration_breaks_adl = empty_boost;
#endif #endif
#ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE #ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
#include "boost_no_using_decl_overld.cxx" #include "boost_no_using_decl_overld.ipp"
#else #else
namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost; namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost;
#endif #endif
#ifndef BOOST_NO_USING_TEMPLATE #ifndef BOOST_NO_USING_TEMPLATE
#include "boost_no_using_template.cxx" #include "boost_no_using_template.ipp"
#else #else
namespace boost_no_using_template = empty_boost; namespace boost_no_using_template = empty_boost;
#endif #endif
#ifndef BOOST_NO_VOID_RETURNS #ifndef BOOST_NO_VOID_RETURNS
#include "boost_no_void_returns.cxx" #include "boost_no_void_returns.ipp"
#else #else
namespace boost_no_void_returns = empty_boost; namespace boost_no_void_returns = empty_boost;
#endif #endif
#ifndef BOOST_NO_INTRINSIC_WCHAR_T #ifndef BOOST_NO_INTRINSIC_WCHAR_T
#include "boost_no_wchar_t.cxx" #include "boost_no_wchar_t.ipp"
#else #else
namespace boost_no_intrinsic_wchar_t = empty_boost; namespace boost_no_intrinsic_wchar_t = empty_boost;
#endif #endif
#ifdef BOOST_HAS_TWO_ARG_USE_FACET #ifdef BOOST_HAS_TWO_ARG_USE_FACET
#include "boost_has_2arg_use_facet.cxx" #include "boost_has_2arg_use_facet.ipp"
#else #else
namespace boost_has_two_arg_use_facet = empty_boost; namespace boost_has_two_arg_use_facet = empty_boost;
#endif #endif
#ifdef BOOST_HAS_BETHREADS #ifdef BOOST_HAS_BETHREADS
#include "boost_has_bethreads.cxx" #include "boost_has_bethreads.ipp"
#else #else
namespace boost_has_bethreads = empty_boost; namespace boost_has_bethreads = empty_boost;
#endif #endif
#ifdef BOOST_HAS_CLOCK_GETTIME #ifdef BOOST_HAS_CLOCK_GETTIME
#include "boost_has_clock_gettime.cxx" #include "boost_has_clock_gettime.ipp"
#else #else
namespace boost_has_clock_gettime = empty_boost; namespace boost_has_clock_gettime = empty_boost;
#endif #endif
#ifdef BOOST_HAS_DIRENT_H #ifdef BOOST_HAS_DIRENT_H
#include "boost_has_dirent_h.cxx" #include "boost_has_dirent_h.ipp"
#else #else
namespace boost_has_dirent_h = empty_boost; namespace boost_has_dirent_h = empty_boost;
#endif #endif
#ifdef BOOST_HAS_FTIME #ifdef BOOST_HAS_FTIME
#include "boost_has_ftime.cxx" #include "boost_has_ftime.ipp"
#else #else
namespace boost_has_ftime = empty_boost; namespace boost_has_ftime = empty_boost;
#endif #endif
#ifdef BOOST_HAS_GETTIMEOFDAY #ifdef BOOST_HAS_GETTIMEOFDAY
#include "boost_has_gettimeofday.cxx" #include "boost_has_gettimeofday.ipp"
#else #else
namespace boost_has_gettimeofday = empty_boost; namespace boost_has_gettimeofday = empty_boost;
#endif #endif
#ifdef BOOST_HAS_HASH #ifdef BOOST_HAS_HASH
#include "boost_has_hash.cxx" #include "boost_has_hash.ipp"
#else #else
namespace boost_has_hash = empty_boost; namespace boost_has_hash = empty_boost;
#endif #endif
#ifdef BOOST_HAS_LONG_LONG #ifdef BOOST_HAS_LONG_LONG
#include "boost_has_long_long.cxx" #include "boost_has_long_long.ipp"
#else #else
namespace boost_has_long_long = empty_boost; namespace boost_has_long_long = empty_boost;
#endif #endif
#ifdef BOOST_HAS_MACRO_USE_FACET #ifdef BOOST_HAS_MACRO_USE_FACET
#include "boost_has_macro_use_facet.cxx" #include "boost_has_macro_use_facet.ipp"
#else #else
namespace boost_has_macro_use_facet = empty_boost; namespace boost_has_macro_use_facet = empty_boost;
#endif #endif
#ifdef BOOST_HAS_MS_INT64 #ifdef BOOST_HAS_MS_INT64
#include "boost_has_ms_int64.cxx" #include "boost_has_ms_int64.ipp"
#else #else
namespace boost_has_ms_int64 = empty_boost; namespace boost_has_ms_int64 = empty_boost;
#endif #endif
#ifdef BOOST_HAS_NANOSLEEP #ifdef BOOST_HAS_NANOSLEEP
#include "boost_has_nanosleep.cxx" #include "boost_has_nanosleep.ipp"
#else #else
namespace boost_has_nanosleep = empty_boost; namespace boost_has_nanosleep = empty_boost;
#endif #endif
#ifdef BOOST_HAS_NL_TYPES_H #ifdef BOOST_HAS_NL_TYPES_H
#include "boost_has_nl_types_h.cxx" #include "boost_has_nl_types_h.ipp"
#else #else
namespace boost_has_nl_types_h = empty_boost; namespace boost_has_nl_types_h = empty_boost;
#endif #endif
#ifdef BOOST_HAS_NRVO #ifdef BOOST_HAS_NRVO
#include "boost_has_nrvo.cxx" #include "boost_has_nrvo.ipp"
#else #else
namespace boost_has_nrvo = empty_boost; namespace boost_has_nrvo = empty_boost;
#endif #endif
#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR #ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR
#include "boost_has_part_alloc.cxx" #include "boost_has_part_alloc.ipp"
#else #else
namespace boost_has_partial_std_allocator = empty_boost; namespace boost_has_partial_std_allocator = empty_boost;
#endif #endif
#ifdef BOOST_HAS_PTHREAD_DELAY_NP #ifdef BOOST_HAS_PTHREAD_DELAY_NP
#include "boost_has_pthread_delay_np.cxx" #include "boost_has_pthread_delay_np.ipp"
#else #else
namespace boost_has_pthread_delay_np = empty_boost; namespace boost_has_pthread_delay_np = empty_boost;
#endif #endif
#ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
#include "boost_has_pthread_ma_st.cxx" #include "boost_has_pthread_ma_st.ipp"
#else #else
namespace boost_has_pthread_mutexattr_settype = empty_boost; namespace boost_has_pthread_mutexattr_settype = empty_boost;
#endif #endif
#ifdef BOOST_HAS_PTHREAD_YIELD #ifdef BOOST_HAS_PTHREAD_YIELD
#include "boost_has_pthread_yield.cxx" #include "boost_has_pthread_yield.ipp"
#else #else
namespace boost_has_pthread_yield = empty_boost; namespace boost_has_pthread_yield = empty_boost;
#endif #endif
#ifdef BOOST_HAS_PTHREADS #ifdef BOOST_HAS_PTHREADS
#include "boost_has_pthreads.cxx" #include "boost_has_pthreads.ipp"
#else #else
namespace boost_has_pthreads = empty_boost; namespace boost_has_pthreads = empty_boost;
#endif #endif
#ifdef BOOST_HAS_SCHED_YIELD #ifdef BOOST_HAS_SCHED_YIELD
#include "boost_has_sched_yield.cxx" #include "boost_has_sched_yield.ipp"
#else #else
namespace boost_has_sched_yield = empty_boost; namespace boost_has_sched_yield = empty_boost;
#endif #endif
#ifdef BOOST_HAS_SGI_TYPE_TRAITS #ifdef BOOST_HAS_SGI_TYPE_TRAITS
#include "boost_has_sgi_type_traits.cxx" #include "boost_has_sgi_type_traits.ipp"
#else #else
namespace boost_has_sgi_type_traits = empty_boost; namespace boost_has_sgi_type_traits = empty_boost;
#endif #endif
#ifdef BOOST_HAS_SIGACTION #ifdef BOOST_HAS_SIGACTION
#include "boost_has_sigaction.cxx" #include "boost_has_sigaction.ipp"
#else #else
namespace boost_has_sigaction = empty_boost; namespace boost_has_sigaction = empty_boost;
#endif #endif
#ifdef BOOST_HAS_SLIST #ifdef BOOST_HAS_SLIST
#include "boost_has_slist.cxx" #include "boost_has_slist.ipp"
#else #else
namespace boost_has_slist = empty_boost; namespace boost_has_slist = empty_boost;
#endif #endif
#ifdef BOOST_HAS_STDINT_H #ifdef BOOST_HAS_STDINT_H
#include "boost_has_stdint_h.cxx" #include "boost_has_stdint_h.ipp"
#else #else
namespace boost_has_stdint_h = empty_boost; namespace boost_has_stdint_h = empty_boost;
#endif #endif
#ifdef BOOST_HAS_STLP_USE_FACET #ifdef BOOST_HAS_STLP_USE_FACET
#include "boost_has_stlp_use_facet.cxx" #include "boost_has_stlp_use_facet.ipp"
#else #else
namespace boost_has_stlp_use_facet = empty_boost; namespace boost_has_stlp_use_facet = empty_boost;
#endif #endif
#ifdef BOOST_HAS_UNISTD_H #ifdef BOOST_HAS_UNISTD_H
#include "boost_has_unistd_h.cxx" #include "boost_has_unistd_h.ipp"
#else #else
namespace boost_has_unistd_h = empty_boost; namespace boost_has_unistd_h = empty_boost;
#endif #endif
#ifdef BOOST_MSVC6_MEMBER_TEMPLATES #ifdef BOOST_MSVC6_MEMBER_TEMPLATES
#include "boost_has_vc6_mem_templ.cxx" #include "boost_has_vc6_mem_templ.ipp"
#else #else
namespace boost_msvc6_member_templates = empty_boost; namespace boost_msvc6_member_templates = empty_boost;
#endif #endif
#ifdef BOOST_MSVC_STD_ITERATOR #ifdef BOOST_MSVC_STD_ITERATOR
#include "boost_has_vc_iterator.cxx" #include "boost_has_vc_iterator.ipp"
#else #else
namespace boost_msvc_std_iterator = empty_boost; namespace boost_msvc_std_iterator = empty_boost;
#endif #endif
#ifdef BOOST_HAS_WINTHREADS #ifdef BOOST_HAS_WINTHREADS
#include "boost_has_winthreads.cxx" #include "boost_has_winthreads.ipp"
#else #else
namespace boost_has_winthreads = empty_boost; namespace boost_has_winthreads = empty_boost;
#endif #endif
int test_main( int, char *[] ) int main( int, char *[] )
{ {
BOOST_TEST(0 == boost_no_intrinsic_wchar_t::test()); if(0 != boost_no_intrinsic_wchar_t::test())
BOOST_TEST(0 == boost_no_void_returns::test()); {
BOOST_TEST(0 == boost_no_using_template::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_using_declaration_overloads_from_typename_base::test()); ++error_count;
BOOST_TEST(0 == boost_function_scope_using_declaration_breaks_adl::test()); }
BOOST_TEST(0 == boost_no_template_templates::test()); if(0 != boost_no_void_returns::test())
BOOST_TEST(0 == boost_no_swprintf::test()); {
BOOST_TEST(0 == boost_no_stdc_namespace::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_std_wstring::test()); ++error_count;
BOOST_TEST(0 == boost_no_std_wstreambuf::test()); }
BOOST_TEST(0 == boost_no_std_use_facet::test()); if(0 != boost_no_using_template::test())
BOOST_TEST(0 == boost_no_std_output_iterator_assign::test()); {
BOOST_TEST(0 == boost_no_std_min_max::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_std_messages::test()); ++error_count;
BOOST_TEST(0 == boost_no_std_locale::test()); }
BOOST_TEST(0 == boost_no_std_iterator::test()); if(0 != boost_no_using_declaration_overloads_from_typename_base::test())
BOOST_TEST(0 == boost_no_std_iterator_traits::test()); {
BOOST_TEST(0 == boost_no_std_distance::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_std_allocator::test()); ++error_count;
BOOST_TEST(0 == boost_no_stringstream::test()); }
BOOST_TEST(0 == boost_no_sfinae::test()); if(0 != boost_function_scope_using_declaration_breaks_adl::test())
BOOST_TEST(0 == boost_no_unreachable_return_detection::test()); {
BOOST_TEST(0 == boost_no_pointer_to_member_const::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_private_in_aggregate::test()); ++error_count;
BOOST_TEST(0 == boost_no_template_partial_specialization::test()); }
BOOST_TEST(0 == boost_no_operators_in_namespace::test()); if(0 != boost_no_template_templates::test())
BOOST_TEST(0 == boost_no_member_templates::test()); {
BOOST_TEST(0 == boost_no_member_template_friends::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_member_template_keyword::test()); ++error_count;
BOOST_TEST(0 == boost_no_member_function_specializations::test()); }
BOOST_TEST(0 == boost_no_long_long_numeric_limits::test()); if(0 != boost_no_swprintf::test())
BOOST_TEST(0 == boost_no_limits_compile_time_constants::test()); {
BOOST_TEST(0 == boost_no_limits::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_templated_iterator_constructors::test()); ++error_count;
BOOST_TEST(0 == boost_no_integral_int64_t::test()); }
BOOST_TEST(0 == boost_no_inclass_member_initialization::test()); if(0 != boost_no_stdc_namespace::test())
BOOST_TEST(0 == boost_no_ms_int64_numeric_limits::test()); {
BOOST_TEST(0 == boost_no_function_template_ordering::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_explicit_function_template_arguments::test()); ++error_count;
BOOST_TEST(0 == boost_no_exceptions::test()); }
BOOST_TEST(0 == boost_no_exception_std_namespace::test()); if(0 != boost_no_std_wstring::test())
BOOST_TEST(0 == boost_no_dependent_types_in_template_value_parameters::test()); {
BOOST_TEST(0 == boost_no_dependent_nested_derivations::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_deduced_typename::test()); ++error_count;
BOOST_TEST(0 == boost_no_cwctype::test()); }
BOOST_TEST(0 == boost_no_cwchar::test()); if(0 != boost_no_std_wstreambuf::test())
BOOST_TEST(0 == boost_no_cv_void_specializations::test()); {
BOOST_TEST(0 == boost_no_cv_specializations::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_no_ctype_functions::test()); ++error_count;
BOOST_TEST(0 == boost_bcb_partial_specialization_bug::test()); }
BOOST_TEST(0 == boost_no_auto_ptr::test()); if(0 != boost_no_std_use_facet::test())
BOOST_TEST(0 == boost_no_array_type_specializations::test()); {
BOOST_TEST(0 == boost_no_argument_dependent_lookup::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_winthreads::test()); ++error_count;
BOOST_TEST(0 == boost_msvc_std_iterator::test()); }
BOOST_TEST(0 == boost_msvc6_member_templates::test()); if(0 != boost_no_std_output_iterator_assign::test())
BOOST_TEST(0 == boost_has_unistd_h::test()); {
BOOST_TEST(0 == boost_has_stlp_use_facet::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_stdint_h::test()); ++error_count;
BOOST_TEST(0 == boost_has_slist::test()); }
BOOST_TEST(0 == boost_has_sigaction::test()); if(0 != boost_no_std_min_max::test())
BOOST_TEST(0 == boost_has_sgi_type_traits::test()); {
BOOST_TEST(0 == boost_has_sched_yield::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_pthreads::test()); ++error_count;
BOOST_TEST(0 == boost_has_pthread_yield::test()); }
BOOST_TEST(0 == boost_has_pthread_mutexattr_settype::test()); if(0 != boost_no_std_messages::test())
BOOST_TEST(0 == boost_has_pthread_delay_np::test()); {
BOOST_TEST(0 == boost_has_partial_std_allocator::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_nrvo::test()); ++error_count;
BOOST_TEST(0 == boost_has_nl_types_h::test()); }
BOOST_TEST(0 == boost_has_nanosleep::test()); if(0 != boost_no_std_locale::test())
BOOST_TEST(0 == boost_has_ms_int64::test()); {
BOOST_TEST(0 == boost_has_macro_use_facet::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_long_long::test()); ++error_count;
BOOST_TEST(0 == boost_has_hash::test()); }
BOOST_TEST(0 == boost_has_gettimeofday::test()); if(0 != boost_no_std_iterator::test())
BOOST_TEST(0 == boost_has_ftime::test()); {
BOOST_TEST(0 == boost_has_dirent_h::test()); std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
BOOST_TEST(0 == boost_has_clock_gettime::test()); ++error_count;
BOOST_TEST(0 == boost_has_bethreads::test()); }
BOOST_TEST(0 == boost_has_two_arg_use_facet::test()); if(0 != boost_no_std_iterator_traits::test())
return 0; {
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_std_distance::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_std_allocator::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_stringstream::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_sfinae::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_unreachable_return_detection::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_pointer_to_member_const::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_private_in_aggregate::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_template_partial_specialization::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_operators_in_namespace::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_member_templates::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_member_template_friends::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_member_template_keyword::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_member_function_specializations::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_long_long_numeric_limits::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_limits_compile_time_constants::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_limits::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_templated_iterator_constructors::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_integral_int64_t::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_inclass_member_initialization::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_ms_int64_numeric_limits::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_function_template_ordering::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_explicit_function_template_arguments::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_exceptions::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_exception_std_namespace::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_dependent_types_in_template_value_parameters::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_dependent_nested_derivations::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_deduced_typename::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_cwctype::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_cwchar::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_cv_void_specializations::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_cv_specializations::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_ctype_functions::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_bcb_partial_specialization_bug::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_auto_ptr::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_array_type_specializations::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_no_argument_dependent_lookup::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_winthreads::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_msvc_std_iterator::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_msvc6_member_templates::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_unistd_h::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_stlp_use_facet::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_stdint_h::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_slist::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_sigaction::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_sgi_type_traits::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_sched_yield::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_pthreads::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_pthread_yield::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_pthread_mutexattr_settype::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_pthread_delay_np::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_partial_std_allocator::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_nrvo::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_nl_types_h::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_nanosleep::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_ms_int64::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_macro_use_facet::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_long_long::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_hash::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_gettimeofday::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_ftime::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_dirent_h::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_clock_gettime::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_bethreads::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
if(0 != boost_has_two_arg_use_facet::test())
{
std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count;
}
return error_count;
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_2arg_use_facet.cxx for more details // see boost_has_2arg_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.cxx on // ../tools/generate from boost_has_2arg_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_TWO_ARG_USE_FACET #ifndef BOOST_HAS_TWO_ARG_USE_FACET
#include "boost_has_2arg_use_facet.cxx" #include "boost_has_2arg_use_facet.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_2arg_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.cxx on // ../tools/generate from boost_has_2arg_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_TWO_ARG_USE_FACET #ifdef BOOST_HAS_TWO_ARG_USE_FACET
#include "boost_has_2arg_use_facet.cxx" #include "boost_has_2arg_use_facet.ipp"
#else #else
namespace boost_has_two_arg_use_facet = empty_boost; namespace boost_has_two_arg_use_facet = empty_boost;
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_bethreads.cxx for more details // see boost_has_bethreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.cxx on // ../tools/generate from boost_has_bethreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_BETHREADS #ifndef BOOST_HAS_BETHREADS
#include "boost_has_bethreads.cxx" #include "boost_has_bethreads.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_bethreads::test(); return boost_has_bethreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_bethreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.cxx on // ../tools/generate from boost_has_bethreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_BETHREADS #ifdef BOOST_HAS_BETHREADS
#include "boost_has_bethreads.cxx" #include "boost_has_bethreads.ipp"
#else #else
namespace boost_has_bethreads = empty_boost; namespace boost_has_bethreads = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_bethreads::test(); return boost_has_bethreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_clock_gettime.cxx for more details // see boost_has_clock_gettime.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.cxx on // ../tools/generate from boost_has_clock_gettime.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_CLOCK_GETTIME #ifndef BOOST_HAS_CLOCK_GETTIME
#include "boost_has_clock_gettime.cxx" #include "boost_has_clock_gettime.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_clock_gettime::test(); return boost_has_clock_gettime::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_clock_gettime.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.cxx on // ../tools/generate from boost_has_clock_gettime.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_CLOCK_GETTIME #ifdef BOOST_HAS_CLOCK_GETTIME
#include "boost_has_clock_gettime.cxx" #include "boost_has_clock_gettime.ipp"
#else #else
namespace boost_has_clock_gettime = empty_boost; namespace boost_has_clock_gettime = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_clock_gettime::test(); return boost_has_clock_gettime::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_dirent_h.cxx for more details // see boost_has_dirent_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.cxx on // ../tools/generate from boost_has_dirent_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_DIRENT_H #ifndef BOOST_HAS_DIRENT_H
#include "boost_has_dirent_h.cxx" #include "boost_has_dirent_h.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_dirent_h::test(); return boost_has_dirent_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_dirent_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.cxx on // ../tools/generate from boost_has_dirent_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_DIRENT_H #ifdef BOOST_HAS_DIRENT_H
#include "boost_has_dirent_h.cxx" #include "boost_has_dirent_h.ipp"
#else #else
namespace boost_has_dirent_h = empty_boost; namespace boost_has_dirent_h = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_dirent_h::test(); return boost_has_dirent_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_ftime.cxx for more details // see boost_has_ftime.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.cxx on // ../tools/generate from boost_has_ftime.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_FTIME #ifndef BOOST_HAS_FTIME
#include "boost_has_ftime.cxx" #include "boost_has_ftime.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ftime::test(); return boost_has_ftime::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_ftime.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.cxx on // ../tools/generate from boost_has_ftime.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_FTIME #ifdef BOOST_HAS_FTIME
#include "boost_has_ftime.cxx" #include "boost_has_ftime.ipp"
#else #else
namespace boost_has_ftime = empty_boost; namespace boost_has_ftime = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ftime::test(); return boost_has_ftime::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_gettimeofday.cxx for more details // see boost_has_gettimeofday.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.cxx on // ../tools/generate from boost_has_gettimeofday.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_GETTIMEOFDAY #ifndef BOOST_HAS_GETTIMEOFDAY
#include "boost_has_gettimeofday.cxx" #include "boost_has_gettimeofday.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_gettimeofday::test(); return boost_has_gettimeofday::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_gettimeofday.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.cxx on // ../tools/generate from boost_has_gettimeofday.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_GETTIMEOFDAY #ifdef BOOST_HAS_GETTIMEOFDAY
#include "boost_has_gettimeofday.cxx" #include "boost_has_gettimeofday.ipp"
#else #else
namespace boost_has_gettimeofday = empty_boost; namespace boost_has_gettimeofday = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_gettimeofday::test(); return boost_has_gettimeofday::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_hash.cxx for more details // see boost_has_hash.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.cxx on // ../tools/generate from boost_has_hash.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_HASH #ifndef BOOST_HAS_HASH
#include "boost_has_hash.cxx" #include "boost_has_hash.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_hash::test(); return boost_has_hash::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_hash.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.cxx on // ../tools/generate from boost_has_hash.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_HASH #ifdef BOOST_HAS_HASH
#include "boost_has_hash.cxx" #include "boost_has_hash.ipp"
#else #else
namespace boost_has_hash = empty_boost; namespace boost_has_hash = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_hash::test(); return boost_has_hash::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_long_long.cxx for more details // see boost_has_long_long.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.cxx on // ../tools/generate from boost_has_long_long.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_LONG_LONG #ifndef BOOST_HAS_LONG_LONG
#include "boost_has_long_long.cxx" #include "boost_has_long_long.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_long_long::test(); return boost_has_long_long::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_long_long.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.cxx on // ../tools/generate from boost_has_long_long.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_LONG_LONG #ifdef BOOST_HAS_LONG_LONG
#include "boost_has_long_long.cxx" #include "boost_has_long_long.ipp"
#else #else
namespace boost_has_long_long = empty_boost; namespace boost_has_long_long = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_long_long::test(); return boost_has_long_long::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_macro_use_facet.cxx for more details // see boost_has_macro_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.cxx on // ../tools/generate from boost_has_macro_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_MACRO_USE_FACET #ifndef BOOST_HAS_MACRO_USE_FACET
#include "boost_has_macro_use_facet.cxx" #include "boost_has_macro_use_facet.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_macro_use_facet::test(); return boost_has_macro_use_facet::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_macro_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.cxx on // ../tools/generate from boost_has_macro_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_MACRO_USE_FACET #ifdef BOOST_HAS_MACRO_USE_FACET
#include "boost_has_macro_use_facet.cxx" #include "boost_has_macro_use_facet.ipp"
#else #else
namespace boost_has_macro_use_facet = empty_boost; namespace boost_has_macro_use_facet = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_macro_use_facet::test(); return boost_has_macro_use_facet::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_ms_int64.cxx for more details // see boost_has_ms_int64.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.cxx on // ../tools/generate from boost_has_ms_int64.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_MS_INT64 #ifndef BOOST_HAS_MS_INT64
#include "boost_has_ms_int64.cxx" #include "boost_has_ms_int64.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ms_int64::test(); return boost_has_ms_int64::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_ms_int64.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.cxx on // ../tools/generate from boost_has_ms_int64.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_MS_INT64 #ifdef BOOST_HAS_MS_INT64
#include "boost_has_ms_int64.cxx" #include "boost_has_ms_int64.ipp"
#else #else
namespace boost_has_ms_int64 = empty_boost; namespace boost_has_ms_int64 = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_ms_int64::test(); return boost_has_ms_int64::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_nanosleep.cxx for more details // see boost_has_nanosleep.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.cxx on // ../tools/generate from boost_has_nanosleep.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_NANOSLEEP #ifndef BOOST_HAS_NANOSLEEP
#include "boost_has_nanosleep.cxx" #include "boost_has_nanosleep.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nanosleep::test(); return boost_has_nanosleep::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_nanosleep.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.cxx on // ../tools/generate from boost_has_nanosleep.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_NANOSLEEP #ifdef BOOST_HAS_NANOSLEEP
#include "boost_has_nanosleep.cxx" #include "boost_has_nanosleep.ipp"
#else #else
namespace boost_has_nanosleep = empty_boost; namespace boost_has_nanosleep = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nanosleep::test(); return boost_has_nanosleep::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_nl_types_h.cxx for more details // see boost_has_nl_types_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.cxx on // ../tools/generate from boost_has_nl_types_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_NL_TYPES_H #ifndef BOOST_HAS_NL_TYPES_H
#include "boost_has_nl_types_h.cxx" #include "boost_has_nl_types_h.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nl_types_h::test(); return boost_has_nl_types_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_nl_types_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.cxx on // ../tools/generate from boost_has_nl_types_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_NL_TYPES_H #ifdef BOOST_HAS_NL_TYPES_H
#include "boost_has_nl_types_h.cxx" #include "boost_has_nl_types_h.ipp"
#else #else
namespace boost_has_nl_types_h = empty_boost; namespace boost_has_nl_types_h = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nl_types_h::test(); return boost_has_nl_types_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_nrvo.cxx for more details // see boost_has_nrvo.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nrvo.cxx on // ../tools/generate from boost_has_nrvo.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_NRVO #ifndef BOOST_HAS_NRVO
#include "boost_has_nrvo.cxx" #include "boost_has_nrvo.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nrvo::test(); return boost_has_nrvo::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_nrvo.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nrvo.cxx on // ../tools/generate from boost_has_nrvo.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_NRVO #ifdef BOOST_HAS_NRVO
#include "boost_has_nrvo.cxx" #include "boost_has_nrvo.ipp"
#else #else
namespace boost_has_nrvo = empty_boost; namespace boost_has_nrvo = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_nrvo::test(); return boost_has_nrvo::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_part_alloc.cxx for more details // see boost_has_part_alloc.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.cxx on // ../tools/generate from boost_has_part_alloc.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PARTIAL_STD_ALLOCATOR #ifndef BOOST_HAS_PARTIAL_STD_ALLOCATOR
#include "boost_has_part_alloc.cxx" #include "boost_has_part_alloc.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_partial_std_allocator::test(); return boost_has_partial_std_allocator::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_part_alloc.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.cxx on // ../tools/generate from boost_has_part_alloc.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR #ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR
#include "boost_has_part_alloc.cxx" #include "boost_has_part_alloc.ipp"
#else #else
namespace boost_has_partial_std_allocator = empty_boost; namespace boost_has_partial_std_allocator = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_partial_std_allocator::test(); return boost_has_partial_std_allocator::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_pthread_delay_np.cxx for more details // see boost_has_pthread_delay_np.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.cxx on // ../tools/generate from boost_has_pthread_delay_np.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_DELAY_NP #ifndef BOOST_HAS_PTHREAD_DELAY_NP
#include "boost_has_pthread_delay_np.cxx" #include "boost_has_pthread_delay_np.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_delay_np::test(); return boost_has_pthread_delay_np::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_pthread_delay_np.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.cxx on // ../tools/generate from boost_has_pthread_delay_np.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_DELAY_NP #ifdef BOOST_HAS_PTHREAD_DELAY_NP
#include "boost_has_pthread_delay_np.cxx" #include "boost_has_pthread_delay_np.ipp"
#else #else
namespace boost_has_pthread_delay_np = empty_boost; namespace boost_has_pthread_delay_np = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_delay_np::test(); return boost_has_pthread_delay_np::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_pthread_ma_st.cxx for more details // see boost_has_pthread_ma_st.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.cxx on // ../tools/generate from boost_has_pthread_ma_st.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #ifndef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
#include "boost_has_pthread_ma_st.cxx" #include "boost_has_pthread_ma_st.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_mutexattr_settype::test(); return boost_has_pthread_mutexattr_settype::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_pthread_ma_st.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.cxx on // ../tools/generate from boost_has_pthread_ma_st.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
#include "boost_has_pthread_ma_st.cxx" #include "boost_has_pthread_ma_st.ipp"
#else #else
namespace boost_has_pthread_mutexattr_settype = empty_boost; namespace boost_has_pthread_mutexattr_settype = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_mutexattr_settype::test(); return boost_has_pthread_mutexattr_settype::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_pthread_yield.cxx for more details // see boost_has_pthread_yield.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.cxx on // ../tools/generate from boost_has_pthread_yield.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_YIELD #ifndef BOOST_HAS_PTHREAD_YIELD
#include "boost_has_pthread_yield.cxx" #include "boost_has_pthread_yield.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_yield::test(); return boost_has_pthread_yield::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_pthread_yield.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.cxx on // ../tools/generate from boost_has_pthread_yield.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_YIELD #ifdef BOOST_HAS_PTHREAD_YIELD
#include "boost_has_pthread_yield.cxx" #include "boost_has_pthread_yield.ipp"
#else #else
namespace boost_has_pthread_yield = empty_boost; namespace boost_has_pthread_yield = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthread_yield::test(); return boost_has_pthread_yield::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_pthreads.cxx for more details // see boost_has_pthreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.cxx on // ../tools/generate from boost_has_pthreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREADS #ifndef BOOST_HAS_PTHREADS
#include "boost_has_pthreads.cxx" #include "boost_has_pthreads.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthreads::test(); return boost_has_pthreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_pthreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.cxx on // ../tools/generate from boost_has_pthreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREADS #ifdef BOOST_HAS_PTHREADS
#include "boost_has_pthreads.cxx" #include "boost_has_pthreads.ipp"
#else #else
namespace boost_has_pthreads = empty_boost; namespace boost_has_pthreads = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_pthreads::test(); return boost_has_pthreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_sched_yield.cxx for more details // see boost_has_sched_yield.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.cxx on // ../tools/generate from boost_has_sched_yield.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SCHED_YIELD #ifndef BOOST_HAS_SCHED_YIELD
#include "boost_has_sched_yield.cxx" #include "boost_has_sched_yield.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sched_yield::test(); return boost_has_sched_yield::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_sched_yield.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.cxx on // ../tools/generate from boost_has_sched_yield.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SCHED_YIELD #ifdef BOOST_HAS_SCHED_YIELD
#include "boost_has_sched_yield.cxx" #include "boost_has_sched_yield.ipp"
#else #else
namespace boost_has_sched_yield = empty_boost; namespace boost_has_sched_yield = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sched_yield::test(); return boost_has_sched_yield::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_sgi_type_traits.cxx for more details // see boost_has_sgi_type_traits.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.cxx on // ../tools/generate from boost_has_sgi_type_traits.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SGI_TYPE_TRAITS #ifndef BOOST_HAS_SGI_TYPE_TRAITS
#include "boost_has_sgi_type_traits.cxx" #include "boost_has_sgi_type_traits.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sgi_type_traits::test(); return boost_has_sgi_type_traits::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_sgi_type_traits.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.cxx on // ../tools/generate from boost_has_sgi_type_traits.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SGI_TYPE_TRAITS #ifdef BOOST_HAS_SGI_TYPE_TRAITS
#include "boost_has_sgi_type_traits.cxx" #include "boost_has_sgi_type_traits.ipp"
#else #else
namespace boost_has_sgi_type_traits = empty_boost; namespace boost_has_sgi_type_traits = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sgi_type_traits::test(); return boost_has_sgi_type_traits::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_sigaction.cxx for more details // see boost_has_sigaction.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sigaction.cxx on // ../tools/generate from boost_has_sigaction.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SIGACTION #ifndef BOOST_HAS_SIGACTION
#include "boost_has_sigaction.cxx" #include "boost_has_sigaction.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sigaction::test(); return boost_has_sigaction::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_sigaction.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sigaction.cxx on // ../tools/generate from boost_has_sigaction.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SIGACTION #ifdef BOOST_HAS_SIGACTION
#include "boost_has_sigaction.cxx" #include "boost_has_sigaction.ipp"
#else #else
namespace boost_has_sigaction = empty_boost; namespace boost_has_sigaction = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_sigaction::test(); return boost_has_sigaction::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_slist.cxx for more details // see boost_has_slist.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.cxx on // ../tools/generate from boost_has_slist.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SLIST #ifndef BOOST_HAS_SLIST
#include "boost_has_slist.cxx" #include "boost_has_slist.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_slist::test(); return boost_has_slist::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_slist.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.cxx on // ../tools/generate from boost_has_slist.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SLIST #ifdef BOOST_HAS_SLIST
#include "boost_has_slist.cxx" #include "boost_has_slist.ipp"
#else #else
namespace boost_has_slist = empty_boost; namespace boost_has_slist = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_slist::test(); return boost_has_slist::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_stdint_h.cxx for more details // see boost_has_stdint_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.cxx on // ../tools/generate from boost_has_stdint_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_STDINT_H #ifndef BOOST_HAS_STDINT_H
#include "boost_has_stdint_h.cxx" #include "boost_has_stdint_h.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stdint_h::test(); return boost_has_stdint_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_stdint_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.cxx on // ../tools/generate from boost_has_stdint_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_STDINT_H #ifdef BOOST_HAS_STDINT_H
#include "boost_has_stdint_h.cxx" #include "boost_has_stdint_h.ipp"
#else #else
namespace boost_has_stdint_h = empty_boost; namespace boost_has_stdint_h = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stdint_h::test(); return boost_has_stdint_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_stlp_use_facet.cxx for more details // see boost_has_stlp_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.cxx on // ../tools/generate from boost_has_stlp_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_STLP_USE_FACET #ifndef BOOST_HAS_STLP_USE_FACET
#include "boost_has_stlp_use_facet.cxx" #include "boost_has_stlp_use_facet.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stlp_use_facet::test(); return boost_has_stlp_use_facet::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_stlp_use_facet.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.cxx on // ../tools/generate from boost_has_stlp_use_facet.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_STLP_USE_FACET #ifdef BOOST_HAS_STLP_USE_FACET
#include "boost_has_stlp_use_facet.cxx" #include "boost_has_stlp_use_facet.ipp"
#else #else
namespace boost_has_stlp_use_facet = empty_boost; namespace boost_has_stlp_use_facet = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_stlp_use_facet::test(); return boost_has_stlp_use_facet::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_unistd_h.cxx for more details // see boost_has_unistd_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.cxx on // ../tools/generate from boost_has_unistd_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_UNISTD_H #ifndef BOOST_HAS_UNISTD_H
#include "boost_has_unistd_h.cxx" #include "boost_has_unistd_h.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_unistd_h::test(); return boost_has_unistd_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_unistd_h.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.cxx on // ../tools/generate from boost_has_unistd_h.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_UNISTD_H #ifdef BOOST_HAS_UNISTD_H
#include "boost_has_unistd_h.cxx" #include "boost_has_unistd_h.ipp"
#else #else
namespace boost_has_unistd_h = empty_boost; namespace boost_has_unistd_h = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_unistd_h::test(); return boost_has_unistd_h::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_vc6_mem_templ.cxx for more details // see boost_has_vc6_mem_templ.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.cxx on // ../tools/generate from boost_has_vc6_mem_templ.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_MSVC6_MEMBER_TEMPLATES #ifndef BOOST_MSVC6_MEMBER_TEMPLATES
#include "boost_has_vc6_mem_templ.cxx" #include "boost_has_vc6_mem_templ.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc6_member_templates::test(); return boost_msvc6_member_templates::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_vc6_mem_templ.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.cxx on // ../tools/generate from boost_has_vc6_mem_templ.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_MSVC6_MEMBER_TEMPLATES #ifdef BOOST_MSVC6_MEMBER_TEMPLATES
#include "boost_has_vc6_mem_templ.cxx" #include "boost_has_vc6_mem_templ.ipp"
#else #else
namespace boost_msvc6_member_templates = empty_boost; namespace boost_msvc6_member_templates = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc6_member_templates::test(); return boost_msvc6_member_templates::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_vc_iterator.cxx for more details // see boost_has_vc_iterator.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.cxx on // ../tools/generate from boost_has_vc_iterator.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_MSVC_STD_ITERATOR #ifndef BOOST_MSVC_STD_ITERATOR
#include "boost_has_vc_iterator.cxx" #include "boost_has_vc_iterator.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc_std_iterator::test(); return boost_msvc_std_iterator::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_vc_iterator.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.cxx on // ../tools/generate from boost_has_vc_iterator.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_MSVC_STD_ITERATOR #ifdef BOOST_MSVC_STD_ITERATOR
#include "boost_has_vc_iterator.cxx" #include "boost_has_vc_iterator.ipp"
#else #else
namespace boost_msvc_std_iterator = empty_boost; namespace boost_msvc_std_iterator = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_msvc_std_iterator::test(); return boost_msvc_std_iterator::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 may be defined.
// see boost_has_winthreads.cxx for more details // see boost_has_winthreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.cxx on // ../tools/generate from boost_has_winthreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_WINTHREADS #ifndef BOOST_HAS_WINTHREADS
#include "boost_has_winthreads.cxx" #include "boost_has_winthreads.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_winthreads::test(); return boost_has_winthreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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.cxx for more details // see boost_has_winthreads.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.cxx on // ../tools/generate from boost_has_winthreads.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_WINTHREADS #ifdef BOOST_HAS_WINTHREADS
#include "boost_has_winthreads.cxx" #include "boost_has_winthreads.ipp"
#else #else
namespace boost_has_winthreads = empty_boost; namespace boost_has_winthreads = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_has_winthreads::test(); return boost_has_winthreads::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_arg_dep_lookup.cxx for more details // see boost_no_arg_dep_lookup.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.cxx on // ../tools/generate from boost_no_arg_dep_lookup.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
#include "boost_no_arg_dep_lookup.cxx" #include "boost_no_arg_dep_lookup.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_argument_dependent_lookup::test(); return boost_no_argument_dependent_lookup::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_arg_dep_lookup.cxx for more details // see boost_no_arg_dep_lookup.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.cxx on // ../tools/generate from boost_no_arg_dep_lookup.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
#include "boost_no_arg_dep_lookup.cxx" #include "boost_no_arg_dep_lookup.ipp"
#else #else
namespace boost_no_argument_dependent_lookup = empty_boost; namespace boost_no_argument_dependent_lookup = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_argument_dependent_lookup::test(); return boost_no_argument_dependent_lookup::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_array_type_spec.cxx for more details // see boost_no_array_type_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_array_type_spec.cxx on // ../tools/generate from boost_no_array_type_spec.ipp on
// Sat Dec 13 12:29:38 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS #ifdef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
#include "boost_no_array_type_spec.cxx" #include "boost_no_array_type_spec.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_array_type_specializations::test(); return boost_no_array_type_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_array_type_spec.cxx for more details // see boost_no_array_type_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_array_type_spec.cxx on // ../tools/generate from boost_no_array_type_spec.ipp on
// Sat Dec 13 12:29:38 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS #ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
#include "boost_no_array_type_spec.cxx" #include "boost_no_array_type_spec.ipp"
#else #else
namespace boost_no_array_type_specializations = empty_boost; namespace boost_no_array_type_specializations = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_array_type_specializations::test(); return boost_no_array_type_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_auto_ptr.cxx for more details // see boost_no_auto_ptr.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.cxx on // ../tools/generate from boost_no_auto_ptr.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_AUTO_PTR #ifdef BOOST_NO_AUTO_PTR
#include "boost_no_auto_ptr.cxx" #include "boost_no_auto_ptr.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_auto_ptr::test(); return boost_no_auto_ptr::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_auto_ptr.cxx for more details // see boost_no_auto_ptr.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.cxx on // ../tools/generate from boost_no_auto_ptr.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_AUTO_PTR #ifndef BOOST_NO_AUTO_PTR
#include "boost_no_auto_ptr.cxx" #include "boost_no_auto_ptr.ipp"
#else #else
namespace boost_no_auto_ptr = empty_boost; namespace boost_no_auto_ptr = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_auto_ptr::test(); return boost_no_auto_ptr::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_bcb_partial_spec.cxx for more details // see boost_no_bcb_partial_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.cxx on // ../tools/generate from boost_no_bcb_partial_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #ifdef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
#include "boost_no_bcb_partial_spec.cxx" #include "boost_no_bcb_partial_spec.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_bcb_partial_specialization_bug::test(); return boost_bcb_partial_specialization_bug::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_bcb_partial_spec.cxx for more details // see boost_no_bcb_partial_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.cxx on // ../tools/generate from boost_no_bcb_partial_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
#include "boost_no_bcb_partial_spec.cxx" #include "boost_no_bcb_partial_spec.ipp"
#else #else
namespace boost_bcb_partial_specialization_bug = empty_boost; namespace boost_bcb_partial_specialization_bug = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_bcb_partial_specialization_bug::test(); return boost_bcb_partial_specialization_bug::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_ctype_functions.cxx for more details // see boost_no_ctype_functions.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.cxx on // ../tools/generate from boost_no_ctype_functions.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CTYPE_FUNCTIONS #ifdef BOOST_NO_CTYPE_FUNCTIONS
#include "boost_no_ctype_functions.cxx" #include "boost_no_ctype_functions.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ctype_functions::test(); return boost_no_ctype_functions::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_ctype_functions.cxx for more details // see boost_no_ctype_functions.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.cxx on // ../tools/generate from boost_no_ctype_functions.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CTYPE_FUNCTIONS #ifndef BOOST_NO_CTYPE_FUNCTIONS
#include "boost_no_ctype_functions.cxx" #include "boost_no_ctype_functions.ipp"
#else #else
namespace boost_no_ctype_functions = empty_boost; namespace boost_no_ctype_functions = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_ctype_functions::test(); return boost_no_ctype_functions::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_cv_spec.cxx for more details // see boost_no_cv_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.cxx on // ../tools/generate from boost_no_cv_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CV_SPECIALIZATIONS #ifdef BOOST_NO_CV_SPECIALIZATIONS
#include "boost_no_cv_spec.cxx" #include "boost_no_cv_spec.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_specializations::test(); return boost_no_cv_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_cv_spec.cxx for more details // see boost_no_cv_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.cxx on // ../tools/generate from boost_no_cv_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CV_SPECIALIZATIONS #ifndef BOOST_NO_CV_SPECIALIZATIONS
#include "boost_no_cv_spec.cxx" #include "boost_no_cv_spec.ipp"
#else #else
namespace boost_no_cv_specializations = empty_boost; namespace boost_no_cv_specializations = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_specializations::test(); return boost_no_cv_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_cv_void_spec.cxx for more details // see boost_no_cv_void_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.cxx on // ../tools/generate from boost_no_cv_void_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CV_VOID_SPECIALIZATIONS #ifdef BOOST_NO_CV_VOID_SPECIALIZATIONS
#include "boost_no_cv_void_spec.cxx" #include "boost_no_cv_void_spec.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_void_specializations::test(); return boost_no_cv_void_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_cv_void_spec.cxx for more details // see boost_no_cv_void_spec.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.cxx on // ../tools/generate from boost_no_cv_void_spec.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS #ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
#include "boost_no_cv_void_spec.cxx" #include "boost_no_cv_void_spec.ipp"
#else #else
namespace boost_no_cv_void_specializations = empty_boost; namespace boost_no_cv_void_specializations = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cv_void_specializations::test(); return boost_no_cv_void_specializations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_cwchar.cxx for more details // see boost_no_cwchar.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.cxx on // ../tools/generate from boost_no_cwchar.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CWCHAR #ifdef BOOST_NO_CWCHAR
#include "boost_no_cwchar.cxx" #include "boost_no_cwchar.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwchar::test(); return boost_no_cwchar::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_cwchar.cxx for more details // see boost_no_cwchar.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.cxx on // ../tools/generate from boost_no_cwchar.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CWCHAR #ifndef BOOST_NO_CWCHAR
#include "boost_no_cwchar.cxx" #include "boost_no_cwchar.ipp"
#else #else
namespace boost_no_cwchar = empty_boost; namespace boost_no_cwchar = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwchar::test(); return boost_no_cwchar::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_cwctype.cxx for more details // see boost_no_cwctype.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.cxx on // ../tools/generate from boost_no_cwctype.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CWCTYPE #ifdef BOOST_NO_CWCTYPE
#include "boost_no_cwctype.cxx" #include "boost_no_cwctype.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwctype::test(); return boost_no_cwctype::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_cwctype.cxx for more details // see boost_no_cwctype.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.cxx on // ../tools/generate from boost_no_cwctype.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CWCTYPE #ifndef BOOST_NO_CWCTYPE
#include "boost_no_cwctype.cxx" #include "boost_no_cwctype.ipp"
#else #else
namespace boost_no_cwctype = empty_boost; namespace boost_no_cwctype = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cwctype::test(); return boost_no_cwctype::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_ded_typename.cxx for more details // see boost_no_ded_typename.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ded_typename.cxx on // ../tools/generate from boost_no_ded_typename.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_DEDUCED_TYPENAME #ifdef BOOST_DEDUCED_TYPENAME
#include "boost_no_ded_typename.cxx" #include "boost_no_ded_typename.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_deduced_typename::test(); return boost_deduced_typename::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_ded_typename.cxx for more details // see boost_no_ded_typename.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ded_typename.cxx on // ../tools/generate from boost_no_ded_typename.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_DEDUCED_TYPENAME #ifndef BOOST_DEDUCED_TYPENAME
#include "boost_no_ded_typename.cxx" #include "boost_no_ded_typename.ipp"
#else #else
namespace boost_deduced_typename = empty_boost; namespace boost_deduced_typename = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_deduced_typename::test(); return boost_deduced_typename::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_dep_nested_class.cxx for more details // see boost_no_dep_nested_class.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.cxx on // ../tools/generate from boost_no_dep_nested_class.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS #ifdef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
#include "boost_no_dep_nested_class.cxx" #include "boost_no_dep_nested_class.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_nested_derivations::test(); return boost_no_dependent_nested_derivations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_dep_nested_class.cxx for more details // see boost_no_dep_nested_class.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.cxx on // ../tools/generate from boost_no_dep_nested_class.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS #ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
#include "boost_no_dep_nested_class.cxx" #include "boost_no_dep_nested_class.ipp"
#else #else
namespace boost_no_dependent_nested_derivations = empty_boost; namespace boost_no_dependent_nested_derivations = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_dependent_nested_derivations::test(); return boost_no_dependent_nested_derivations::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_dep_val_param.cxx for more details // see boost_no_dep_val_param.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.cxx on // ../tools/generate from boost_no_dep_val_param.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS #ifdef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
#include "boost_no_dep_val_param.cxx" #include "boost_no_dep_val_param.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_dep_val_param.cxx for more details // see boost_no_dep_val_param.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.cxx on // ../tools/generate from boost_no_dep_val_param.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS #ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
#include "boost_no_dep_val_param.cxx" #include "boost_no_dep_val_param.ipp"
#else #else
namespace boost_no_dependent_types_in_template_value_parameters = empty_boost; namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_excep_std.cxx for more details // see boost_no_excep_std.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.cxx on // ../tools/generate from boost_no_excep_std.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXCEPTION_STD_NAMESPACE #ifdef BOOST_NO_EXCEPTION_STD_NAMESPACE
#include "boost_no_excep_std.cxx" #include "boost_no_excep_std.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exception_std_namespace::test(); return boost_no_exception_std_namespace::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_excep_std.cxx for more details // see boost_no_excep_std.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.cxx on // ../tools/generate from boost_no_excep_std.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE #ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE
#include "boost_no_excep_std.cxx" #include "boost_no_excep_std.ipp"
#else #else
namespace boost_no_exception_std_namespace = empty_boost; namespace boost_no_exception_std_namespace = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exception_std_namespace::test(); return boost_no_exception_std_namespace::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_exceptions.cxx for more details // see boost_no_exceptions.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.cxx on // ../tools/generate from boost_no_exceptions.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXCEPTIONS #ifdef BOOST_NO_EXCEPTIONS
#include "boost_no_exceptions.cxx" #include "boost_no_exceptions.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exceptions::test(); return boost_no_exceptions::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_exceptions.cxx for more details // see boost_no_exceptions.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.cxx on // ../tools/generate from boost_no_exceptions.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXCEPTIONS #ifndef BOOST_NO_EXCEPTIONS
#include "boost_no_exceptions.cxx" #include "boost_no_exceptions.ipp"
#else #else
namespace boost_no_exceptions = empty_boost; namespace boost_no_exceptions = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_exceptions::test(); return boost_no_exceptions::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_exp_func_tem_arg.cxx for more details // see boost_no_exp_func_tem_arg.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.cxx on // ../tools/generate from boost_no_exp_func_tem_arg.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #ifdef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#include "boost_no_exp_func_tem_arg.cxx" #include "boost_no_exp_func_tem_arg.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_exp_func_tem_arg.cxx for more details // see boost_no_exp_func_tem_arg.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.cxx on // ../tools/generate from boost_no_exp_func_tem_arg.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#include "boost_no_exp_func_tem_arg.cxx" #include "boost_no_exp_func_tem_arg.ipp"
#else #else
namespace boost_no_explicit_function_template_arguments = empty_boost; namespace boost_no_explicit_function_template_arguments = empty_boost;
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_func_tmp_order.cxx for more details // see boost_no_func_tmp_order.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.cxx on // ../tools/generate from boost_no_func_tmp_order.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
#include "boost_no_func_tmp_order.cxx" #include "boost_no_func_tmp_order.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_function_template_ordering::test(); return boost_no_function_template_ordering::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_func_tmp_order.cxx for more details // see boost_no_func_tmp_order.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.cxx on // ../tools/generate from boost_no_func_tmp_order.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
#include "boost_no_func_tmp_order.cxx" #include "boost_no_func_tmp_order.ipp"
#else #else
namespace boost_no_function_template_ordering = empty_boost; namespace boost_no_function_template_ordering = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_function_template_ordering::test(); return boost_no_function_template_ordering::test();
} }

View File

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_i64_limits.cxx for more details // see boost_no_i64_limits.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.cxx on // ../tools/generate from boost_no_i64_limits.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_MS_INT64_NUMERIC_LIMITS #ifdef BOOST_NO_MS_INT64_NUMERIC_LIMITS
#include "boost_no_i64_limits.cxx" #include "boost_no_i64_limits.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 needs to be defined.
// see boost_no_i64_limits.cxx for more details // see boost_no_i64_limits.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.cxx on // ../tools/generate from boost_no_i64_limits.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS #ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS
#include "boost_no_i64_limits.cxx" #include "boost_no_i64_limits.ipp"
#else #else
namespace boost_no_ms_int64_numeric_limits = empty_boost; namespace boost_no_ms_int64_numeric_limits = empty_boost;
#endif #endif
int cpp_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

@@ -8,11 +8,11 @@
// 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 need not be defined.
// see boost_no_inline_memb_init.cxx for more details // see boost_no_inline_memb_init.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_inline_memb_init.cxx on // ../tools/generate from boost_no_inline_memb_init.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_INCLASS_MEMBER_INITIALIZATION #ifdef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
#include "boost_no_inline_memb_init.cxx" #include "boost_no_inline_memb_init.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_inclass_member_initialization::test(); return boost_no_inclass_member_initialization::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_INCLASS_MEMBER_INITIALIZATION // Test file for macro BOOST_NO_INCLASS_MEMBER_INITIALIZATION
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_INCLASS_MEMBER_INITIALIZATION needs to be defined. // BOOST_NO_INCLASS_MEMBER_INITIALIZATION needs to be defined.
// see boost_no_inline_memb_init.cxx for more details // see boost_no_inline_memb_init.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_inline_memb_init.cxx on // ../tools/generate from boost_no_inline_memb_init.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
#include "boost_no_inline_memb_init.cxx" #include "boost_no_inline_memb_init.ipp"
#else #else
namespace boost_no_inclass_member_initialization = empty_boost; namespace boost_no_inclass_member_initialization = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_inclass_member_initialization::test(); return boost_no_inclass_member_initialization::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_INTEGRAL_INT64_T // Test file for macro BOOST_NO_INTEGRAL_INT64_T
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_INTEGRAL_INT64_T need not be defined. // BOOST_NO_INTEGRAL_INT64_T need not be defined.
// see boost_no_integral_int64_t.cxx for more details // see boost_no_integral_int64_t.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_integral_int64_t.cxx on // ../tools/generate from boost_no_integral_int64_t.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_INTEGRAL_INT64_T #ifdef BOOST_NO_INTEGRAL_INT64_T
#include "boost_no_integral_int64_t.cxx" #include "boost_no_integral_int64_t.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_integral_int64_t::test(); return boost_no_integral_int64_t::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_INTEGRAL_INT64_T // Test file for macro BOOST_NO_INTEGRAL_INT64_T
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_INTEGRAL_INT64_T needs to be defined. // BOOST_NO_INTEGRAL_INT64_T needs to be defined.
// see boost_no_integral_int64_t.cxx for more details // see boost_no_integral_int64_t.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_integral_int64_t.cxx on // ../tools/generate from boost_no_integral_int64_t.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_INTEGRAL_INT64_T #ifndef BOOST_NO_INTEGRAL_INT64_T
#include "boost_no_integral_int64_t.cxx" #include "boost_no_integral_int64_t.ipp"
#else #else
namespace boost_no_integral_int64_t = empty_boost; namespace boost_no_integral_int64_t = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_integral_int64_t::test(); return boost_no_integral_int64_t::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS // Test file for macro BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS need not be defined. // BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS need not be defined.
// see boost_no_iter_construct.cxx for more details // see boost_no_iter_construct.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_iter_construct.cxx on // ../tools/generate from boost_no_iter_construct.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS #ifdef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
#include "boost_no_iter_construct.cxx" #include "boost_no_iter_construct.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_templated_iterator_constructors::test(); return boost_no_templated_iterator_constructors::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS // Test file for macro BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
// This file should compile, if it does not then // This file should compile, if it does not then
// BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS needs to be defined. // BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS needs to be defined.
// see boost_no_iter_construct.cxx for more details // see boost_no_iter_construct.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_iter_construct.cxx on // ../tools/generate from boost_no_iter_construct.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS #ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
#include "boost_no_iter_construct.cxx" #include "boost_no_iter_construct.ipp"
#else #else
namespace boost_no_templated_iterator_constructors = empty_boost; namespace boost_no_templated_iterator_constructors = empty_boost;
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_templated_iterator_constructors::test(); return boost_no_templated_iterator_constructors::test();
} }

View File

@@ -8,11 +8,11 @@
// Test file for macro BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS // Test file for macro BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
// This file should not compile, if it does then // This file should not compile, if it does then
// BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS need not be defined. // BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS need not be defined.
// see boost_no_limits_const_exp.cxx for more details // see boost_no_limits_const_exp.ipp for more details
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_limits_const_exp.cxx on // ../tools/generate from boost_no_limits_const_exp.ipp on
// Tue Oct 7 11:26:18 GMTST 2003 // Tue Jun 15 11:47:07 GMTST 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:
@@ -24,12 +24,12 @@
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS #ifdef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
#include "boost_no_limits_const_exp.cxx" #include "boost_no_limits_const_exp.ipp"
#else #else
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_limits_compile_time_constants::test(); return boost_no_limits_compile_time_constants::test();
} }

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