From: Joel Rosdahl Date: Sun, 25 May 2025 17:52:44 +0000 (+0200) Subject: chore: Fix source file headers X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=8f802a8c3c355327f8dc1264ac02e32fcb8276d8;p=thirdparty%2Fccache.git chore: Fix source file headers --- diff --git a/src/ccache/util/clang.cpp b/src/ccache/util/clang.cpp index 9a2e6656..4e3a2869 100644 --- a/src/ccache/util/clang.cpp +++ b/src/ccache/util/clang.cpp @@ -1,3 +1,21 @@ +// Copyright (C) 2025 Joel Rosdahl and other contributors +// +// See doc/AUTHORS.adoc for a complete list of contributors. +// +// This program is free software; you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation; either version 3 of the License, or (at your option) +// any later version. +// +// This program is distributed in the hope that it will be useful, but WITHOUT +// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// this program; if not, write to the Free Software Foundation, Inc., 51 +// Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + #include "clang.hpp" #include @@ -44,4 +62,4 @@ split_preprocess_file_in_clang_cuda(const std::string& mixed_preprocessed_path) return split_preprocess_file_list; } -} // namespace util \ No newline at end of file +} // namespace util diff --git a/src/ccache/util/clang.hpp b/src/ccache/util/clang.hpp index 211d625c..4c7a262d 100644 --- a/src/ccache/util/clang.hpp +++ b/src/ccache/util/clang.hpp @@ -1,3 +1,21 @@ +// Copyright (C) 2025 Joel Rosdahl and other contributors +// +// See doc/AUTHORS.adoc for a complete list of contributors. +// +// This program is free software; you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation; either version 3 of the License, or (at your option) +// any later version. +// +// This program is distributed in the hope that it will be useful, but WITHOUT +// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// this program; if not, write to the Free Software Foundation, Inc., 51 +// Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + #pragma once #include diff --git a/unittest/test_util_clang.cpp b/unittest/test_util_clang.cpp index 783f84e9..522630df 100644 --- a/unittest/test_util_clang.cpp +++ b/unittest/test_util_clang.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2021-2024 Joel Rosdahl and other contributors +// Copyright (C) 2025 Joel Rosdahl and other contributors // // See doc/AUTHORS.adoc for a complete list of contributors. //