diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2025-03-28 16:00:21 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2025-03-28 16:00:21 -0400 |
| commit | f77dbcea6074966d81a44e2ce0dd83671a056c4d (patch) | |
| tree | 655a00ea5015dc99a406362e41d7daf7954fe1f7 /plugins | |
| parent | 7b12d8d25003ea7bcb06985d558af35b45726088 (diff) | |
belated copyright year update
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/die_handlers.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/functions.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/helpers.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/lib.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/types.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/dwarfdump/src/lib.rs | 2 | ||||
| -rw-r--r-- | plugins/dwarf/shared/src/lib.rs | 2 | ||||
| -rw-r--r-- | plugins/pdb-ng/src/lib.rs | 2 | ||||
| -rw-r--r-- | plugins/pdb-ng/src/parser.rs | 2 | ||||
| -rw-r--r-- | plugins/pdb-ng/src/struct_grouper.rs | 2 | ||||
| -rw-r--r-- | plugins/pdb-ng/src/symbol_parser.rs | 2 | ||||
| -rw-r--r-- | plugins/pdb-ng/src/type_parser.rs | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/plugins/dwarf/dwarf_import/src/die_handlers.rs b/plugins/dwarf/dwarf_import/src/die_handlers.rs index e7a04d6a..52280320 100644 --- a/plugins/dwarf/dwarf_import/src/die_handlers.rs +++ b/plugins/dwarf/dwarf_import/src/die_handlers.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs b/plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs index 6bf71489..672bdf68 100644 --- a/plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs +++ b/plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarf_import/src/functions.rs b/plugins/dwarf/dwarf_import/src/functions.rs index 47829503..9f2669aa 100644 --- a/plugins/dwarf/dwarf_import/src/functions.rs +++ b/plugins/dwarf/dwarf_import/src/functions.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarf_import/src/helpers.rs b/plugins/dwarf/dwarf_import/src/helpers.rs index 0a0b90a7..e6f30a3b 100644 --- a/plugins/dwarf/dwarf_import/src/helpers.rs +++ b/plugins/dwarf/dwarf_import/src/helpers.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarf_import/src/lib.rs b/plugins/dwarf/dwarf_import/src/lib.rs index f850d3ad..7e4e10ee 100644 --- a/plugins/dwarf/dwarf_import/src/lib.rs +++ b/plugins/dwarf/dwarf_import/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarf_import/src/types.rs b/plugins/dwarf/dwarf_import/src/types.rs index ca5a20da..1e9dd146 100644 --- a/plugins/dwarf/dwarf_import/src/types.rs +++ b/plugins/dwarf/dwarf_import/src/types.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/dwarfdump/src/lib.rs b/plugins/dwarf/dwarfdump/src/lib.rs index 7bdbd8a0..4663b0b1 100644 --- a/plugins/dwarf/dwarfdump/src/lib.rs +++ b/plugins/dwarf/dwarfdump/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/dwarf/shared/src/lib.rs b/plugins/dwarf/shared/src/lib.rs index e769b44e..b12aeab1 100644 --- a/plugins/dwarf/shared/src/lib.rs +++ b/plugins/dwarf/shared/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2021-2024 Vector 35 Inc. +// Copyright 2021-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/pdb-ng/src/lib.rs b/plugins/pdb-ng/src/lib.rs index e30221c9..2c1049b0 100644 --- a/plugins/pdb-ng/src/lib.rs +++ b/plugins/pdb-ng/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022-2024 Vector 35 Inc. +// Copyright 2022-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/pdb-ng/src/parser.rs b/plugins/pdb-ng/src/parser.rs index 00b44e70..101b8868 100644 --- a/plugins/pdb-ng/src/parser.rs +++ b/plugins/pdb-ng/src/parser.rs @@ -1,4 +1,4 @@ -// Copyright 2022-2024 Vector 35 Inc. +// Copyright 2022-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/pdb-ng/src/struct_grouper.rs b/plugins/pdb-ng/src/struct_grouper.rs index 219f5198..09a81fa7 100644 --- a/plugins/pdb-ng/src/struct_grouper.rs +++ b/plugins/pdb-ng/src/struct_grouper.rs @@ -1,4 +1,4 @@ -// Copyright 2022-2024 Vector 35 Inc. +// Copyright 2022-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/pdb-ng/src/symbol_parser.rs b/plugins/pdb-ng/src/symbol_parser.rs index 3bcbb620..6d6e978e 100644 --- a/plugins/pdb-ng/src/symbol_parser.rs +++ b/plugins/pdb-ng/src/symbol_parser.rs @@ -1,4 +1,4 @@ -// Copyright 2022-2024 Vector 35 Inc. +// Copyright 2022-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/plugins/pdb-ng/src/type_parser.rs b/plugins/pdb-ng/src/type_parser.rs index 1c32bb56..7910e13a 100644 --- a/plugins/pdb-ng/src/type_parser.rs +++ b/plugins/pdb-ng/src/type_parser.rs @@ -1,4 +1,4 @@ -// Copyright 2022-2024 Vector 35 Inc. +// Copyright 2022-2025 Vector 35 Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. |
