]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Update copyright years.
authorSahil Yeole <sahilyeole93@gmail.com>
Thu, 15 Feb 2024 20:48:44 +0000 (02:18 +0530)
committerArthur Cohen <arthur.cohen@embecosm.com>
Wed, 21 Feb 2024 12:51:26 +0000 (13:51 +0100)
Signed-off-by: Sahil Yeole <sahilyeole93@gmail.com>
109 files changed:
gcc/rust/ast/rust-ast-builder.cc
gcc/rust/ast/rust-ast-builder.h
gcc/rust/ast/rust-ast-collector.cc
gcc/rust/ast/rust-ast-collector.h
gcc/rust/ast/rust-ast-formatting.cc
gcc/rust/ast/rust-ast-formatting.h
gcc/rust/ast/rust-ast-visitor.cc
gcc/rust/ast/rust-path.cc
gcc/rust/ast/rust-pattern.cc
gcc/rust/backend/rust-mangle-legacy.cc
gcc/rust/backend/rust-mangle-v0.cc
gcc/rust/backend/rust-mangle.cc
gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.cc
gcc/rust/checks/errors/borrowck/rust-bir-builder-expr-stmt.h
gcc/rust/checks/errors/borrowck/rust-bir-builder-internal.h
gcc/rust/checks/errors/borrowck/rust-bir-builder-lazyboolexpr.h
gcc/rust/checks/errors/borrowck/rust-bir-builder-pattern.h
gcc/rust/checks/errors/borrowck/rust-bir-builder-struct.h
gcc/rust/checks/errors/borrowck/rust-bir-builder.h
gcc/rust/checks/errors/borrowck/rust-bir-dump.h
gcc/rust/checks/errors/borrowck/rust-bir-place.h
gcc/rust/checks/errors/borrowck/rust-bir-visitor.h
gcc/rust/checks/errors/borrowck/rust-bir.h
gcc/rust/checks/errors/borrowck/rust-borrow-checker.cc
gcc/rust/checks/errors/borrowck/rust-borrow-checker.h
gcc/rust/checks/errors/borrowck/rust-function-collector.h
gcc/rust/checks/errors/rust-ast-validation.cc
gcc/rust/checks/errors/rust-ast-validation.h
gcc/rust/checks/errors/rust-readonly-check.cc
gcc/rust/checks/errors/rust-readonly-check.h
gcc/rust/expand/rust-derive-clone.cc
gcc/rust/expand/rust-derive-clone.h
gcc/rust/expand/rust-derive-copy.cc
gcc/rust/expand/rust-derive-copy.h
gcc/rust/expand/rust-derive.cc
gcc/rust/expand/rust-derive.h
gcc/rust/expand/rust-expand-visitor.cc
gcc/rust/expand/rust-expand-visitor.h
gcc/rust/expand/rust-macro-invoc-lexer.cc
gcc/rust/expand/rust-macro-substitute-ctx.cc
gcc/rust/expand/rust-proc-macro-invoc-lexer.cc
gcc/rust/expand/rust-proc-macro-invoc-lexer.h
gcc/rust/hir/rust-ast-lower-implitem.cc
gcc/rust/hir/rust-ast-lower-stmt.cc
gcc/rust/lex/rust-input-source.h
gcc/rust/resolve/rust-default-resolver.cc
gcc/rust/resolve/rust-default-resolver.h
gcc/rust/resolve/rust-early-name-resolver-2.0.cc
gcc/rust/resolve/rust-early-name-resolver-2.0.h
gcc/rust/resolve/rust-forever-stack.h
gcc/rust/resolve/rust-forever-stack.hxx
gcc/rust/resolve/rust-late-name-resolver-2.0.cc
gcc/rust/resolve/rust-late-name-resolver-2.0.h
gcc/rust/resolve/rust-name-resolution-context.cc
gcc/rust/resolve/rust-name-resolution-context.h
gcc/rust/resolve/rust-rib.cc
gcc/rust/resolve/rust-rib.h
gcc/rust/resolve/rust-toplevel-name-resolver-2.0.cc
gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h
gcc/rust/rust-attribs.cc
gcc/rust/rust-error-codes.def
gcc/rust/util/bi-map.h
gcc/rust/util/make-rust-unicode.py
gcc/rust/util/rust-attribute-values.h
gcc/rust/util/rust-dir-owner.cc
gcc/rust/util/rust-dir-owner.h
gcc/rust/util/rust-dump.h
gcc/rust/util/rust-keyword-values.cc
gcc/rust/util/rust-keyword-values.h
gcc/rust/util/rust-punycode.cc
gcc/rust/util/rust-punycode.h
gcc/rust/util/rust-unicode-data.h
gcc/rust/util/rust-unicode.cc
gcc/rust/util/rust-unicode.h
libgrust/libproc_macro/bridge.rs
libgrust/libproc_macro/bridge/ffistring.rs
libgrust/libproc_macro/bridge/group.rs
libgrust/libproc_macro/bridge/ident.rs
libgrust/libproc_macro/bridge/literal.rs
libgrust/libproc_macro/bridge/punct.rs
libgrust/libproc_macro/bridge/span.rs
libgrust/libproc_macro/bridge/token_stream.rs
libgrust/libproc_macro/group.rs
libgrust/libproc_macro/ident.rs
libgrust/libproc_macro/lib.rs
libgrust/libproc_macro/literal.rs
libgrust/libproc_macro/punct.rs
libgrust/libproc_macro/span.rs
libgrust/libproc_macro/token_stream.rs
libgrust/libproc_macro_internal/bridge.h
libgrust/libproc_macro_internal/ffistring.cc
libgrust/libproc_macro_internal/ffistring.h
libgrust/libproc_macro_internal/group.cc
libgrust/libproc_macro_internal/group.h
libgrust/libproc_macro_internal/ident.cc
libgrust/libproc_macro_internal/ident.h
libgrust/libproc_macro_internal/literal.cc
libgrust/libproc_macro_internal/literal.h
libgrust/libproc_macro_internal/proc_macro.cc
libgrust/libproc_macro_internal/proc_macro.h
libgrust/libproc_macro_internal/punct.cc
libgrust/libproc_macro_internal/punct.h
libgrust/libproc_macro_internal/registration.h
libgrust/libproc_macro_internal/span.cc
libgrust/libproc_macro_internal/span.h
libgrust/libproc_macro_internal/tokenstream.cc
libgrust/libproc_macro_internal/tokenstream.h
libgrust/libproc_macro_internal/tokentree.cc
libgrust/libproc_macro_internal/tokentree.h

