From b509fb943ac75d935c088737caa32b5e723ece5d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 7 Oct 2003 10:51:54 +0000 Subject: [PATCH] Changed over to new boost license [SVN r20275] --- examples/copy_example.cpp | 15 +++++---------- examples/fill_example.cpp | 15 +++++---------- examples/iter_swap_example.cpp | 15 +++++---------- examples/trivial_destructor_example.cpp | 15 +++++---------- test/add_const_test.cpp | 9 +++++---- test/add_pointer_test.cpp | 9 +++++---- test/add_reference_test.cpp | 9 +++++---- test/add_volatile_test.cpp | 9 +++++---- test/alignment_of_test.cpp | 9 +++++---- test/check_integral_constant.hpp | 9 +++++---- test/check_type.hpp | 9 +++++---- test/function_traits_test.cpp | 9 +++++---- test/has_nothrow_assign_test.cpp | 9 +++++---- test/has_nothrow_constr_test.cpp | 9 +++++---- test/has_nothrow_copy_test.cpp | 9 +++++---- test/has_trivial_assign_test.cpp | 9 +++++---- test/has_trivial_constr_test.cpp | 9 +++++---- test/has_trivial_copy_test.cpp | 9 +++++---- test/has_trivial_destructor_test.cpp | 9 +++++---- test/init.cpp | 9 +++++---- test/is_arithmetic_test.cpp | 9 +++++---- test/is_array_test.cpp | 9 +++++---- test/is_base_and_derived_test.cpp | 9 +++++---- test/is_class_test.cpp | 9 +++++---- test/is_compound_test.cpp | 9 +++++---- test/is_const_test.cpp | 9 +++++---- test/is_convertible_test.cpp | 9 +++++---- test/is_empty_test.cpp | 9 +++++---- test/is_enum_test.cpp | 9 +++++---- test/is_float_test.cpp | 9 +++++---- test/is_function_test.cpp | 9 +++++---- test/is_fundamental_test.cpp | 9 +++++---- test/is_integral_test.cpp | 9 +++++---- test/is_member_func_test.cpp | 9 +++++---- test/is_member_pointer_test.cpp | 9 +++++---- test/is_object_test.cpp | 9 +++++---- test/is_pod_test.cpp | 9 +++++---- test/is_pointer_test.cpp | 9 +++++---- test/is_polymorphic_test.cpp | 9 +++++---- test/is_reference_test.cpp | 9 +++++---- test/is_same_test.cpp | 9 +++++---- test/is_scalar_test.cpp | 9 +++++---- test/is_stateless_test.cpp | 9 +++++---- test/is_union_test.cpp | 9 +++++---- test/is_void_test.cpp | 9 +++++---- test/is_volatile_test.cpp | 9 +++++---- test/remove_bounds_test.cpp | 9 +++++---- test/remove_const_test.cpp | 9 +++++---- test/remove_cv_test.cpp | 9 +++++---- test/remove_pointer_test.cpp | 9 +++++---- test/remove_reference_test.cpp | 9 +++++---- test/remove_volatile_test.cpp | 9 +++++---- test/test.hpp | 9 +++++---- test/tricky_abstract_type_test.cpp | 9 +++++---- test/tricky_add_pointer_test.cpp | 9 +++++---- test/tricky_function_type_test.cpp | 9 +++++---- test/tricky_incomplete_type_test.cpp | 9 +++++---- test/tricky_partial_spec_test.cpp | 9 +++++---- test/type_with_alignment_test.cpp | 9 +++++---- tools/specialisations.cpp | 9 +++++---- 60 files changed, 300 insertions(+), 264 deletions(-) diff --git a/examples/copy_example.cpp b/examples/copy_example.cpp index e47e3f2..12c6e51 100644 --- a/examples/copy_example.cpp +++ b/examples/copy_example.cpp @@ -1,16 +1,10 @@ /* * - * Copyright (c) 1999 - * Dr John Maddock - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Dr John Maddock makes no representations - * about the suitability of this software for any purpose. - * It is provided "as is" without express or implied warranty. + * (C) Copyright John Maddock 1999. + * Use, modification and distribution are subject to the + * Boost Software License, Version 1.0. (See accompanying file + * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * * This file provides some example of type_traits usage - * by "optimising" various algorithms: @@ -239,3 +233,4 @@ int cpp_main(int argc, char* argv[]) + diff --git a/examples/fill_example.cpp b/examples/fill_example.cpp index 37c46e2..064a86e 100644 --- a/examples/fill_example.cpp +++ b/examples/fill_example.cpp @@ -1,16 +1,10 @@ /* * - * Copyright (c) 1999 - * Dr John Maddock - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Dr John Maddock makes no representations - * about the suitability of this software for any purpose. - * It is provided "as is" without express or implied warranty. + * (C) Copyright John Maddock 1999. + * Use, modification and distribution are subject to the + * Boost Software License, Version 1.0. (See accompanying file + * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * * This file provides some example of type_traits usage - * by "optimising" various algorithms: @@ -190,3 +184,4 @@ int cpp_main(int argc, char* argv[]) + diff --git a/examples/iter_swap_example.cpp b/examples/iter_swap_example.cpp index 9624c7e..c5008a9 100644 --- a/examples/iter_swap_example.cpp +++ b/examples/iter_swap_example.cpp @@ -1,16 +1,10 @@ /* * - * Copyright (c) 1999 - * Dr John Maddock - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Dr John Maddock makes no representations - * about the suitability of this software for any purpose. - * It is provided "as is" without express or implied warranty. + * (C) Copyright John Maddock 1999. + * Use, modification and distribution are subject to the + * Boost Software License, Version 1.0. (See accompanying file + * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * * This file provides some example of type_traits usage - * by "optimising" various algorithms: @@ -107,3 +101,4 @@ int cpp_main(int argc, char* argv[]) } + diff --git a/examples/trivial_destructor_example.cpp b/examples/trivial_destructor_example.cpp index bc8d87d..9d76fa2 100644 --- a/examples/trivial_destructor_example.cpp +++ b/examples/trivial_destructor_example.cpp @@ -1,16 +1,10 @@ /* * - * Copyright (c) 1999 - * Dr John Maddock - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Dr John Maddock makes no representations - * about the suitability of this software for any purpose. - * It is provided "as is" without express or implied warranty. + * (C) Copyright John Maddock 1999. + * Use, modification and distribution are subject to the + * Boost Software License, Version 1.0. (See accompanying file + * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * * This file provides some example of type_traits usage - * by "optimising" various algorithms: @@ -165,3 +159,4 @@ int cpp_main(int argc, char* argv[]) + diff --git a/test/add_const_test.cpp b/test/add_const_test.cpp index 7f1e81e..385a82e 100644 --- a/test/add_const_test.cpp +++ b/test/add_const_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/add_pointer_test.cpp b/test/add_pointer_test.cpp index 0f2e3a2..6305c99 100644 --- a/test/add_pointer_test.cpp +++ b/test/add_pointer_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -34,3 +34,4 @@ TT_TEST_END + diff --git a/test/add_reference_test.cpp b/test/add_reference_test.cpp index 0c34db2..e898ed0 100644 --- a/test/add_reference_test.cpp +++ b/test/add_reference_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/add_volatile_test.cpp b/test/add_volatile_test.cpp index 250b32d..0614398 100644 --- a/test/add_volatile_test.cpp +++ b/test/add_volatile_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/alignment_of_test.cpp b/test/alignment_of_test.cpp index 05648a1..535d4c9 100644 --- a/test/alignment_of_test.cpp +++ b/test/alignment_of_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -64,3 +64,4 @@ TT_TEST_END + diff --git a/test/check_integral_constant.hpp b/test/check_integral_constant.hpp index abf8ab4..ab70d07 100644 --- a/test/check_integral_constant.hpp +++ b/test/check_integral_constant.hpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_CHECK_INTEGRAL_CONSTANT_HPP #define BOOST_CHECK_INTEGRAL_CONSTANT_HPP @@ -70,3 +70,4 @@ namespace boost{ + diff --git a/test/check_type.hpp b/test/check_type.hpp index 44920ee..fefbd08 100644 --- a/test/check_type.hpp +++ b/test/check_type.hpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_CHECK_TYPE_HPP #define BOOST_CHECK_TYPE_HPP @@ -38,3 +38,4 @@ do{\ #endif + diff --git a/test/function_traits_test.cpp b/test/function_traits_test.cpp index 43e3a31..61a31f8 100644 --- a/test/function_traits_test.cpp +++ b/test/function_traits_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -61,3 +61,4 @@ TT_TEST_END + diff --git a/test/has_nothrow_assign_test.cpp b/test/has_nothrow_assign_test.cpp index 092dd4f..590342f 100644 --- a/test/has_nothrow_assign_test.cpp +++ b/test/has_nothrow_assign_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -156,3 +156,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_assign::value, false) TT_TEST_END + diff --git a/test/has_nothrow_constr_test.cpp b/test/has_nothrow_constr_test.cpp index d94bcd0..b055451 100644 --- a/test/has_nothrow_constr_test.cpp +++ b/test/has_nothrow_constr_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -156,3 +156,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor::value, f TT_TEST_END + diff --git a/test/has_nothrow_copy_test.cpp b/test/has_nothrow_copy_test.cpp index 8a71ca2..3206d23 100644 --- a/test/has_nothrow_copy_test.cpp +++ b/test/has_nothrow_copy_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -156,3 +156,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_copy::value, false); TT_TEST_END + diff --git a/test/has_trivial_assign_test.cpp b/test/has_trivial_assign_test.cpp index a1197dc..bb4bfbc 100644 --- a/test/has_trivial_assign_test.cpp +++ b/test/has_trivial_assign_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -156,3 +156,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_trivial_assign::value, false) TT_TEST_END + diff --git a/test/has_trivial_constr_test.cpp b/test/has_trivial_constr_test.cpp index 132ec68..1a91e24 100644 --- a/test/has_trivial_constr_test.cpp +++ b/test/has_trivial_constr_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -161,3 +161,4 @@ TT_TEST_END + diff --git a/test/has_trivial_copy_test.cpp b/test/has_trivial_copy_test.cpp index 74ed927..5dfcc1f 100644 --- a/test/has_trivial_copy_test.cpp +++ b/test/has_trivial_copy_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -161,3 +161,4 @@ TT_TEST_END + diff --git a/test/has_trivial_destructor_test.cpp b/test/has_trivial_destructor_test.cpp index e7a2f54..653f348 100644 --- a/test/has_trivial_destructor_test.cpp +++ b/test/has_trivial_destructor_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -162,3 +162,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_trivial_destructor::value, fa TT_TEST_END + diff --git a/test/init.cpp b/test/init.cpp index d254a0f..113ab0c 100644 --- a/test/init.cpp +++ b/test/init.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" @@ -20,3 +20,4 @@ boost::unit_test_framework::test_suite* init_unit_test_suite ( int , char* [] ) } + diff --git a/test/is_arithmetic_test.cpp b/test/is_arithmetic_test.cpp index 4500cbc..28a8d86 100644 --- a/test/is_arithmetic_test.cpp +++ b/test/is_arithmetic_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -145,3 +145,4 @@ TT_TEST_END + diff --git a/test/is_array_test.cpp b/test/is_array_test.cpp index dbd4d2d..5aa70fa 100644 --- a/test/is_array_test.cpp +++ b/test/is_array_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -45,3 +45,4 @@ TT_TEST_END + diff --git a/test/is_base_and_derived_test.cpp b/test/is_base_and_derived_test.cpp index 24d155d..d0fe016 100644 --- a/test/is_base_and_derived_test.cpp +++ b/test/is_base_and_derived_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" @@ -42,3 +42,4 @@ TT_TEST_END + diff --git a/test/is_class_test.cpp b/test/is_class_test.cpp index 261a296..42ea8ba 100644 --- a/test/is_class_test.cpp +++ b/test/is_class_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -58,3 +58,4 @@ TT_TEST_END + diff --git a/test/is_compound_test.cpp b/test/is_compound_test.cpp index 9eae4ea..adbfabb 100644 --- a/test/is_compound_test.cpp +++ b/test/is_compound_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -24,3 +24,4 @@ TT_TEST_END + diff --git a/test/is_const_test.cpp b/test/is_const_test.cpp index f3d1d3b..4862fda 100644 --- a/test/is_const_test.cpp +++ b/test/is_const_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -31,3 +31,4 @@ TT_TEST_END + diff --git a/test/is_convertible_test.cpp b/test/is_convertible_test.cpp index 5a7a0e8..fa45f7f 100644 --- a/test/is_convertible_test.cpp +++ b/test/is_convertible_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -102,3 +102,4 @@ TT_TEST_END + diff --git a/test/is_empty_test.cpp b/test/is_empty_test.cpp index 5e579b7..b673eb2 100644 --- a/test/is_empty_test.cpp +++ b/test/is_empty_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -44,3 +44,4 @@ TT_TEST_END + diff --git a/test/is_enum_test.cpp b/test/is_enum_test.cpp index 5d9eabc..dd7a8ec 100644 --- a/test/is_enum_test.cpp +++ b/test/is_enum_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -26,3 +26,4 @@ TT_TEST_END + diff --git a/test/is_float_test.cpp b/test/is_float_test.cpp index a3959e5..7849151 100644 --- a/test/is_float_test.cpp +++ b/test/is_float_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -57,3 +57,4 @@ TT_TEST_END + diff --git a/test/is_function_test.cpp b/test/is_function_test.cpp index 4e3113d..0ada133 100644 --- a/test/is_function_test.cpp +++ b/test/is_function_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -39,3 +39,4 @@ TT_TEST_END + diff --git a/test/is_fundamental_test.cpp b/test/is_fundamental_test.cpp index 71dbb44..6cbd841 100644 --- a/test/is_fundamental_test.cpp +++ b/test/is_fundamental_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -149,3 +149,4 @@ TT_TEST_END + diff --git a/test/is_integral_test.cpp b/test/is_integral_test.cpp index e44291b..7f03c54 100644 --- a/test/is_integral_test.cpp +++ b/test/is_integral_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -136,3 +136,4 @@ TT_TEST_END + diff --git a/test/is_member_func_test.cpp b/test/is_member_func_test.cpp index 455355a..70a1b33 100644 --- a/test/is_member_func_test.cpp +++ b/test/is_member_func_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -33,3 +33,4 @@ TT_TEST_END + diff --git a/test/is_member_pointer_test.cpp b/test/is_member_pointer_test.cpp index b00f18f..2116c53 100644 --- a/test/is_member_pointer_test.cpp +++ b/test/is_member_pointer_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -33,3 +33,4 @@ TT_TEST_END + diff --git a/test/is_object_test.cpp b/test/is_object_test.cpp index 46970dc..b067950 100644 --- a/test/is_object_test.cpp +++ b/test/is_object_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -28,3 +28,4 @@ TT_TEST_END + diff --git a/test/is_pod_test.cpp b/test/is_pod_test.cpp index a274ceb..c658d3d 100644 --- a/test/is_pod_test.cpp +++ b/test/is_pod_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -163,3 +163,4 @@ TT_TEST_END + diff --git a/test/is_pointer_test.cpp b/test/is_pointer_test.cpp index 02c44d6..659fd5e 100644 --- a/test/is_pointer_test.cpp +++ b/test/is_pointer_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -55,3 +55,4 @@ TT_TEST_END + diff --git a/test/is_polymorphic_test.cpp b/test/is_polymorphic_test.cpp index dffdc1f..2d0795a 100644 --- a/test/is_polymorphic_test.cpp +++ b/test/is_polymorphic_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -81,3 +81,4 @@ TT_TEST_END + diff --git a/test/is_reference_test.cpp b/test/is_reference_test.cpp index a6e8a87..7db7056 100644 --- a/test/is_reference_test.cpp +++ b/test/is_reference_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -40,3 +40,4 @@ TT_TEST_END + diff --git a/test/is_same_test.cpp b/test/is_same_test.cpp index 53c47b5..9732a26 100644 --- a/test/is_same_test.cpp +++ b/test/is_same_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -29,3 +29,4 @@ TT_TEST_END + diff --git a/test/is_scalar_test.cpp b/test/is_scalar_test.cpp index 70e0650..16c68a9 100644 --- a/test/is_scalar_test.cpp +++ b/test/is_scalar_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -150,3 +150,4 @@ TT_TEST_END + diff --git a/test/is_stateless_test.cpp b/test/is_stateless_test.cpp index 7d65159..95f2c75 100644 --- a/test/is_stateless_test.cpp +++ b/test/is_stateless_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -158,3 +158,4 @@ TT_TEST_END + diff --git a/test/is_union_test.cpp b/test/is_union_test.cpp index 7230c37..f63183b 100644 --- a/test/is_union_test.cpp +++ b/test/is_union_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -69,3 +69,4 @@ TT_TEST_END + diff --git a/test/is_void_test.cpp b/test/is_void_test.cpp index f3fd1f3..0f83c1b 100644 --- a/test/is_void_test.cpp +++ b/test/is_void_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -33,3 +33,4 @@ TT_TEST_END + diff --git a/test/is_volatile_test.cpp b/test/is_volatile_test.cpp index 31a0727..67fe60a 100644 --- a/test/is_volatile_test.cpp +++ b/test/is_volatile_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -29,3 +29,4 @@ TT_TEST_END + diff --git a/test/remove_bounds_test.cpp b/test/remove_bounds_test.cpp index 788fa34..a8da4d1 100644 --- a/test/remove_bounds_test.cpp +++ b/test/remove_bounds_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/remove_const_test.cpp b/test/remove_const_test.cpp index 595928d..0186880 100644 --- a/test/remove_const_test.cpp +++ b/test/remove_const_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -52,3 +52,4 @@ TT_TEST_END + diff --git a/test/remove_cv_test.cpp b/test/remove_cv_test.cpp index 1bc5725..66d9b95 100644 --- a/test/remove_cv_test.cpp +++ b/test/remove_cv_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -54,3 +54,4 @@ TT_TEST_END + diff --git a/test/remove_pointer_test.cpp b/test/remove_pointer_test.cpp index 8dc7e84..20123b3 100644 --- a/test/remove_pointer_test.cpp +++ b/test/remove_pointer_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/remove_reference_test.cpp b/test/remove_reference_test.cpp index 73c208a..a043929 100644 --- a/test/remove_reference_test.cpp +++ b/test/remove_reference_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -46,3 +46,4 @@ TT_TEST_END + diff --git a/test/remove_volatile_test.cpp b/test/remove_volatile_test.cpp index f1509b3..2b71e77 100644 --- a/test/remove_volatile_test.cpp +++ b/test/remove_volatile_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -54,3 +54,4 @@ TT_TEST_END + diff --git a/test/test.hpp b/test/test.hpp index 9f293f8..fa14bb4 100644 --- a/test/test.hpp +++ b/test/test.hpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef TT_TEST_HPP #define TT_TEST_HPP @@ -265,3 +265,4 @@ typedef void foo4_t(int, bool, int*, int[], int, int, int, int, int); #endif + diff --git a/test/tricky_abstract_type_test.cpp b/test/tricky_abstract_type_test.cpp index 01d2c9f..e3bbc57 100644 --- a/test/tricky_abstract_type_test.cpp +++ b/test/tricky_abstract_type_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -22,3 +22,4 @@ TT_TEST_END + diff --git a/test/tricky_add_pointer_test.cpp b/test/tricky_add_pointer_test.cpp index 8d87a3b..fade740 100644 --- a/test/tricky_add_pointer_test.cpp +++ b/test/tricky_add_pointer_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2002. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_type.hpp" @@ -33,3 +33,4 @@ TT_TEST_END + diff --git a/test/tricky_function_type_test.cpp b/test/tricky_function_type_test.cpp index 8a1bc12..186e132 100644 --- a/test/tricky_function_type_test.cpp +++ b/test/tricky_function_type_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2002. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -85,3 +85,4 @@ TT_TEST_END + diff --git a/test/tricky_incomplete_type_test.cpp b/test/tricky_incomplete_type_test.cpp index 33ca03a..857d9f6 100644 --- a/test/tricky_incomplete_type_test.cpp +++ b/test/tricky_incomplete_type_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -25,3 +25,4 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_scalar::value, false); TT_TEST_END + diff --git a/test/tricky_partial_spec_test.cpp b/test/tricky_partial_spec_test.cpp index 746f173..d60de31 100644 --- a/test/tricky_partial_spec_test.cpp +++ b/test/tricky_partial_spec_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -80,3 +80,4 @@ TT_TEST_END + diff --git a/test/type_with_alignment_test.cpp b/test/type_with_alignment_test.cpp index 57edcb1..37359d5 100644 --- a/test/type_with_alignment_test.cpp +++ b/test/type_with_alignment_test.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" @@ -208,3 +208,4 @@ TT_TEST_END + diff --git a/tools/specialisations.cpp b/tools/specialisations.cpp index fd964c5..f276bef 100644 --- a/tools/specialisations.cpp +++ b/tools/specialisations.cpp @@ -1,8 +1,8 @@ -// (C) Copyright John Maddock 2000. Permission to copy, use, modify, sell and -// distribute this software is granted provided this copyright notice appears -// 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. +// (C) Copyright John Maddock 2000. +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Simple program to output some template specialisations for the type_traits library. @@ -119,3 +119,4 @@ int main() return 0; } +