From e901c93362dd7c901a49e75ceb3bcaf8b8760caa Mon Sep 17 00:00:00 2001 From: DioEgizio <83089242+DioEgizio@users.noreply.github.com> Date: Sun, 1 Feb 2026 13:56:14 +0100 Subject: chore: comply with reuse Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> --- include/crtp_tag.h | 6 ++++++ include/endian_str.h | 6 ++++++ include/io/izlibstream.h | 6 ++++++ include/io/ozlibstream.h | 6 ++++++ include/io/stream_reader.h | 6 ++++++ include/io/stream_writer.h | 6 ++++++ include/io/zlib_streambuf.h | 6 ++++++ include/make_unique.h | 6 ++++++ include/nbt_tags.h | 6 ++++++ include/nbt_visitor.h | 6 ++++++ include/primitive_detail.h | 6 ++++++ include/tag.h | 6 ++++++ include/tag_array.h | 6 ++++++ include/tag_compound.h | 6 ++++++ include/tag_list.h | 6 ++++++ include/tag_primitive.h | 6 ++++++ include/tag_string.h | 6 ++++++ include/tagfwd.h | 6 ++++++ include/text/json_formatter.h | 6 ++++++ include/value.h | 6 ++++++ include/value_initializer.h | 6 ++++++ 21 files changed, 126 insertions(+) (limited to 'include') diff --git a/include/crtp_tag.h b/include/crtp_tag.h index 7b802979a9..28a59f1530 100644 --- a/include/crtp_tag.h +++ b/include/crtp_tag.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/endian_str.h b/include/endian_str.h index ca36835fd0..4a3500342b 100644 --- a/include/endian_str.h +++ b/include/endian_str.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/io/izlibstream.h b/include/io/izlibstream.h index 2b9b91a74a..f7d180f4e8 100644 --- a/include/io/izlibstream.h +++ b/include/io/izlibstream.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/io/ozlibstream.h b/include/io/ozlibstream.h index 65c97c7d69..5ac3dba97f 100644 --- a/include/io/ozlibstream.h +++ b/include/io/ozlibstream.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/io/stream_reader.h b/include/io/stream_reader.h index 3a677db748..821a9ff8d3 100644 --- a/include/io/stream_reader.h +++ b/include/io/stream_reader.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/io/stream_writer.h b/include/io/stream_writer.h index a69508f392..32a01c89c9 100644 --- a/include/io/stream_writer.h +++ b/include/io/stream_writer.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/io/zlib_streambuf.h b/include/io/zlib_streambuf.h index 4241769e4e..e8eea1822f 100644 --- a/include/io/zlib_streambuf.h +++ b/include/io/zlib_streambuf.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + #ifndef ZLIB_STREAMBUF_H_INCLUDED #define ZLIB_STREAMBUF_H_INCLUDED diff --git a/include/make_unique.h b/include/make_unique.h index 9a929543cc..a475a4a734 100644 --- a/include/make_unique.h +++ b/include/make_unique.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/nbt_tags.h b/include/nbt_tags.h index 7f557fc769..bcab332919 100644 --- a/include/nbt_tags.h +++ b/include/nbt_tags.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/nbt_visitor.h b/include/nbt_visitor.h index fe2688afb9..0b37161a5f 100644 --- a/include/nbt_visitor.h +++ b/include/nbt_visitor.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/primitive_detail.h b/include/primitive_detail.h index 4715ee7ed6..de070d3320 100644 --- a/include/primitive_detail.h +++ b/include/primitive_detail.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag.h b/include/tag.h index c4f1d5d0b2..0cb3c82c95 100644 --- a/include/tag.h +++ b/include/tag.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag_array.h b/include/tag_array.h index a12c22688b..de1dd0953a 100644 --- a/include/tag_array.h +++ b/include/tag_array.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag_compound.h b/include/tag_compound.h index 3bbc1f2fb0..60d9d83927 100644 --- a/include/tag_compound.h +++ b/include/tag_compound.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag_list.h b/include/tag_list.h index e2c9b7bb7c..8601c9081f 100644 --- a/include/tag_list.h +++ b/include/tag_list.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag_primitive.h b/include/tag_primitive.h index e3d5111e76..938ec51087 100644 --- a/include/tag_primitive.h +++ b/include/tag_primitive.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tag_string.h b/include/tag_string.h index f6c49fd5ad..35ddd371aa 100644 --- a/include/tag_string.h +++ b/include/tag_string.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/tagfwd.h b/include/tagfwd.h index a359885ce1..a302fe327b 100644 --- a/include/tagfwd.h +++ b/include/tagfwd.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/text/json_formatter.h b/include/text/json_formatter.h index 876caff086..2f9246939b 100644 --- a/include/text/json_formatter.h +++ b/include/text/json_formatter.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/value.h b/include/value.h index fffe5cd3ec..36b55ffa57 100644 --- a/include/value.h +++ b/include/value.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag diff --git a/include/value_initializer.h b/include/value_initializer.h index 20fd436e67..7bcc424de2 100644 --- a/include/value_initializer.h +++ b/include/value_initializer.h @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2013, 2015 ljfa-ag + * + * SPDX-License-Identifier: LGPL-3.0-or-later + */ + /* * libnbt++ - A library for the Minecraft Named Binary Tag format. * Copyright (C) 2013, 2015 ljfa-ag -- cgit 0.0.5-2-1-g0f52