Skip to content

Commit 1b9a9d1

Browse files
authored
Update licenses (nlohmann#4521)
* 📄 update licenses * 📄 update licenses
1 parent 935c6ee commit 1b9a9d1

File tree

151 files changed

+221
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+221
-219
lines changed

.reuse/dep5

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ Upstream-Contact: Niels Lohmann <[email protected]>
44
Source: https://github.com/nlohmann/json
55

66
Files: *
7-
Copyright: 2013-2022 Niels Lohmann <https://nlohmann.me>
7+
Copyright: 2013-2024 Niels Lohmann <https://nlohmann.me>
88
License: MIT
99

10+
Files: include/nlohmann/thirdparty/hedley.hpp
11+
Copyright: 2016-2021 Evan Nemerson <[email protected]>
12+
License: CC0
13+
1014
Files: tests/thirdparty/doctest/*
1115
Copyright: 2016-2021 Viktor Kirilov
1216
License: MIT
@@ -16,7 +20,7 @@ Copyright: 2015-2017 Niels Lohmann
1620
License: MIT
1721

1822
Files: tests/thirdparty/Fuzzer/*
19-
Copyright: 2003-2022, LLVM Project.
23+
Copyright: 2003-2022 LLVM Project.
2024
License: Apache-2.0
2125

2226
Files: tests/thirdparty/imapdl/*

LICENSE.MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2013-2022 Niels Lohmann
3+
Copyright (c) 2013-2024 Niels Lohmann
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,6 @@ serve_header:
279279
##########################################################################
280280

281281
reuse:
282-
pipx run reuse addheader --recursive single_include include -tjson --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2022"
283-
pipx run reuse addheader $(TESTS_SRCS) --style=c -tjson_support --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2022"
282+
pipx run reuse annotate --recursive single_include include -tjson --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2024" --merge-copyrights
283+
pipx run reuse annotate $(TESTS_SRCS) -tjson_support --license MIT --copyright "Niels Lohmann <https://nlohmann.me>" --year "2013-2024" --merge-copyrights
284284
pipx run reuse lint

README.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
- [Notes](#notes)
5353
- [Execute unit tests](#execute-unit-tests)
5454

55+
5556
## Design goals
5657

5758
There are myriads of [JSON](https://json.org) libraries out there, and each may even have its reason to exist. Our class had these design goals:
@@ -91,6 +92,7 @@ You can sponsor this library at [GitHub Sponsors](https://github.com/sponsors/nl
9192

9293
Thanks everyone!
9394

95+
9496
## Support
9597

9698
:question: If you have a **question**, please check if it is already answered in the [**FAQ**](https://json.nlohmann.me/home/faq/) or the [**Q&A**](https://github.com/nlohmann/json/discussions/categories/q-a) section. If not, please [**ask a new question**](https://github.com/nlohmann/json/discussions/new) there.
@@ -103,6 +105,7 @@ Thanks everyone!
103105

104106
There is also a [**docset**](https://github.com/Kapeli/Dash-User-Contributions/tree/master/docsets/JSON_for_Modern_C%2B%2B) for the documentation browsers [Dash](https://kapeli.com/dash), [Velocity](https://velocity.silverlakesoftware.com), and [Zeal](https://zealdocs.org) that contains the full [documentation](https://json.nlohmann.me) as offline resource.
105107

108+
106109
## Examples
107110

108111
Here are some examples to give you an idea how to use the class.
@@ -1388,11 +1391,11 @@ json = dependency('nlohmann_json', required: true)
13881391

13891392
## License
13901393

1391-
<img align="right" src="https://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
1394+
<img align="right" src="https://149753425.v2.pressablecdn.com/wp-content/uploads/2009/06/OSIApproved_100X125.png" alt="OSI approved license">
13921395

13931396
The class is licensed under the [MIT License](https://opensource.org/licenses/MIT):
13941397

1395-
Copyright &copy; 2013-2022 [Niels Lohmann](https://nlohmann.me)
1398+
Copyright &copy; 2013-2024 [Niels Lohmann](https://nlohmann.me)
13961399

13971400
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 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13981401

@@ -1402,13 +1405,19 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
14021405

14031406
* * *
14041407

1405-
The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright &copy; 2008-2009 [Björn Hoehrmann](https://bjoern.hoehrmann.de/) <[email protected]>
1408+
- The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright &copy; 2008-2009 [Björn Hoehrmann](https://bjoern.hoehrmann.de/) <[email protected]>
1409+
- The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright &copy; 2009 [Florian Loitsch](https://florian.loitsch.com/)
1410+
- The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/).
1411+
- The class contains parts of [Google Abseil](https://github.com/abseil/abseil-cpp) which is licensed under the [Apache 2.0 License](https://opensource.org/licenses/Apache-2.0).
14061412

1407-
The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright &copy; 2009 [Florian Loitsch](https://florian.loitsch.com/)
1413+
<img align="right" src="https://git.fsfe.org/reuse/reuse-ci/raw/branch/master/reuse-horizontal.png" alt="REUSE Software">
14081414

1409-
The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/).
1415+
The library is compliant to version 3.3 of the [**REUSE specification**](https://reuse.software):
14101416

1411-
The class contains parts of [Google Abseil](https://github.com/abseil/abseil-cpp) which is licensed under the [Apache 2.0 License](https://opensource.org/licenses/Apache-2.0).
1417+
- Every source file contains an SPDX copyright header.
1418+
- The full text of all licenses used in the repository can be found in the `LICENSES` folder.
1419+
- File `.reuse/dep5` contains an overview of all files' copyrights and licenses.
1420+
- Run `pipx run reuse lint` to verify the project's REUSE compliance and `pipx run reuse spdx` to generate a SPDX SBOM.
14121421

14131422
## Contact
14141423

docs/mkdocs/docs/home/license.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# License
22

3-
<img align="right" src="https://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
3+
<img align="right" src="https://149753425.v2.pressablecdn.com/wp-content/uploads/2009/06/OSIApproved_100X125.png">
44

55
The class is licensed under the [MIT License](https://opensource.org/licenses/MIT):
66

7-
Copyright &copy; 2013-2022 [Niels Lohmann](https://nlohmann.me)
7+
Copyright &copy; 2013-2024 [Niels Lohmann](https://nlohmann.me)
88

99
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 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1010

include/nlohmann/adl_serializer.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/byte_container_with_subtype.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/abi_macros.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/conversions/from_json.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/conversions/to_chars.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
66
// SPDX-FileCopyrightText: 2009 Florian Loitsch <https://florian.loitsch.com/>
7-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
7+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
88
// SPDX-License-Identifier: MIT
99

1010
#pragma once

include/nlohmann/detail/conversions/to_json.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/exceptions.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/hash.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/binary_reader.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/input_adapters.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/json_sax.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/lexer.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/parser.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/input/position_t.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/internal_iterator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/iter_impl.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/iteration_proxy.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/iterator_traits.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/json_reverse_iterator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/iterators/primitive_iterator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/json_custom_base_class.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/json_pointer.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/json_ref.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/macro_scope.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/macro_unscope.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/meta/call_std/begin.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/meta/call_std/end.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/meta/cpp_future.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-FileCopyrightText: 2018 The Abseil Authors
88
// SPDX-License-Identifier: MIT
99

include/nlohmann/detail/meta/detected.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/meta/identity_tag.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

include/nlohmann/detail/meta/is_sax.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// | | |__ | | | | | | version 3.11.3
44
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
55
//
6-
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
6+
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me>
77
// SPDX-License-Identifier: MIT
88

99
#pragma once

0 commit comments

Comments
 (0)