From 902537345a72cab9063e5eaa1d7f2e2df5cf1864 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sun, 4 Jan 2026 11:21:08 +0300 Subject: [PATCH] Update copyright years --- build/has_addr2line.cpp | 2 +- build/has_backtrace.cpp | 2 +- build/has_windbg.cpp | 2 +- build/has_windbg_cached.cpp | 2 +- doc/Jamfile.v2 | 2 +- example/assert_handler.cpp | 2 +- example/debug_function.cpp | 2 +- example/terminate_handler.cpp | 2 +- example/throwing_st.cpp | 2 +- example/trace_addresses.cpp | 2 +- example/user_config.cpp | 2 +- example/user_config.hpp | 2 +- include/boost/stacktrace.hpp | 2 +- include/boost/stacktrace/detail/addr2line_impls.hpp | 2 +- include/boost/stacktrace/detail/addr_base.hpp | 2 +- include/boost/stacktrace/detail/addr_base_msvc.hpp | 2 +- include/boost/stacktrace/detail/collect_msvc.ipp | 2 +- include/boost/stacktrace/detail/collect_noop.ipp | 2 +- include/boost/stacktrace/detail/collect_unwind.ipp | 2 +- include/boost/stacktrace/detail/frame_decl.hpp | 2 +- include/boost/stacktrace/detail/frame_msvc.ipp | 2 +- include/boost/stacktrace/detail/frame_noop.ipp | 2 +- include/boost/stacktrace/detail/frame_unwind.ipp | 2 +- include/boost/stacktrace/detail/libbacktrace_impls.hpp | 2 +- include/boost/stacktrace/detail/location_from_symbol.hpp | 2 +- include/boost/stacktrace/detail/pop_options.h | 2 +- include/boost/stacktrace/detail/push_options.h | 2 +- include/boost/stacktrace/detail/safe_dump_noop.ipp | 2 +- include/boost/stacktrace/detail/safe_dump_posix.ipp | 2 +- include/boost/stacktrace/detail/safe_dump_win.ipp | 2 +- include/boost/stacktrace/detail/to_dec_array.hpp | 2 +- include/boost/stacktrace/detail/to_hex_array.hpp | 2 +- include/boost/stacktrace/detail/try_dec_convert.hpp | 2 +- include/boost/stacktrace/detail/unwind_base_impls.hpp | 2 +- include/boost/stacktrace/detail/void_ptr_cast.hpp | 2 +- include/boost/stacktrace/frame.hpp | 2 +- include/boost/stacktrace/safe_dump_to.hpp | 2 +- include/boost/stacktrace/stacktrace.hpp | 2 +- include/boost/stacktrace/stacktrace_fwd.hpp | 2 +- include/boost/stacktrace/this_thread.hpp | 2 +- index.html | 4 ++-- src/addr2line.cpp | 2 +- src/backtrace.cpp | 2 +- src/basic.cpp | 2 +- src/exception_headers.h | 2 +- src/from_exception.cpp | 2 +- src/noop.cpp | 2 +- src/windbg.cpp | 2 +- src/windbg_cached.cpp | 2 +- test/appveyor.yml | 2 +- test/cmake_install_test/CMakeLists.txt | 2 ++ test/cmake_install_test/main.cpp | 3 ++- test/test.cpp | 2 +- test/test_from_exception.cpp | 2 +- test/test_from_exception_none.cpp | 2 +- test/test_impl.cpp | 2 +- test/test_impl.hpp | 2 +- test/test_noop.cpp | 2 +- test/test_num_conv.cpp | 2 +- test/test_trivial.cpp | 2 +- test/thread_safety_checking.cpp | 2 +- 61 files changed, 64 insertions(+), 61 deletions(-) diff --git a/build/has_addr2line.cpp b/build/has_addr2line.cpp index 1c53334..11a0a18 100644 --- a/build/has_addr2line.cpp +++ b/build/has_addr2line.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/build/has_backtrace.cpp b/build/has_backtrace.cpp index aa5e35d..99e9275 100644 --- a/build/has_backtrace.cpp +++ b/build/has_backtrace.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/build/has_windbg.cpp b/build/has_windbg.cpp index da01648..e7dcf36 100644 --- a/build/has_windbg.cpp +++ b/build/has_windbg.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2020. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/build/has_windbg_cached.cpp b/build/has_windbg_cached.cpp index 163ce98..377d5ae 100644 --- a/build/has_windbg_cached.cpp +++ b/build/has_windbg_cached.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2020. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 9db6984..21cf930 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -1,4 +1,4 @@ -# Copyright Antony Polukhin, 2016-2025. +# Copyright Antony Polukhin, 2016-2026. # 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) diff --git a/example/assert_handler.cpp b/example/assert_handler.cpp index 01b6dd5..eb891fb 100644 --- a/example/assert_handler.cpp +++ b/example/assert_handler.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/debug_function.cpp b/example/debug_function.cpp index 9596b16..4bc473e 100644 --- a/example/debug_function.cpp +++ b/example/debug_function.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/terminate_handler.cpp b/example/terminate_handler.cpp index aae9c2e..e5320ea 100644 --- a/example/terminate_handler.cpp +++ b/example/terminate_handler.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/throwing_st.cpp b/example/throwing_st.cpp index 4c19302..e0fd8e9 100644 --- a/example/throwing_st.cpp +++ b/example/throwing_st.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/trace_addresses.cpp b/example/trace_addresses.cpp index b6952a7..1037fa0 100644 --- a/example/trace_addresses.cpp +++ b/example/trace_addresses.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/user_config.cpp b/example/user_config.cpp index 9990018..4601964 100644 --- a/example/user_config.cpp +++ b/example/user_config.cpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/example/user_config.hpp b/example/user_config.hpp index 962f01f..4dbe673 100644 --- a/example/user_config.hpp +++ b/example/user_config.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace.hpp b/include/boost/stacktrace.hpp index 2992b9a..697102d 100644 --- a/include/boost/stacktrace.hpp +++ b/include/boost/stacktrace.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/addr2line_impls.hpp b/include/boost/stacktrace/detail/addr2line_impls.hpp index 67b9b31..255ea7f 100644 --- a/include/boost/stacktrace/detail/addr2line_impls.hpp +++ b/include/boost/stacktrace/detail/addr2line_impls.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/addr_base.hpp b/include/boost/stacktrace/detail/addr_base.hpp index 933a002..b16ac2b 100644 --- a/include/boost/stacktrace/detail/addr_base.hpp +++ b/include/boost/stacktrace/detail/addr_base.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/addr_base_msvc.hpp b/include/boost/stacktrace/detail/addr_base_msvc.hpp index 5c21608..7d42987 100644 --- a/include/boost/stacktrace/detail/addr_base_msvc.hpp +++ b/include/boost/stacktrace/detail/addr_base_msvc.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/collect_msvc.ipp b/include/boost/stacktrace/detail/collect_msvc.ipp index cb0cb44..879d9d7 100644 --- a/include/boost/stacktrace/detail/collect_msvc.ipp +++ b/include/boost/stacktrace/detail/collect_msvc.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/collect_noop.ipp b/include/boost/stacktrace/detail/collect_noop.ipp index e1d02a9..5af1ccc 100644 --- a/include/boost/stacktrace/detail/collect_noop.ipp +++ b/include/boost/stacktrace/detail/collect_noop.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/collect_unwind.ipp b/include/boost/stacktrace/detail/collect_unwind.ipp index 3655e57..b738e62 100644 --- a/include/boost/stacktrace/detail/collect_unwind.ipp +++ b/include/boost/stacktrace/detail/collect_unwind.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/frame_decl.hpp b/include/boost/stacktrace/detail/frame_decl.hpp index 28e2ed0..ae5d91e 100644 --- a/include/boost/stacktrace/detail/frame_decl.hpp +++ b/include/boost/stacktrace/detail/frame_decl.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/frame_msvc.ipp b/include/boost/stacktrace/detail/frame_msvc.ipp index d3fddf7..4d78276 100644 --- a/include/boost/stacktrace/detail/frame_msvc.ipp +++ b/include/boost/stacktrace/detail/frame_msvc.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/frame_noop.ipp b/include/boost/stacktrace/detail/frame_noop.ipp index efd4980..d517cfb 100644 --- a/include/boost/stacktrace/detail/frame_noop.ipp +++ b/include/boost/stacktrace/detail/frame_noop.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/frame_unwind.ipp b/include/boost/stacktrace/detail/frame_unwind.ipp index d9be37d..5a7cbea 100644 --- a/include/boost/stacktrace/detail/frame_unwind.ipp +++ b/include/boost/stacktrace/detail/frame_unwind.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/libbacktrace_impls.hpp b/include/boost/stacktrace/detail/libbacktrace_impls.hpp index 5415c97..bde53f2 100644 --- a/include/boost/stacktrace/detail/libbacktrace_impls.hpp +++ b/include/boost/stacktrace/detail/libbacktrace_impls.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/location_from_symbol.hpp b/include/boost/stacktrace/detail/location_from_symbol.hpp index 23c8092..ea88c3e 100644 --- a/include/boost/stacktrace/detail/location_from_symbol.hpp +++ b/include/boost/stacktrace/detail/location_from_symbol.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/pop_options.h b/include/boost/stacktrace/detail/pop_options.h index 9131600..a880b93 100644 --- a/include/boost/stacktrace/detail/pop_options.h +++ b/include/boost/stacktrace/detail/pop_options.h @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/push_options.h b/include/boost/stacktrace/detail/push_options.h index 4f253b6..35a9b40 100644 --- a/include/boost/stacktrace/detail/push_options.h +++ b/include/boost/stacktrace/detail/push_options.h @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/safe_dump_noop.ipp b/include/boost/stacktrace/detail/safe_dump_noop.ipp index d878d09..f0e8c3d 100644 --- a/include/boost/stacktrace/detail/safe_dump_noop.ipp +++ b/include/boost/stacktrace/detail/safe_dump_noop.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/safe_dump_posix.ipp b/include/boost/stacktrace/detail/safe_dump_posix.ipp index 5f18dc1..a5cc86e 100644 --- a/include/boost/stacktrace/detail/safe_dump_posix.ipp +++ b/include/boost/stacktrace/detail/safe_dump_posix.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/safe_dump_win.ipp b/include/boost/stacktrace/detail/safe_dump_win.ipp index 1decf2c..9b998ce 100644 --- a/include/boost/stacktrace/detail/safe_dump_win.ipp +++ b/include/boost/stacktrace/detail/safe_dump_win.ipp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/to_dec_array.hpp b/include/boost/stacktrace/detail/to_dec_array.hpp index 0ecf20f..dc5372e 100644 --- a/include/boost/stacktrace/detail/to_dec_array.hpp +++ b/include/boost/stacktrace/detail/to_dec_array.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/to_hex_array.hpp b/include/boost/stacktrace/detail/to_hex_array.hpp index 13792e3..ee9a6b1 100644 --- a/include/boost/stacktrace/detail/to_hex_array.hpp +++ b/include/boost/stacktrace/detail/to_hex_array.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/try_dec_convert.hpp b/include/boost/stacktrace/detail/try_dec_convert.hpp index fe841f5..4d5f247 100644 --- a/include/boost/stacktrace/detail/try_dec_convert.hpp +++ b/include/boost/stacktrace/detail/try_dec_convert.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/unwind_base_impls.hpp b/include/boost/stacktrace/detail/unwind_base_impls.hpp index 9c4ab15..21e44cb 100644 --- a/include/boost/stacktrace/detail/unwind_base_impls.hpp +++ b/include/boost/stacktrace/detail/unwind_base_impls.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/detail/void_ptr_cast.hpp b/include/boost/stacktrace/detail/void_ptr_cast.hpp index f8490e8..f275ecf 100644 --- a/include/boost/stacktrace/detail/void_ptr_cast.hpp +++ b/include/boost/stacktrace/detail/void_ptr_cast.hpp @@ -1,5 +1,5 @@ // Copyright 2014 Renato Tegon Forti, Antony Polukhin. -// Copyright Antony Polukhin, 2015-2025. +// Copyright Antony Polukhin, 2015-2026. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt diff --git a/include/boost/stacktrace/frame.hpp b/include/boost/stacktrace/frame.hpp index 52c03ee..1c126ef 100644 --- a/include/boost/stacktrace/frame.hpp +++ b/include/boost/stacktrace/frame.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/safe_dump_to.hpp b/include/boost/stacktrace/safe_dump_to.hpp index 779b1a0..09eb010 100644 --- a/include/boost/stacktrace/safe_dump_to.hpp +++ b/include/boost/stacktrace/safe_dump_to.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/stacktrace.hpp b/include/boost/stacktrace/stacktrace.hpp index a6484f5..f0000dd 100644 --- a/include/boost/stacktrace/stacktrace.hpp +++ b/include/boost/stacktrace/stacktrace.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/stacktrace_fwd.hpp b/include/boost/stacktrace/stacktrace_fwd.hpp index d83b269..6b0ee28 100644 --- a/include/boost/stacktrace/stacktrace_fwd.hpp +++ b/include/boost/stacktrace/stacktrace_fwd.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2016-2025. +// Copyright Antony Polukhin, 2016-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/stacktrace/this_thread.hpp b/include/boost/stacktrace/this_thread.hpp index 6ebf94c..6b4f9da 100644 --- a/include/boost/stacktrace/this_thread.hpp +++ b/include/boost/stacktrace/this_thread.hpp @@ -1,4 +1,4 @@ -// Copyright Antony Polukhin, 2023-2025. +// Copyright Antony Polukhin, 2023-2026. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/index.html b/index.html index ec75ad3..c7c1c49 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@