From c8161be23a375b2c15075085d5db0920a654488c Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 5 Dec 2025 15:35:44 -0500 Subject: [PATCH] Add missing `SPDX-License-Identifier: MIT` comments --- src/cli.cpp | 2 ++ src/link/fstack.cpp | 2 ++ test/gfx/randtilegen.cpp | 2 +- test/gfx/rgbgfx_test.cpp | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/cli.cpp b/src/cli.cpp index 4e8538b8..61634e13 100644 --- a/src/cli.cpp +++ b/src/cli.cpp @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: MIT + #include "cli.hpp" #include diff --git a/src/link/fstack.cpp b/src/link/fstack.cpp index b8850a19..58b6e0c3 100644 --- a/src/link/fstack.cpp +++ b/src/link/fstack.cpp @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: MIT + #include "link/fstack.hpp" #include diff --git a/test/gfx/randtilegen.cpp b/test/gfx/randtilegen.cpp index 089de824..7568d00f 100644 --- a/test/gfx/randtilegen.cpp +++ b/test/gfx/randtilegen.cpp @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: MIT */ +// SPDX-License-Identifier: MIT /* * Originally: diff --git a/test/gfx/rgbgfx_test.cpp b/test/gfx/rgbgfx_test.cpp index 0b88ca23..f1f1a177 100644 --- a/test/gfx/rgbgfx_test.cpp +++ b/test/gfx/rgbgfx_test.cpp @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: MIT */ +// SPDX-License-Identifier: MIT #include #include