From a11d53e30d3d19cf6594cf4bd4cf39ba0271899d Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 17 Nov 2022 15:32:38 +0100 Subject: [PATCH] [lldb] fix license header in TraceHTR.h It seems like the license header got mangled somehow, joining multiple lines together and splitting some lines across multiple ones. That is causing errors in a license checker I'm using (called REUSE). This commit restores the license header to the format used by the rest of the files in the project. Differential Revision: https://reviews.llvm.org/D138271 --- lldb/source/Plugins/TraceExporter/common/TraceHTR.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lldb/source/Plugins/TraceExporter/common/TraceHTR.h b/lldb/source/Plugins/TraceExporter/common/TraceHTR.h index 03babc5..3f5d6f2 100644 --- a/lldb/source/Plugins/TraceExporter/common/TraceHTR.h +++ b/lldb/source/Plugins/TraceExporter/common/TraceHTR.h @@ -1,9 +1,8 @@ //===-- TraceHTR.h --------------------------------------------------------===// // -// Part of the LLVM Project, under the Apache -// License v2.0 with LLVM Exceptions.// See https://llvm.org/LICENSE.txt for -// license information.// SPDX-License-Identifier: Apache-2.0 WITH -// LLVM-exception +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// -- 2.7.4