From 1ef6c0c6c80a2a79a5627c325eaede1ed8e48809 Mon Sep 17 00:00:00 2001 From: Mark Gillard Date: Sat, 2 Jan 2021 17:48:47 +0200 Subject: [PATCH] update copyright year [skip ci] --- LICENSE | 2 +- examples/error_printer.cpp | 2 +- examples/simple_parser.cpp | 2 +- examples/toml_generator.cpp | 2 +- examples/toml_to_json_transcoder.cpp | 2 +- include/toml++/toml.h | 2 +- include/toml++/toml_array.h | 2 +- include/toml++/toml_array.hpp | 2 +- include/toml++/toml_common.h | 2 +- include/toml++/toml_date_time.h | 2 +- include/toml++/toml_default_formatter.h | 2 +- include/toml++/toml_default_formatter.hpp | 2 +- include/toml++/toml_formatter.h | 2 +- include/toml++/toml_instantiations.hpp | 2 +- include/toml++/toml_json_formatter.h | 2 +- include/toml++/toml_json_formatter.hpp | 2 +- include/toml++/toml_node.h | 2 +- include/toml++/toml_node.hpp | 2 +- include/toml++/toml_node_view.h | 2 +- include/toml++/toml_parse_error.h | 2 +- include/toml++/toml_parser.h | 2 +- include/toml++/toml_parser.hpp | 2 +- include/toml++/toml_preprocessor.h | 2 +- include/toml++/toml_print_to_stream.h | 2 +- include/toml++/toml_table.h | 2 +- include/toml++/toml_table.hpp | 2 +- include/toml++/toml_utf8.h | 2 +- include/toml++/toml_utf8_streams.h | 2 +- include/toml++/toml_utf8_streams.hpp | 2 +- include/toml++/toml_value.h | 2 +- include/toml++/toml_version.h | 2 +- python/ci_single_header_check.py | 2 +- python/generate_conformance_tests.py | 4 ++-- python/generate_documentation.py | 2 +- python/generate_single_header.py | 2 +- python/generate_windows_test_targets.py | 2 +- python/utils.py | 2 +- tests/catch2.h | 2 +- tests/conformance_burntsushi_invalid.cpp | 2 +- tests/conformance_burntsushi_valid.cpp | 2 +- tests/conformance_iarna_invalid.cpp | 2 +- tests/conformance_iarna_valid.cpp | 2 +- tests/impl_catch2.cpp | 2 +- tests/impl_toml.cpp | 2 +- tests/manipulating_arrays.cpp | 2 +- tests/manipulating_parse_result.cpp | 2 +- tests/manipulating_tables.cpp | 2 +- tests/manipulating_values.cpp | 2 +- tests/parsing_arrays.cpp | 2 +- tests/parsing_booleans.cpp | 2 +- tests/parsing_comments.cpp | 2 +- tests/parsing_dates_and_times.cpp | 2 +- tests/parsing_floats.cpp | 2 +- tests/parsing_integers.cpp | 2 +- tests/parsing_key_value_pairs.cpp | 2 +- tests/parsing_spec_example.cpp | 2 +- tests/parsing_strings.cpp | 2 +- tests/parsing_tables.cpp | 2 +- tests/settings.h | 2 +- tests/tests.cpp | 2 +- tests/tests.h | 2 +- tests/tloptional.h | 2 +- tests/unicode.cpp | 2 +- tests/user_feedback.cpp | 2 +- tests/windows_compat.cpp | 2 +- toml.hpp | 2 +- 66 files changed, 67 insertions(+), 67 deletions(-) diff --git a/LICENSE b/LICENSE index 95c2438..261cd61 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2020 Mark Gillard +Copyright (c) Mark Gillard Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/examples/error_printer.cpp b/examples/error_printer.cpp index 01daf84..ff85be2 100644 --- a/examples/error_printer.cpp +++ b/examples/error_printer.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT /* diff --git a/examples/simple_parser.cpp b/examples/simple_parser.cpp index 99c9850..cc5c206 100644 --- a/examples/simple_parser.cpp +++ b/examples/simple_parser.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT /* diff --git a/examples/toml_generator.cpp b/examples/toml_generator.cpp index 4018b0d..37abc2d 100644 --- a/examples/toml_generator.cpp +++ b/examples/toml_generator.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT /* diff --git a/examples/toml_to_json_transcoder.cpp b/examples/toml_to_json_transcoder.cpp index 518c7a4..51ea08c 100644 --- a/examples/toml_to_json_transcoder.cpp +++ b/examples/toml_to_json_transcoder.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT /* diff --git a/include/toml++/toml.h b/include/toml++/toml.h index 3586067..6b87d01 100644 --- a/include/toml++/toml.h +++ b/include/toml++/toml.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_array.h b/include/toml++/toml_array.h index 8172d62..ac4c292 100644 --- a/include/toml++/toml_array.h +++ b/include/toml++/toml_array.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_array.hpp b/include/toml++/toml_array.hpp index a65f78c..33b9eec 100644 --- a/include/toml++/toml_array.hpp +++ b/include/toml++/toml_array.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_common.h b/include/toml++/toml_common.h index 66678cf..a726727 100644 --- a/include/toml++/toml_common.h +++ b/include/toml++/toml_common.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_date_time.h b/include/toml++/toml_date_time.h index 6cbee15..8077055 100644 --- a/include/toml++/toml_date_time.h +++ b/include/toml++/toml_date_time.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_default_formatter.h b/include/toml++/toml_default_formatter.h index 7024510..3349b3e 100644 --- a/include/toml++/toml_default_formatter.h +++ b/include/toml++/toml_default_formatter.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_default_formatter.hpp b/include/toml++/toml_default_formatter.hpp index e2d14f4..b8870b1 100644 --- a/include/toml++/toml_default_formatter.hpp +++ b/include/toml++/toml_default_formatter.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_formatter.h b/include/toml++/toml_formatter.h index 39e1e37..d5f7791 100644 --- a/include/toml++/toml_formatter.h +++ b/include/toml++/toml_formatter.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_instantiations.hpp b/include/toml++/toml_instantiations.hpp index 2513254..6c3f4dc 100644 --- a/include/toml++/toml_instantiations.hpp +++ b/include/toml++/toml_instantiations.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_json_formatter.h b/include/toml++/toml_json_formatter.h index 61e8013..95d0b4c 100644 --- a/include/toml++/toml_json_formatter.h +++ b/include/toml++/toml_json_formatter.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_json_formatter.hpp b/include/toml++/toml_json_formatter.hpp index 4cb76f9..83cb42d 100644 --- a/include/toml++/toml_json_formatter.hpp +++ b/include/toml++/toml_json_formatter.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_node.h b/include/toml++/toml_node.h index f11fb30..3f46a9d 100644 --- a/include/toml++/toml_node.h +++ b/include/toml++/toml_node.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_node.hpp b/include/toml++/toml_node.hpp index c03bb63..8c65562 100644 --- a/include/toml++/toml_node.hpp +++ b/include/toml++/toml_node.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_node_view.h b/include/toml++/toml_node_view.h index 7c91c46..d0cf213 100644 --- a/include/toml++/toml_node_view.h +++ b/include/toml++/toml_node_view.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_parse_error.h b/include/toml++/toml_parse_error.h index f90048f..ccb9133 100644 --- a/include/toml++/toml_parse_error.h +++ b/include/toml++/toml_parse_error.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_parser.h b/include/toml++/toml_parser.h index e60b096..ab771f4 100644 --- a/include/toml++/toml_parser.h +++ b/include/toml++/toml_parser.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_parser.hpp b/include/toml++/toml_parser.hpp index e8ae177..375e2fc 100644 --- a/include/toml++/toml_parser.hpp +++ b/include/toml++/toml_parser.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_preprocessor.h b/include/toml++/toml_preprocessor.h index a889eff..d6bbc00 100644 --- a/include/toml++/toml_preprocessor.h +++ b/include/toml++/toml_preprocessor.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_print_to_stream.h b/include/toml++/toml_print_to_stream.h index 131ba51..f3d44ee 100644 --- a/include/toml++/toml_print_to_stream.h +++ b/include/toml++/toml_print_to_stream.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_table.h b/include/toml++/toml_table.h index 5d7b692..2db1309 100644 --- a/include/toml++/toml_table.h +++ b/include/toml++/toml_table.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_table.hpp b/include/toml++/toml_table.hpp index 504a6b8..e79a97b 100644 --- a/include/toml++/toml_table.hpp +++ b/include/toml++/toml_table.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_utf8.h b/include/toml++/toml_utf8.h index 7d87e05..a45e553 100644 --- a/include/toml++/toml_utf8.h +++ b/include/toml++/toml_utf8.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_utf8_streams.h b/include/toml++/toml_utf8_streams.h index 6a6ee99..a5389a7 100644 --- a/include/toml++/toml_utf8_streams.h +++ b/include/toml++/toml_utf8_streams.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_utf8_streams.hpp b/include/toml++/toml_utf8_streams.hpp index 3b8dd17..0913455 100644 --- a/include/toml++/toml_utf8_streams.hpp +++ b/include/toml++/toml_utf8_streams.hpp @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_value.h b/include/toml++/toml_value.h index 11d2c5a..5d5aa0a 100644 --- a/include/toml++/toml_value.h +++ b/include/toml++/toml_value.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/include/toml++/toml_version.h b/include/toml++/toml_version.h index 86613ca..73432bc 100644 --- a/include/toml++/toml_version.h +++ b/include/toml++/toml_version.h @@ -1,5 +1,5 @@ //# This file is a part of toml++ and is subject to the the terms of the MIT license. -//# Copyright (c) 2019-2020 Mark Gillard +//# Copyright (c) Mark Gillard //# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/python/ci_single_header_check.py b/python/ci_single_header_check.py index 5a43bde..bb59f25 100644 --- a/python/ci_single_header_check.py +++ b/python/ci_single_header_check.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT diff --git a/python/generate_conformance_tests.py b/python/generate_conformance_tests.py index 4fe4217..6a721d4 100644 --- a/python/generate_conformance_tests.py +++ b/python/generate_conformance_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT @@ -381,7 +381,7 @@ def write_test_file(name, test_cases): # preamble write('// This file is a part of toml++ and is subject to the the terms of the MIT license.') - write('// Copyright (c) 2019-2020 Mark Gillard ') + write('// Copyright (c) Mark Gillard ') write('// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.') write('// SPDX-License-Identifier: MIT') write('//-----') diff --git a/python/generate_documentation.py b/python/generate_documentation.py index 32bcbc4..28f73b7 100644 --- a/python/generate_documentation.py +++ b/python/generate_documentation.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT diff --git a/python/generate_single_header.py b/python/generate_single_header.py index 0ccdf4b..553fef0 100644 --- a/python/generate_single_header.py +++ b/python/generate_single_header.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT diff --git a/python/generate_windows_test_targets.py b/python/generate_windows_test_targets.py index 212b4c3..6a76b8d 100644 --- a/python/generate_windows_test_targets.py +++ b/python/generate_windows_test_targets.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT diff --git a/python/utils.py b/python/utils.py index b9611f7..325bce9 100644 --- a/python/utils.py +++ b/python/utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of toml++ and is subject to the the terms of the MIT license. -# Copyright (c) 2019-2020 Mark Gillard +# Copyright (c) Mark Gillard # See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. # SPDX-License-Identifier: MIT diff --git a/tests/catch2.h b/tests/catch2.h index 9bb21e3..6219476 100644 --- a/tests/catch2.h +++ b/tests/catch2.h @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/conformance_burntsushi_invalid.cpp b/tests/conformance_burntsushi_invalid.cpp index 21981d3..9f7965a 100644 --- a/tests/conformance_burntsushi_invalid.cpp +++ b/tests/conformance_burntsushi_invalid.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT //----- diff --git a/tests/conformance_burntsushi_valid.cpp b/tests/conformance_burntsushi_valid.cpp index 07deebd..6fdeb51 100644 --- a/tests/conformance_burntsushi_valid.cpp +++ b/tests/conformance_burntsushi_valid.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT //----- diff --git a/tests/conformance_iarna_invalid.cpp b/tests/conformance_iarna_invalid.cpp index d8c7bf5..5894b76 100644 --- a/tests/conformance_iarna_invalid.cpp +++ b/tests/conformance_iarna_invalid.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT //----- diff --git a/tests/conformance_iarna_valid.cpp b/tests/conformance_iarna_valid.cpp index 18cb586..6b0a763 100644 --- a/tests/conformance_iarna_valid.cpp +++ b/tests/conformance_iarna_valid.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT //----- diff --git a/tests/impl_catch2.cpp b/tests/impl_catch2.cpp index a2fd74f..5ec5812 100644 --- a/tests/impl_catch2.cpp +++ b/tests/impl_catch2.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/impl_toml.cpp b/tests/impl_toml.cpp index b8e052a..178e6d2 100644 --- a/tests/impl_toml.cpp +++ b/tests/impl_toml.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/manipulating_arrays.cpp b/tests/manipulating_arrays.cpp index 6cdaf34..656f823 100644 --- a/tests/manipulating_arrays.cpp +++ b/tests/manipulating_arrays.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/manipulating_parse_result.cpp b/tests/manipulating_parse_result.cpp index 299b085..fba65c4 100644 --- a/tests/manipulating_parse_result.cpp +++ b/tests/manipulating_parse_result.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/manipulating_tables.cpp b/tests/manipulating_tables.cpp index a5677e5..e3bbdb9 100644 --- a/tests/manipulating_tables.cpp +++ b/tests/manipulating_tables.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/manipulating_values.cpp b/tests/manipulating_values.cpp index 821db64..ee50854 100644 --- a/tests/manipulating_values.cpp +++ b/tests/manipulating_values.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_arrays.cpp b/tests/parsing_arrays.cpp index 72b6893..20a51a8 100644 --- a/tests/parsing_arrays.cpp +++ b/tests/parsing_arrays.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_booleans.cpp b/tests/parsing_booleans.cpp index a52c382..d312164 100644 --- a/tests/parsing_booleans.cpp +++ b/tests/parsing_booleans.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_comments.cpp b/tests/parsing_comments.cpp index e902008..5437d23 100644 --- a/tests/parsing_comments.cpp +++ b/tests/parsing_comments.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_dates_and_times.cpp b/tests/parsing_dates_and_times.cpp index 3fda035..f32f9fb 100644 --- a/tests/parsing_dates_and_times.cpp +++ b/tests/parsing_dates_and_times.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_floats.cpp b/tests/parsing_floats.cpp index f93b6d9..1ef8237 100644 --- a/tests/parsing_floats.cpp +++ b/tests/parsing_floats.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_integers.cpp b/tests/parsing_integers.cpp index 8521c1c..374aa52 100644 --- a/tests/parsing_integers.cpp +++ b/tests/parsing_integers.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_key_value_pairs.cpp b/tests/parsing_key_value_pairs.cpp index c5c7ecd..9da4204 100644 --- a/tests/parsing_key_value_pairs.cpp +++ b/tests/parsing_key_value_pairs.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_spec_example.cpp b/tests/parsing_spec_example.cpp index 7050590..44bc473 100644 --- a/tests/parsing_spec_example.cpp +++ b/tests/parsing_spec_example.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_strings.cpp b/tests/parsing_strings.cpp index 42338fc..3e239ee 100644 --- a/tests/parsing_strings.cpp +++ b/tests/parsing_strings.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/parsing_tables.cpp b/tests/parsing_tables.cpp index 7e51690..06fb2b6 100644 --- a/tests/parsing_tables.cpp +++ b/tests/parsing_tables.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/settings.h b/tests/settings.h index 6a7def8..5c6ba80 100644 --- a/tests/settings.h +++ b/tests/settings.h @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/tests.cpp b/tests/tests.cpp index d3fe6d0..d358556 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/tests.h b/tests/tests.h index b1d4ee3..3d10e72 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/tloptional.h b/tests/tloptional.h index 6e02762..30460ee 100644 --- a/tests/tloptional.h +++ b/tests/tloptional.h @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/unicode.cpp b/tests/unicode.cpp index a334b75..a0b3156 100644 --- a/tests/unicode.cpp +++ b/tests/unicode.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/user_feedback.cpp b/tests/user_feedback.cpp index 8f5ccf1..4b9fb91 100644 --- a/tests/user_feedback.cpp +++ b/tests/user_feedback.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/tests/windows_compat.cpp b/tests/windows_compat.cpp index a9c5fdd..1d05268 100644 --- a/tests/windows_compat.cpp +++ b/tests/windows_compat.cpp @@ -1,5 +1,5 @@ // This file is a part of toml++ and is subject to the the terms of the MIT license. -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text. // SPDX-License-Identifier: MIT diff --git a/toml.hpp b/toml.hpp index 7fea259..70cb34f 100644 --- a/toml.hpp +++ b/toml.hpp @@ -27,7 +27,7 @@ // // MIT License // -// Copyright (c) 2019-2020 Mark Gillard +// Copyright (c) Mark Gillard // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated // documentation files (the "Software"), to deal in the Software without restriction, including without limitation the