index fd6f519fa252bdfb0717908d79163e5e7ee8b908..0d5218c6381da8fb9929001d4933f6ec134358bb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 0ee36ff44fb9e478629fdbfe942a2ca06359fcd8..c0b4fa7b2cb609d59e302fc3f7f881730aeabb71 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index fb0e6f9be1d379a176468d0f29ed12f9b26ff0cc..181f1b100be9cc0b16ec121bbc5acba415d9bfc5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 246411fa15f93ee396b1b2624bf94392aea118b4..cf97c185a26fbbfe8e0f9c1132018555b3165eb0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index e6f969f2dfc59847183d3ddcd1a2f49656e7c8ab..6137f26ed6a6b6410230183cf2e0c0d572d32b41 100644 (file)
@@ -1,5 +1,5 @@
 /* General AST-related method implementations for Rust frontend.
-   Copyright (C) 2009-2023 Free Software Foundation, Inc.
+   Copyright (C) 2009-2024 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 04e20cc3114405d181d32d7589142e446c3b3acb..7eaee6259ce58f67b128d59f58c5bef1f41bfec3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index cb7ba846c39edbbe8964f68e974c5344263f039c..27b9aa47d99c2895b6247109bf4891ca1af9257d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 431480cf7e9b453a23d696dc7eef2cbe8d6c7087..9131962c16810d825fd36171a0825284db5e7fa6 100644 (file)
@@ -1,5 +1,5 @@
 /* General AST-related method implementations for Rust frontend.
-   Copyright (C) 2009-2023 Free Software Foundation, Inc.
+   Copyright (C) 2009-2024 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index e4712c34e0827b8880f7465fc31dbab736e0feae..9091637c786b9f7b5e83219be9fac6bec4147898 100644 (file)
@@ -1,5 +1,5 @@
 /* General AST-related method implementations for Rust frontend.
-   Copyright (C) 2009-2023 Free Software Foundation, Inc.
+   Copyright (C) 2009-2024 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index fd0ba1b37459ba8423f04bf5f782201fa8d4a2cf..2826b363547ae43b2d2c1327e88a672b02c776b3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 634ccb07aa4ac6bd140e1f512b83aa344629ee74..3e25ac3adb43b21e01b6bf568ac09b0c45f6751e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 53ed6b54527de40263099b3b8e5e2d0511b4d83a..5894435537123e710b88df63aa75a01b37e059a8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 96bc738964ed958ab14bd0c9b5a6cf90f86ed1a1..ead6e403661c9cfd095f9b70254140ebbc9f7c01 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2022 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 1352965b725e9bd737ea53c3a9eb041f5c06485b..0654bcc27b0d9509bdea44101ebb24d7233ba093 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index cd61151477669cf3ca1728162ab7a0ec6c484738..b419267726163a9cf2492a042766dc8db3688287 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 440549eba29b9f85430e013d21ef6ea16745562e..fb0c75b4f7293eaa36c04151f7e2fc1cf1a7562e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2022 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 9949ef17989f3d2208a6aa79b595c25896741ea0..76943ff1b04b9e183b6dade3aa7f866dbb0e147f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 7df54a4880aaf2e448ea1d93946ba21d6505e893..d6390392d7fbef33a9086cc1fba40e471718dff2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 177b65558899ea3b6b33e84283224856d3ba3dfb..509929bc6846cf01de3b1a94e1dde35e38d436ff 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 1efc0ea2bf465d409c372dd5c301ec5e948d5881..e8cf13726022f52784895936a77552636799d2c5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 523c2f6ec9049de030ac55e6a1ba3460f5aba2db..7b04ae4082429de74dd2df16757fd380f7993bb5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 48b67c0fead40ebfd25a3b84b8c3e3117001baec..8c6053d23627d780ff541b87f7e9ff26caa7fed6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index bcb32c9659b82cc74c365fb7ad6b5abe5f4a557b..aa97eac17b4432bc6cdefe214e4691011ef9fe58 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 0c952ad32fa53979b6b8458a44fee1ce4cb4b94c..5daa7eb8ded56d43287347833005e48ad94724c0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index e1a3f191c8738dd3ff41d731b92b3dab593b46c7..b77858f9da36dcad763ad36047f1e222adf205a6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index f8d36ffe2b427a2a5bdd40bd96dd7b624ecd9c64..b19bfdf855e71fed9d04e1fea595957226d162b0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index fcba57d0a920d0552ae340443a417e95ac393642..bf70ca5d96f9f47ba6f1c3369568371c3743b618 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 01d923ceff339f11cef7eaff63ada9f8b9bb4cd7..641fb26f08940b45e11173722e833a082e94b662 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 474344fd638a809dcaa4cf03e701e8ffd10a9ef4..324e54b1dc29a62042df3c765d1a8a713e543831 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2021-2023 Free Software Foundation, Inc.
+// Copyright (C) 2021-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 4fe78fb67f2d19a92663ca48a7367deb0e1517be..b627e417ea26cf4d62af93871f7855356c664fc9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2021-2023 Free Software Foundation, Inc.
+// Copyright (C) 2021-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 01226e4f9137984c58364ec39ae2b4425eea5364..d09ea2c455b72f80700445759971886214bd9ac9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 1009247e8826339686fd0d15ff8e780bc1cee269..31756576c5f3ea4987b1f9ca624a892c490624d8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index ffac7fd20b23fc3edb3d0fe6ca3c5cec0a3ba177..a9a300bf750fab436a80800d944a077a264f82ce 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index f02b6716adc816b81144ffc00d29eac44b0d1ab7..73903b901b390d4b925e0f28eafa9cd5f6fdfc52 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 7b8f404b1db8c6f6aaf3c21e1010f36aa150250f..e9927df1559f93b5107cda19a0c9c5dc8627f6b1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 1531d81f57c1a297ab3895f6ddab2b979c6447f2..8fe29c0db75c50f921a4169e81435c925dbc8e00 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index e42715b865f3df66967bff42f96ce7b1af49193f..6ca63115195b9d35d95ccc4b1ba599d07b9815a7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 8f61db659c377594b27fcd731b29137bc9e9e1cf..f40b5773fc1cf1ac29d04e1242f761eafc1239c7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 003c87d62ff52e4cc78fc5e0ac3625b031b8696d..a7a586a6d58e58b9ca35d1e68a659f0eb6cec3de 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index eeb573a39d6ac2627cbe22f733579ad67d6b8032..03709a1e93702b7b573661eca65ced54e5ad022d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 1c370c10b29965145074ee22f0b0b02602c67358..c282ac5e422ebccb096e8a46c5ee4ff8640880ba 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 94eb6d5bfe294b5fd28cf6d7cf44da4db4076b6b..6d75046d17facebe51f05ae29d80c01714ff2091 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 399c3fb81797e3f9932c5aca641f775ce6350925..38bac5de7035077eda582ba72f3d323a53e7c2b5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index c050771b82f5157de459680000643dfe8f4108bf..6bd1a241b6d0ab25bb219aea752327a6169b1aa2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 03bf43b5b3b480afe2c8ab74d1d368bfbcf1c351..3b8b65c8e4c90a4d53175a83ec9239abc29ed721 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index b11635356573aeb14c49a9a8d52719feedce5be4..9f7fda4adaafd24df6c1afaaa822a2bb2a1a4a97 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index d508ff3ac79ec16b4d25158e8d55baeaa8b6f5f1..20458ede7bc891e77adf8791410b2c893b6722ae 100644 (file)
@@ -1,5 +1,5 @@
 
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index a5d5b191c88a95397121d7166ed81c044b70668b..982c696d2af12d20af78e9e654271687c5d12778 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index d9f985fe5750f629005f1a10ab440d9f5d997d3b..fc5d8af7038cb98d8bd0656015c83f45cdc9cb5c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index a540e682e5b09e56e9f7597191a95f259f74bcd6..01371fc7bcda8e7b6aebe291b8d656c2ab506d90 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 867144adf926feb8fc4a824a78554d15cfe2dc27..0aa9943191e8d66daad11df6438fd9bb46bb1528 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 5f70f5755824dd2792a9941d4d8856c729e7b64e..f9731a451a3a8d98785f60b58db85eabcb975568 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 15940d053aed0f3543e2b9d486104736fbd412f1..3a8a0060f5a2e769747c97a1aeef90bfc1f9be0e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index f71ef91505bd88def37a953ea80079b7170f0cd2..f35db7e925e59322286420da9d4ef25b6266bcb4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 7a1924581abdd7ab6afad38e06179d73549483a8..bc3c4bb5ddb71b8ee6a22888fd5d259473e6670d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 21fbe2ca530e16b7afad84fde3d3749979a65a0d..a1981498673e85ea63ffa7ba8187dec9cad6a4c7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 4ffd00a5d6c33e99f41477c4a52cfae964b5cd23..da777bb9ba79ad4091d125dd65ae77547a3de069 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index af7766d7b964204df591404cb0a02694707d2ab8..6470a63c9ad0f3ab72f730ef6a0910894a4dcdb5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index f1943ee1398d7daacd269de9e278eb5858962e99..ac11f3103708070de4c476b7cfac1e0e4407ff34 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 134dcf9eecac5848d84ccc437c85e74ccc7abb30..86d5b3dfeb9ffc8d58560d72f9485af29cab3d1b 100644 (file)
@@ -1,5 +1,5 @@
 /* rust-attribs.c -- Rust attributes handling.
-   Copyright (C) 2015-2023 Free Software Foundation, Inc.
+   Copyright (C) 2015-2024 Free Software Foundation, Inc.
 
 GCC is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index bcedbf43c1bc709b9bc71ae8c25801d0ac3d0441..ffb4c739cf1f1237a13bb3a367466c0c1d2d9a5a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index ab5878d8fb74b3a51800612c3f18d982bc5edab1..ff26c833811c818fc2496b8db7ff7ab0684fd95d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index f6f04ebdf5b37e26200e99abc7bcd47b21a635aa..a89f2f29f466bf11966c8f05bdf5b1a7f8ec3953 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020-2023 Free Software Foundation, Inc.
+# Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 # This file is part of GCC.
 
@@ -28,7 +28,7 @@ Codepoint = int
 Range = Tuple[Codepoint, Codepoint]
 
 COPYRIGHT = (
-    "// Copyright (C) 2020-2023 Free Software Foundation, Inc.\n"
+    "// Copyright (C) 2020-2024 Free Software Foundation, Inc.\n"
     "\n"
     "// This file is part of GCC.\n"
     "\n"
index b8994da2df9bdd439fb22a844d9076157d05451f..e284cec1a1615da3bb149d44d3b5a285f5d4aa2b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 24bbe7b3a285637e3a3ad3c56c2e1d538a7b40c5..2c30260a16a79bfe8e3c4ab72fd556b42413b168 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 0134f54a428aca66d07d69fc019ad0ce47f68b8e..295e9c25a8cf14f160a289b33034d3b803ae592d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 7fd0b365b9fae63735d0d6d874e72edcdc7381d7..847f022edc82c45f769ae7608cff1bd4970587af 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2021-2023 Free Software Foundation, Inc.
+// Copyright (C) 2021-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 9e1d2bcdef6b962406a32242b73e31108cdb784f..f21a0f96015ad50cfd7950482d103ff5d57eb9be 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 01c98a2cde4534c21b5f2928b7efc80480277fb8..d2c68c994dc5b0f3759d8fce83f5aff9a991cccf 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index a9c8cbfc5fca7e169fcf65cfbb787fcf46c7ab53..89476f2cc82fac7ade231f5ed827ad5cd60c1584 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index ffb139a5ff3fa6215ad62a19ce6a99374c3cdab6..b926ad648261fb92e05c0987b22e27bdc0654118 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index e07752a4f63bb1eda2bbd01a85d25b3e61ce2f50..8a66537809ceb54077d84279e2b32572a2f541a7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 6bd2db550a183065ff2dacbc8587b4506b6b9c1e..3dd1c1960d447c3e19c15eb277737397ce73a2ee 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index aa7bd8a563218e7149a0ce7b1a9241b60dfb46c6..5ea2efdae71bd8686aea657dc0be6a2616aed9c4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2023 Free Software Foundation, Inc.
+// Copyright (C) 2020-2024 Free Software Foundation, Inc.
 
 // This file is part of GCC.
 
index 4f33af187eacf453aea649abb42bb2b6bb2c7a40..594c2a45689b4a01b3e26d51e67a913b275bfd80 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 09de02a026f6095ec91308e26924b3ab66ed56fa..b25064a98519f6e270c07cecf34f9df4a6668167 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 007c3c6b574dda284c854caa9b12582b8f24f18a..541722e69db1a336785b7d7c9e51f10caec5d858 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 465fe3bfdb6980963636e049875fd0a499963b3d..00924e3c08e367a9e99fb40fb213884d76575b92 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 4a108cc055833c22ed726a7833f2d40249255ee5..76183d70d3a1beeba4bd4d728e78dc876e38dfd0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index ebe5ed401f1297d8ff5f56562f8eb3de3a10c580..2930b73234206bedcb873d28f071b7c5f2a75d6a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index f22b4e7dffa585aeab4692572664cece8d18514b..bc81cfe7e81f49d81bbaa315834fd48649aa4e54 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 42cba6264ce6349709929afbc20ba0d5cc732498..5d8382f0107ce715cdbeedb1acf73b4c5558a9f3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 46286d566ce85537f1c6e5af094ab0003d493ab7..0fafebb6b0c634d7818e2a98d022cdd42d3c42d4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 21a3a999ead96c60af25195e3c1cdb56b9cf912b..cdbd2d38ddc5d4bf57ec5cdcefa5af85f9bae3bd 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 8b7662a8337f297a38d555e61165395ecc15e50f..87017e8cfcb327437a429f9edb528e23a772b4f8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 05cc28b1af240403754995491c3f06ee10006cb7..a22839342d97d63bd2f10e73c9bf1f02e85b7285 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 40c378e10d949f6803ee1b86ca99e1fc995b2d5a..b038790dafb9d6187b21fab2fb96d97d6b74f1ea 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 5ea2db85af585bc471b5cbf38ed52b719f8d969a..d6af551102a3e945b29a588c4e9c1700ae82921d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 4981ddebb737540101de8a28d07a6e5e7eaf77f3..1b2ff0671e278212882650e24f1d8554832f965f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 47eedffc4c147b48d3fbc17d9ef2e1858c0a614c..df9118a362155b9a7a5d670dcf7d8be8a5d8f5ee 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 2de674cfcfbc5d0b7acb0a87ef23b0d7790950a9..ded46bc1667197b3797efbc1e09b4644b4531b4f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index c151645ee5fcd7362ae7c326018478b8d41e55c4..e176bc29985018e70b5c148f82f157b0facb8c1e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 38730d8afd9b6e7c918ef0c77c05594fe90675ea..adfbe1d7d388b9e3b75f20a74d8078a6473abaed 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index fa76d4b15a52a9b16ed469a3e22d7ad0e2023f06..fadc79f92dcb78aa8a617afd2c2f10a497f9bf4d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 221d38ec2fd94ee316060817b3b47681e0286d3a..759f5623012762ace0c786878e5299ababd11d8a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 66547d95585294f4c4f76469a9b2dc8a20308164..cdc9b0d5d95d098b9c803b8177662da8845aee1d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index ea09106cd62643a03cebc8930d6ba179ac974eeb..a8d4b8f674c3938ac5c9fee0af9c2521fbff7342 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 37ba0891dbef7838c1623e01c13fc4d5df602434..c8579471b9df2495a164a68286351f1807e9a24b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 0490673b6569066d0c987855d0512c90b302330c..9ef98487fc25e8b008ba9d4db45c187ab5759a58 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 9e142ffa79ffa1f2855d9db7a2f9a5453f8f40c6..ce9adb24734d7202c8e6cdd6b1ec9e00fc493f66 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 32450cc8ea6e46c2bf75d74eb8024aa9d61cc157..8aeace5f4e4ab07a2b042d39e386d454bb712d13 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 6d0146083bf081823dce24b87ddb23881d79a44e..76eb44535fb160032db5d4fc0dd69bd7bcbcff97 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 98e7c139c272265b7b8a543666e5179755df4f0c..dc4a2d3d29afe6b746141cd80d69e7459cd7fa85 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 62c8c57f6881078a0abbf35e1a09054b258e4e9f..c59418e14650b6802f452312f443c9db7bae30a3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 70ea9e7ea3dd60758f6de3a4d5789483bec83ebf..362a75f11cbc0a1014b986fadd9ecc7ee737d640 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 685f28424d24acb609f11eb63b84e6b0d1e0f942..b2fd9c98b84f5e05206666c00e18150cd0bf5cda 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 0fde5ea5397f8513dea2fa2674ddbe2114764180..4e13ce7690d9e0880418a7f27d132793e9013d9f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index b034a8c33e2e912565ad4938f6c5d63ff0cf09b3..6c15d7576014b2ed5e5d00c9cab7c07a43764602 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the
index 1a50ecf34474ae1cee2c12f4d17fc7942b978495..fe81e03516be65290f9a56e4ee196ae2f288fe8c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2023 Free Software Foundation, Inc.
+// Copyright (C) 2023-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU Proc Macro Library.  This library is free
 // software; you can redistribute it and/or modify it under the