Skip to content

Commit f5202dd

Browse files
committed
Update copyright year
1 parent 452f24a commit f5202dd

File tree

137 files changed

+230
-228
lines changed

Some content is hidden

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

137 files changed

+230
-228
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
# Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
# SPDX-License-Identifier: MIT
33
# found in the top-level directory of this distribution.
44

LICENSE.md

+1-1

example/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
# Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
# SPDX-License-Identifier: MIT
33
# found in the top-level directory of this distribution.
44

example/ast_printer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

example/comparison.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

example/documentation_generator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

example/enum_category.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

example/enum_to_string.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

example/example_parser.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_EXAMPLE_PARSER_HPP_INCLUDED

example/serialization.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
/// \file

external/external.cmake

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# Copyright (C) 2017 Jonathan Müller <[email protected]>
1+
# Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
# SPDX-License-Identifier: MIT
3-
# found in the top-level directory of this distribution.
43

54
include(FetchContent)
65

include/cppast/code_generator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CODE_GENERATOR_HPP_INCLUDED

include/cppast/compile_config.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_COMPILE_CONFIG_HPP_INCLUDED
@@ -35,7 +35,7 @@ enum class cpp_standard
3535
c_2x,
3636

3737
cpp_latest = cpp_standard::cpp_14, //< The latest supported C++ standard.
38-
c_latest = cpp_standard::c_17, //< The latest supported C standard.
38+
c_latest = cpp_standard::c_17, //< The latest supported C standard.
3939
};
4040

4141
/// \returns A human readable string representing the option,
@@ -171,7 +171,7 @@ class compile_config
171171
protected:
172172
compile_config(std::vector<std::string> def_flags) : flags_(std::move(def_flags)) {}
173173

174-
compile_config(const compile_config&) = default;
174+
compile_config(const compile_config&) = default;
175175
compile_config& operator=(const compile_config&) = default;
176176

177177
~compile_config() noexcept = default;

include/cppast/cpp_alias_template.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ALIAS_TEMPLATE_HPP_INCLUDED

include/cppast/cpp_array_type.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ARRAY_TYPE_HPP_INCLUDED

include/cppast/cpp_attribute.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ATTRIBUTE_HPP_INCLUDED

include/cppast/cpp_class.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_CLASS_HPP_INCLUDED

include/cppast/cpp_class_template.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_CLASS_TEMPLATE_HPP_INCLUDED

include/cppast/cpp_concept.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_CONCEPT_HPP_INCLUDED

include/cppast/cpp_decltype_type.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_DECLTYPE_TYPE_HPP_INCLUDED

