diff --git a/static_assert_example_1.cpp b/static_assert_example_1.cpp index 2c7bdfd..f5b9366 100644 --- a/static_assert_example_1.cpp +++ b/static_assert_example_1.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -30,3 +29,4 @@ int main() } + diff --git a/static_assert_example_2.cpp b/static_assert_example_2.cpp index 7254dc7..9845727 100644 --- a/static_assert_example_2.cpp +++ b/static_assert_example_2.cpp @@ -1,8 +1,7 @@ // (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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -38,3 +37,4 @@ int main() + diff --git a/static_assert_example_3.cpp b/static_assert_example_3.cpp index 842e39c..88fa49e 100644 --- a/static_assert_example_3.cpp +++ b/static_assert_example_3.cpp @@ -1,8 +1,7 @@ // (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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -30,3 +29,4 @@ int main() { return 0; } + diff --git a/static_assert_test.cpp b/static_assert_test.cpp index 065bf7b..dc7dbed 100644 --- a/static_assert_test.cpp +++ b/static_assert_test.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -84,3 +83,4 @@ int main() + diff --git a/static_assert_test_fail_1.cpp b/static_assert_test_fail_1.cpp index a80fdfe..840b9db 100644 --- a/static_assert_test_fail_1.cpp +++ b/static_assert_test_fail_1.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -19,3 +18,4 @@ BOOST_STATIC_ASSERT(sizeof(int) == sizeof(char)); // will not compile + diff --git a/static_assert_test_fail_2.cpp b/static_assert_test_fail_2.cpp index 45d292d..e62d389 100644 --- a/static_assert_test_fail_2.cpp +++ b/static_assert_test_fail_2.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -21,3 +20,4 @@ void f() + diff --git a/static_assert_test_fail_3.cpp b/static_assert_test_fail_3.cpp index 4031e27..1566b20 100644 --- a/static_assert_test_fail_3.cpp +++ b/static_assert_test_fail_3.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -36,3 +35,4 @@ struct Bob + diff --git a/static_assert_test_fail_4.cpp b/static_assert_test_fail_4.cpp index e2506c2..ea17d2d 100644 --- a/static_assert_test_fail_4.cpp +++ b/static_assert_test_fail_4.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -36,3 +35,4 @@ struct Bob + diff --git a/static_assert_test_fail_5.cpp b/static_assert_test_fail_5.cpp index afef667..287d81a 100644 --- a/static_assert_test_fail_5.cpp +++ b/static_assert_test_fail_5.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -37,3 +36,4 @@ Bill b; + diff --git a/static_assert_test_fail_6.cpp b/static_assert_test_fail_6.cpp index 31a34bc..2e2c899 100644 --- a/static_assert_test_fail_6.cpp +++ b/static_assert_test_fail_6.cpp @@ -1,8 +1,7 @@ // (C) Copyright Steve Cleary & 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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -44,3 +43,4 @@ void foo() + diff --git a/static_assert_test_fail_7.cpp b/static_assert_test_fail_7.cpp index 5f8ba3e..80a9ef2 100644 --- a/static_assert_test_fail_7.cpp +++ b/static_assert_test_fail_7.cpp @@ -1,8 +1,7 @@ // (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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -29,3 +28,4 @@ int main() { return 0; } + diff --git a/static_assert_test_fail_8.cpp b/static_assert_test_fail_8.cpp index 83107ae..5903a04 100644 --- a/static_assert_test_fail_8.cpp +++ b/static_assert_test_fail_8.cpp @@ -1,8 +1,7 @@ // (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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -42,3 +41,4 @@ int main() + diff --git a/static_assert_test_fail_9.cpp b/static_assert_test_fail_9.cpp index 041e70d..9a81445 100644 --- a/static_assert_test_fail_9.cpp +++ b/static_assert_test_fail_9.cpp @@ -1,8 +1,7 @@ // (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. +// Use, modification and distribution is subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version including documentation. @@ -30,3 +29,4 @@ int main() { return 0; } +