Fixed broken tests by regenerating.

[SVN r11344]
This commit is contained in:
John Maddock
2001-10-05 11:15:38 +00:00
parent 30fb4ad5fa
commit f85f7eead2
5 changed files with 1666 additions and 741 deletions

View File

@@ -4,14 +4,14 @@
// in all copies. This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
// Test file for macro BOOST_WEAK_FUNCTION_TEMPLATE_ORDERING
// Test file for macro BOOST_NO_FUNCTION_TEMPLATE_ORDERING
// This file should compile, if it does not then
// BOOST_WEAK_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
// Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.cxx on
// Mon Sep 10 12:18:12 2001
// Wed Oct 3 13:47:21 2001
// Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file:
@@ -23,14 +23,14 @@
#include <boost/test/cpp_main.cpp>
#include "test.hpp"
#ifndef BOOST_WEAK_FUNCTION_TEMPLATE_ORDERING
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
#include "boost_no_func_tmp_order.cxx"
#else
namespace boost_weak_function_template_ordering = empty_boost;
namespace boost_no_function_template_ordering = empty_boost;
#endif
int cpp_main( int, char *[] )
{
return boost_weak_function_template_ordering::test();
return boost_no_function_template_ordering::test();
}