include/cppast/cpp_entity.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENTITY_HPP_INCLUDED
@@ -47,7 +47,7 @@ class cpp_scope_name
4747
class cpp_entity : detail::intrusive_list_node<cpp_entity>
4848
{
4949
public:
50-
cpp_entity(const cpp_entity&) = delete;
50+
cpp_entity(const cpp_entity&) = delete;
5151
cpp_entity& operator=(const cpp_entity&) = delete;
5252

5353
virtual ~cpp_entity() noexcept = default;

include/cppast/cpp_entity_container.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENTITY_CONTAINER_HPP_INCLUDED

include/cppast/cpp_entity_index.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENTITY_INDEX_HPP_INCLUDED

include/cppast/cpp_entity_kind.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENTITY_KIND_HPP_INCLUDED

include/cppast/cpp_entity_ref.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENTITY_REF_HPP_INCLUDED

include/cppast/cpp_enum.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_ENUM_HPP_INCLUDED

include/cppast/cpp_expression.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_EXPRESSION_HPP_INCLUDED
@@ -24,7 +24,7 @@ enum class cpp_expression_kind
2424
class cpp_expression
2525
{
2626
public:
27-
cpp_expression(const cpp_expression&) = delete;
27+
cpp_expression(const cpp_expression&) = delete;
2828
cpp_expression& operator=(const cpp_expression&) = delete;
2929

3030
virtual ~cpp_expression() noexcept = default;

include/cppast/cpp_file.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FILE_HPP_INCLUDED

include/cppast/cpp_forward_declarable.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FORWARD_DECLARABLE_HPP_INCLUDED

include/cppast/cpp_friend.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FRIEND_HPP_INCLUDED

include/cppast/cpp_function.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FUNCTION_HPP_INCLUDED

include/cppast/cpp_function_template.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FUNCTION_TEMPLATE_HPP_INCLUDED

include/cppast/cpp_function_type.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_FUNCTION_TYPE_HPP_INCLUDED

include/cppast/cpp_language_linkage.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_LANGUAGE_LINKAGE_HPP_INCLUDED

include/cppast/cpp_member_function.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_MEMBER_FUNCTION_HPP_INCLUDED

include/cppast/cpp_member_variable.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_MEMBER_VARIABLE_HPP_INCLUDED

include/cppast/cpp_namespace.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_NAMESPACE_HPP_INCLUDED

include/cppast/cpp_preprocessor.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_PREPROCESSOR_HPP_INCLUDED

include/cppast/cpp_static_assert.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_STATIC_ASSERT_HPP_INCLUDED

include/cppast/cpp_storage_class_specifiers.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_STORAGE_CLASS_SPECIFIERS_HPP_INCLUDED

include/cppast/cpp_template.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_TEMPLATE_HPP_INCLUDED

include/cppast/cpp_template_parameter.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_TEMPLATE_PARAMETER_HPP_INCLUDED
@@ -83,8 +83,8 @@ class cpp_template_type_parameter final : public cpp_template_parameter
8383

8484
cpp_entity_kind do_get_entity_kind() const noexcept override;
8585

86-
std::unique_ptr<cpp_type> default_type_;
87-
cpp_template_keyword keyword_;
86+
std::unique_ptr<cpp_type> default_type_;
87+
cpp_template_keyword keyword_;
8888
type_safe::optional<cpp_token_string> concept_constraint_;
8989
};
9090

include/cppast/cpp_token.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_TOKEN_HPP_INCLUDED

include/cppast/cpp_type.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_TYPE_HPP_INCLUDED
@@ -44,7 +44,7 @@ enum class cpp_type_kind
4444
class cpp_type : detail::intrusive_list_node<cpp_type>
4545
{
4646
public:
47-
cpp_type(const cpp_type&) = delete;
47+
cpp_type(const cpp_type&) = delete;
4848
cpp_type& operator=(const cpp_type&) = delete;
4949

5050
virtual ~cpp_type() noexcept = default;

include/cppast/cpp_type_alias.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_TYPE_ALIAS_HPP_INCLUDED

include/cppast/cpp_variable.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_VARIABLE_HPP_INCLUDED

include/cppast/cpp_variable_base.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_VARIABLE_BASE_HPP_INCLUDED

include/cppast/cpp_variable_template.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_CPP_VARIABLE_TEMPLATE_HPP_INCLUDED

include/cppast/detail/assert.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_ASSERT_HPP_INCLUDED

include/cppast/detail/intrusive_list.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_INTRUSIVE_LIST_HPP_INCLUDED
@@ -23,7 +23,7 @@ namespace detail
2323
public:
2424
intrusive_list_node() = default;
2525

26-
intrusive_list_node(intrusive_list_node&&) = default;
26+
intrusive_list_node(intrusive_list_node&&) = default;
2727
intrusive_list_node& operator=(intrusive_list_node&&) = default;
2828

2929
~intrusive_list_node() noexcept

include/cppast/diagnostic.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_DIAGNOSTIC_HPP_INCLUDED

include/cppast/diagnostic_logger.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2017-2022 Jonathan Müller and cppast contributors
1+
// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors
22
// SPDX-License-Identifier: MIT
33

44
#ifndef CPPAST_DIAGNOSTIC_LOGGER_HPP_INCLUDED
@@ -19,7 +19,7 @@ class diagnostic_logger
1919
/// \effects Creates it either as verbose or not.
2020
explicit diagnostic_logger(bool is_verbose = false) noexcept : verbose_(is_verbose) {}
2121

22-
diagnostic_logger(const diagnostic_logger&) = delete;
22+
diagnostic_logger(const diagnostic_logger&) = delete;
2323
diagnostic_logger& operator=(const diagnostic_logger&) = delete;
2424
virtual ~diagnostic_logger() noexcept = default;
2525

0 commit comments

Comments
 (0)