From patchwork Wed Jan 2 06:22:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joel Brobecker X-Patchwork-Id: 30933 Received: (qmail 91832 invoked by alias); 2 Jan 2019 06:22:30 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 91819 invoked by uid 89); 2 Jan 2019 06:22:30 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=201901, our X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 02 Jan 2019 06:22:28 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 39925561D5 for ; Wed, 2 Jan 2019 01:22:27 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ZkNjqH1MgnF6 for ; Wed, 2 Jan 2019 01:22:27 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id BED32561D4 for ; Wed, 2 Jan 2019 01:22:26 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id A267D867B9; Wed, 2 Jan 2019 10:22:21 +0400 (+04) From: Joel Brobecker To: gdb-patches@sourceware.org Subject: [pushed] Fix year range in unittests/.../char/empty.cc copyright header Date: Wed, 2 Jan 2019 10:22:18 +0400 Message-Id: <20190102062218.6215-1-brobecker@adacore.com> Hello, The year range in the copyright header of that file was incorrect: // Copyright (C) 3 Free Software Foundation, Inc. Tracing the origin of this file down, I found that it was copied from GCC's libstdc++-v3 testsuite: Adapt and integrate string_view tests https://www.sourceware.org/ml/gdb-patches/2018-04/msg00113.html Looking at the version in GCC, I found the same issue, so sent a fix there: https://gcc.gnu.org/ml/gcc-patches/2019-01/msg00000.html Now that the fix is in GCC, this commit applies the same fix to our copy. gdb/ChangeLog: * unittests/basic_string_view/element_access/char/empty.cc: Fix year range in copyright header. pushed to master. Thanks, diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6bb9ce7fbbe..5f48a6e17ee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2019-01-02 Joel Brobecker + + * unittests/basic_string_view/element_access/char/empty.cc: + Fix year range in copyright header. + 2019-01-01 Andrew Burgess * arch/riscv.h (struct riscv_gdbarch_features) : diff --git a/gdb/unittests/basic_string_view/element_access/char/empty.cc b/gdb/unittests/basic_string_view/element_access/char/empty.cc index 97e85d675f2..10739404999 100644 --- a/gdb/unittests/basic_string_view/element_access/char/empty.cc +++ b/gdb/unittests/basic_string_view/element_access/char/empty.cc @@ -1,6 +1,6 @@ // { dg-options "-std=gnu++17" } -// Copyright (C) 3 Free Software Foundation, Inc. +// Copyright (C) 2013-2019 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the