This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix year range in unittests/.../char/empty.cc copyright header


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4ada3dfd5c07f0f1045a721a28fc905918ffbdfd

commit 4ada3dfd5c07f0f1045a721a28fc905918ffbdfd
Author: Joel Brobecker <brobecker@adacore.com>
Date:   Wed Jan 2 10:11:41 2019 +0400

    Fix year range in unittests/.../char/empty.cc copyright header
    
    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.

Diff:
---
 gdb/ChangeLog                                                | 5 +++++
 gdb/unittests/basic_string_view/element_access/char/empty.cc | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6bb9ce7..5f48a6e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-02  Joel Brobecker  <brobecker@adacore.com>
+
+	* unittests/basic_string_view/element_access/char/empty.cc:
+	Fix year range in copyright header.
+
 2019-01-01  Andrew Burgess  <andrew.burgess@embecosm.com>
 
 	* arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
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 97e85d6..1073940 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]