From: redi Date: Tue, 26 May 2015 09:52:25 +0000 (+0000) Subject: * include/bits/locale_conv.h: Fix copyright years. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07360f23ef9c3e85e0c161fa6357a048c8229ec2;p=thirdparty%2Fgcc.git * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223676 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 412c8a30ff45..af08a735d11d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,20 @@ +2015-05-26 Jonathan Wakely + + * 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. + 2015-05-23 François Dumont fdumont@gcc.gnu.org> PR libstdc++/64657 diff --git a/libstdc++-v3/include/bits/locale_conv.h b/libstdc++-v3/include/bits/locale_conv.h index 8878aa1310b1..8b0a77ce317d 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 0805e08cc438..7e75ce4b969b 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 c6e06c87a6b0..128cba9f52ad 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 f008f5a1111a..9d781cb21680 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 c59c6d62f341..cb9b67432675 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 c2ab6e743e41..a1c6478b5d96 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 9341f8928c45..a4c8d9b9ecef 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 6afa62ba2d1b..382f641bb1be 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 65a14584fba0..56a90f5b0d31 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 baed16e964d3..09e44a61e895 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 3873a609a5ff..524972ece9b7 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