public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Ville Voutilainen <ville@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r11-6086] libstdc++: Fix the test for rvalue stream extraction
Date: Tue, 15 Dec 2020 16:05:09 +0000 (GMT)	[thread overview]
Message-ID: <20201215160509.E08413844046@sourceware.org> (raw)

https://gcc.gnu.org/g:4e096e0ff8c428572353a519cdf8726ef3f70f73

commit r11-6086-g4e096e0ff8c428572353a519cdf8726ef3f70f73
Author: Ville Voutilainen <ville.voutilainen@gmail.com>
Date:   Tue Dec 15 12:05:51 2020 +0200

    libstdc++: Fix the test for rvalue stream extraction
    
    libstdc++-v3/ChangeLog:
    
            * testsuite/27_io/rvalue_streams.cc: Run the extraction to a char*
            for C++17 and lower only.

Diff:
---
 libstdc++-v3/testsuite/27_io/rvalue_streams.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libstdc++-v3/testsuite/27_io/rvalue_streams.cc b/libstdc++-v3/testsuite/27_io/rvalue_streams.cc
index ad4d11c7cf3..487aa4deedd 100644
--- a/libstdc++-v3/testsuite/27_io/rvalue_streams.cc
+++ b/libstdc++-v3/testsuite/27_io/rvalue_streams.cc
@@ -53,7 +53,9 @@ test02()
   VERIFY( x.as_rvalue == true );
 
   char arr[2];
+#if __cplusplus <= 201703L
   std::istringstream("x") >> &arr[0];
+#endif
   std::istringstream("x") >> arr;
 }


                 reply	other threads:[~2020-12-15 16:05 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201215160509.E08413844046@sourceware.org \
    --to=ville@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).