From 6c67b3bbc0174444bd2d7e9c740d900d17f1c51b Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 26 Oct 2002 11:35:35 +0000 Subject: [PATCH] Added copyright declarations. [SVN r15986] --- test/add_const_test.cpp | 6 ++++++ test/add_pointer_test.cpp | 6 ++++++ test/add_reference_test.cpp | 6 ++++++ test/add_volatile_test.cpp | 6 ++++++ test/alignment_of_test.cpp | 6 ++++++ test/check_integral_constant.hpp | 9 ++++++++- test/check_type.hpp | 6 ++++++ test/function_traits_test.cpp | 6 ++++++ test/has_nothrow_assign_test.cpp | 7 +++++++ test/has_nothrow_constructor_test.cpp | 7 +++++++ test/has_nothrow_copy_test.cpp | 7 +++++++ test/has_trivial_assign_test.cpp | 7 +++++++ test/has_trivial_constructor_test.cpp | 6 ++++++ test/has_trivial_copy_test.cpp | 6 ++++++ test/has_trivial_destructor_test.cpp | 7 +++++++ test/init.cpp | 6 ++++++ test/is_arithmetic_test.cpp | 6 ++++++ test/is_array_test.cpp | 6 ++++++ test/is_base_and_derived_test.cpp | 6 ++++++ test/is_class_test.cpp | 6 ++++++ test/is_compound_test.cpp | 6 ++++++ test/is_const_test.cpp | 6 ++++++ test/is_convertible_test.cpp | 6 ++++++ test/is_empty_test.cpp | 6 ++++++ test/is_enum_test.cpp | 6 ++++++ test/is_float_test.cpp | 6 ++++++ test/is_function_test.cpp | 6 ++++++ test/is_fundamental_test.cpp | 6 ++++++ test/is_integral_test.cpp | 6 ++++++ test/is_member_function_pointer_test.cpp | 6 ++++++ test/is_member_pointer_test.cpp | 6 ++++++ test/is_object_test.cpp | 6 ++++++ test/is_pod_test.cpp | 6 ++++++ test/is_pointer_test.cpp | 6 ++++++ test/is_reference_test.cpp | 6 ++++++ test/is_same_test.cpp | 6 ++++++ test/is_scalar_test.cpp | 6 ++++++ test/is_union_test.cpp | 6 ++++++ test/is_void_test.cpp | 6 ++++++ test/is_volatile_test.cpp | 6 ++++++ test/remove_bounds_test.cpp | 6 ++++++ test/remove_const_test.cpp | 6 ++++++ test/remove_cv_test.cpp | 6 ++++++ test/remove_pointer_test.cpp | 6 ++++++ test/remove_reference_test.cpp | 6 ++++++ test/remove_volatile_test.cpp | 6 ++++++ test/test.hpp | 7 ++++++- test/tricky_abstract_type_test.cpp | 6 ++++++ test/tricky_add_pointer_test.cpp | 6 ++++++ test/tricky_function_type_test.cpp | 6 ++++++ test/tricky_incomplete_type_test.cpp | 6 ++++++ test/tricky_partial_specialization_test.cpp | 6 ++++++ test/type_with_alignment_test.cpp | 6 ++++++ 53 files changed, 325 insertions(+), 2 deletions(-) diff --git a/test/add_const_test.cpp b/test/add_const_test.cpp index 83e46a4..7f1e81e 100644 --- a/test/add_const_test.cpp +++ b/test/add_const_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_type.hpp" #include TYPE_TRANSFORM(add_const) @@ -40,3 +45,4 @@ TT_TEST_END + diff --git a/test/add_pointer_test.cpp b/test/add_pointer_test.cpp index 8c04258..0f2e3a2 100644 --- a/test/add_pointer_test.cpp +++ b/test/add_pointer_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_type.hpp" #include TYPE_TRANSFORM(add_pointer) @@ -28,3 +33,4 @@ TT_TEST_END + diff --git a/test/add_reference_test.cpp b/test/add_reference_test.cpp index 0220e6f..0c34db2 100644 --- a/test/add_reference_test.cpp +++ b/test/add_reference_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_type.hpp" #include TYPE_TRANSFORM(add_reference) @@ -40,3 +45,4 @@ TT_TEST_END + diff --git a/test/add_volatile_test.cpp b/test/add_volatile_test.cpp index 2e69de5..250b32d 100644 --- a/test/add_volatile_test.cpp +++ b/test/add_volatile_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_type.hpp" #include TYPE_TRANSFORM(add_volatile) @@ -40,3 +45,4 @@ TT_TEST_END + diff --git a/test/alignment_of_test.cpp b/test/alignment_of_test.cpp index 2292ad7..05648a1 100644 --- a/test/alignment_of_test.cpp +++ b/test/alignment_of_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(alignment_of) @@ -58,3 +63,4 @@ TT_TEST_END + diff --git a/test/check_integral_constant.hpp b/test/check_integral_constant.hpp index c787d4b..f812774 100644 --- a/test/check_integral_constant.hpp +++ b/test/check_integral_constant.hpp @@ -1,4 +1,9 @@ +// (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. + #ifndef BOOST_CHECK_INTEGRAL_CONSTANT_HPP #define BOOST_CHECK_INTEGRAL_CONSTANT_HPP @@ -60,4 +65,6 @@ namespace boost{ }//boost -#endif \ No newline at end of file +#endif + + diff --git a/test/check_type.hpp b/test/check_type.hpp index 9874826..0f21574 100644 --- a/test/check_type.hpp +++ b/test/check_type.hpp @@ -1,4 +1,9 @@ +// (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. + #ifndef BOOST_CHECK_TYPE_HPP #define BOOST_CHECK_TYPE_HPP @@ -32,3 +37,4 @@ do{\ }while(0) #endif + diff --git a/test/function_traits_test.cpp b/test/function_traits_test.cpp index 89680c0..43e3a31 100644 --- a/test/function_traits_test.cpp +++ b/test/function_traits_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_type.hpp" #include "check_integral_constant.hpp" @@ -55,3 +60,4 @@ TT_TEST_END + diff --git a/test/has_nothrow_assign_test.cpp b/test/has_nothrow_assign_test.cpp index a2ca055..6849672 100644 --- a/test/has_nothrow_assign_test.cpp +++ b/test/has_nothrow_assign_test.cpp @@ -1,3 +1,9 @@ + +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_nothrow_assign) @@ -147,3 +153,4 @@ BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_assign TT_TEST_END + diff --git a/test/has_nothrow_constructor_test.cpp b/test/has_nothrow_constructor_test.cpp index 5b6a20f..b4fce52 100644 --- a/test/has_nothrow_constructor_test.cpp +++ b/test/has_nothrow_constructor_test.cpp @@ -1,3 +1,9 @@ + +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_nothrow_constructor) @@ -147,3 +153,4 @@ BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor:: TT_TEST_END + diff --git a/test/has_trivial_assign_test.cpp b/test/has_trivial_assign_test.cpp index 5e49e22..d959b57 100644 --- a/test/has_trivial_assign_test.cpp +++ b/test/has_trivial_assign_test.cpp @@ -1,3 +1,9 @@ + +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_trivial_assign) @@ -147,3 +153,4 @@ BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_trivial_assign TT_TEST_END + diff --git a/test/has_trivial_constructor_test.cpp b/test/has_trivial_constructor_test.cpp index e98811b..0849616 100644 --- a/test/has_trivial_constructor_test.cpp +++ b/test/has_trivial_constructor_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_trivial_constructor) @@ -153,3 +158,4 @@ TT_TEST_END + diff --git a/test/has_trivial_copy_test.cpp b/test/has_trivial_copy_test.cpp index ee29084..25a05b1 100644 --- a/test/has_trivial_copy_test.cpp +++ b/test/has_trivial_copy_test.cpp @@ -1,4 +1,9 @@ +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_trivial_copy) @@ -153,3 +158,4 @@ TT_TEST_END + diff --git a/test/has_trivial_destructor_test.cpp b/test/has_trivial_destructor_test.cpp index bb28f0e..79546d7 100644 --- a/test/has_trivial_destructor_test.cpp +++ b/test/has_trivial_destructor_test.cpp @@ -1,3 +1,9 @@ + +// (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. + #include "test.hpp" #include "check_integral_constant.hpp" #include TYPE_TRAITS(has_trivial_destructor) @@ -147,3 +153,4 @@ BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_trivial_destructor