diff mbox

[v3] Fix some copyright years

Message ID 20150526095211.GB2985@redhat.com
State New
Headers show

Commit Message

Jonathan Wakely May 26, 2015, 9:52 a.m. UTC
A few files I added earlier this year are missing 2015 in the list of
copyright years, because I forgot to update them when moving them from
local branches to the FSF repo.

Committed to trunk.
diff mbox

Patch

commit 378bbf405af6b83dd44c9d92b6e819a0af3e7697
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue May 26 10:25:24 2015 +0100

    	* include/bits/locale_conv.h: Fix copyright years.
    	* include/bits/quoted_string.h: Likewise.
    	* src/filesystem/Makefile.am: Likewise.
    	* testsuite/22_locale/conversions/buffer/1.cc: Likewise.
    	* testsuite/22_locale/conversions/buffer/requirements/typedefs.cc:
    	Likewise.
    	* testsuite/22_locale/conversions/string/1.cc: Likewise.
    	* testsuite/22_locale/conversions/string/2.cc: Likewise.
    	* testsuite/22_locale/conversions/string/3.cc: Likewise.
    	* testsuite/22_locale/conversions/string/requirements/typedefs-2.cc:
    	Likewise.
    	* testsuite/22_locale/conversions/string/requirements/typedefs.cc:
    	Likewise.
    	* testsuite/util/testsuite_fs.h: Likewise.

diff --git a/libstdc++-v3/include/bits/locale_conv.h b/libstdc++-v3/include/bits/locale_conv.h
index 8878aa1..8b0a77c 100644
--- a/libstdc++-v3/include/bits/locale_conv.h
+++ b/libstdc++-v3/include/bits/locale_conv.h
@@ -1,6 +1,6 @@ 
 // wstring_convert implementation -*- C++ -*-
 
-// Copyright (C) 2012 Free Software Foundation, Inc.
+// Copyright (C) 2015 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
diff --git a/libstdc++-v3/include/bits/quoted_string.h b/libstdc++-v3/include/bits/quoted_string.h
index 0805e08..7e75ce4 100644
--- a/libstdc++-v3/include/bits/quoted_string.h
+++ b/libstdc++-v3/include/bits/quoted_string.h
@@ -1,6 +1,6 @@ 
 // Helpers for quoted stream manipulators -*- C++ -*-
 
-// Copyright (C) 2013-2014 Free Software Foundation, Inc.
+// Copyright (C) 2013-2015 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
diff --git a/libstdc++-v3/src/filesystem/Makefile.am b/libstdc++-v3/src/filesystem/Makefile.am
index c6e06c8..128cba9 100644
--- a/libstdc++-v3/src/filesystem/Makefile.am
+++ b/libstdc++-v3/src/filesystem/Makefile.am
@@ -1,6 +1,6 @@ 
 ## Makefile for the GNU C++ Filesystem library.
 ##
-## Copyright (C) 2014 Free Software Foundation, Inc.
+## Copyright (C) 2014-2015 Free Software Foundation, Inc.
 ##
 ## Process this file with automake to produce Makefile.in.
 ##
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/buffer/1.cc b/libstdc++-v3/testsuite/22_locale/conversions/buffer/1.cc
index f008f5a..9d781cb 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/buffer/1.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/buffer/1.cc
@@ -1,6 +1,6 @@ 
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/buffer/requirements/typedefs.cc b/libstdc++-v3/testsuite/22_locale/conversions/buffer/requirements/typedefs.cc
index c59c6d6..cb9b674 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/buffer/requirements/typedefs.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/buffer/requirements/typedefs.cc
@@ -1,7 +1,7 @@ 
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/string/1.cc b/libstdc++-v3/testsuite/22_locale/conversions/string/1.cc
index c2ab6e7..a1c6478 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/string/1.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/string/1.cc
@@ -1,7 +1,7 @@ 
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/string/2.cc b/libstdc++-v3/testsuite/22_locale/conversions/string/2.cc
index 9341f892..a4c8d9b 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/string/2.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/string/2.cc
@@ -1,6 +1,6 @@ 
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/string/3.cc b/libstdc++-v3/testsuite/22_locale/conversions/string/3.cc
index 6afa62b..382f641 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/string/3.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/string/3.cc
@@ -1,6 +1,6 @@ 
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs-2.cc b/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs-2.cc
index 65a1458..56a90f5 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs-2.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs-2.cc
@@ -1,7 +1,7 @@ 
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs.cc b/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs.cc
index baed16e..09e44a6 100644
--- a/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs.cc
+++ b/libstdc++-v3/testsuite/22_locale/conversions/string/requirements/typedefs.cc
@@ -1,7 +1,7 @@ 
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
 
-// Copyright (C) 2012 Free Software Foundation
+// Copyright (C) 2015 Free Software Foundation
 //
 // 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
diff --git a/libstdc++-v3/testsuite/util/testsuite_fs.h b/libstdc++-v3/testsuite/util/testsuite_fs.h
index 3873a60..524972e 100644
--- a/libstdc++-v3/testsuite/util/testsuite_fs.h
+++ b/libstdc++-v3/testsuite/util/testsuite_fs.h
@@ -1,7 +1,7 @@ 
 // -*- C++ -*-
 // Filesystem utils for the C++ library testsuite.
 //
-// Copyright (C) 2014 Free Software Foundation, Inc.
+// Copyright (C) 2014-2015 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