Skip to content

Commit 39fe088

Browse files
fix(tests): fix malformed SPDX block comment in internal/main.cu
The SPDX header used bare `/* text` lines without closing `*/` on each line, leaving an unclosed C comment. Subsequent `/*` markers triggered -Werror=comment when internal/main.cu was compiled into new targets (e.g. ROUTING_UNIT_TEST). Use the standard block-comment style matching the rest of the test suite. Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
1 parent 746edb9 commit 39fe088

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

cpp/tests/internal/main.cu

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* clang-format off */
2-
/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3-
/* SPDX-License-Identifier: Apache-2.0
2+
/*
3+
* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
46
/* clang-format on */
57

68
#include <utilities/base_fixture.hpp>

0 commit comments

Comments
 (0)