Skip to content

Commit 51d688e

Browse files
committed
Fix headers
1 parent 2c68731 commit 51d688e

File tree

50 files changed

+126
-123
lines changed

Some content is hidden

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

50 files changed

+126
-123
lines changed

.bazelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ build:arm64-qnx --extra_toolchains=@score_toolchains_rust//toolchains/ferrocene:
1515

1616
common --extra_toolchains=@score_gcc_x86_64_toolchain//:x86_64-linux-gcc_12.2.0-posix
1717
common --extra_toolchains=@score_toolchains_rust//toolchains/ferrocene:ferrocene_x86_64_unknown_linux_gnu
18+
19+
# Deprecated configurations
20+
build:build_qnx8 --config=arm64-qnx

examples/log_builtin/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
1+
// *******************************************************************************
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
@@ -9,7 +9,7 @@
99
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
12-
//
12+
// *******************************************************************************
1313

1414
//! Example app utilizing built-in backend implementation.
1515

examples/log_cpp_init/src/example_lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
1+
// *******************************************************************************
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
@@ -9,7 +9,7 @@
99
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
12-
//
12+
// *******************************************************************************
1313

1414
//! Module contains functions printing example logs.
1515
//! Based on `//score/mw/log/rust/score_log_bridge:example`.

examples/log_custom/src/logger.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
1+
// *******************************************************************************
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
@@ -9,7 +9,7 @@
99
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
12-
//
12+
// *******************************************************************************
1313

1414
use core::fmt::Write;
1515
use score_log::fmt::{write, Error, FormatSpec, Result as FmtResult, ScoreWrite};

examples/log_custom/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
1+
// *******************************************************************************
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
@@ -9,7 +9,7 @@
99
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
12-
//
12+
// *******************************************************************************
1313

1414
//! Example app containing basic logger implementation.
1515

src/containers/fixed_capacity/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
66
//
77
// This program and the accompanying materials are made available under the
88
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
9+
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************

src/containers/fixed_capacity/queue.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
66
//
77
// This program and the accompanying materials are made available under the
88
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
9+
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************

src/containers/fixed_capacity/string.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
66
//
77
// This program and the accompanying materials are made available under the
88
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
9+
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************

src/containers/fixed_capacity/vec.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
66
//
77
// This program and the accompanying materials are made available under the
88
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
9+
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************

src/containers/generic/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// *******************************************************************************
2-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
2+
// Copyright (c) 2026 Contributors to the Eclipse Foundation
33
//
44
// See the NOTICE file(s) distributed with this work for additional
55
// information regarding copyright ownership.
66
//
77
// This program and the accompanying materials are made available under the
88
// terms of the Apache License Version 2.0 which is available at
9-
// https://www.apache.org/licenses/LICENSE-2.0
9+
// <https://www.apache.org/licenses/LICENSE-2.0>
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************

0 commit comments

Comments
 (0)