Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
427f68c6
Commit
427f68c6
authored
Jul 27, 2016
by
Jonathan Wakely
Committed by
Jonathan Wakely
Jul 27, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* testsuite/20_util/forward/1_neg.cc: Move dg-error to right line.
From-SVN: r238793
parent
a01fc549
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/testsuite/20_util/forward/1_neg.cc
+3
-2
No files found.
libstdc++-v3/ChangeLog
View file @
427f68c6
2016-07-27 Jonathan Wakely <jwakely@redhat.com>
* testsuite/20_util/forward/1_neg.cc: Move dg-error to right line.
2016-07-25 Georeth Chow <georeth2010@gmail.com>
* include/ext/ropeimpl.h (rope<>::_S_dump(_RopeRep*, int)): Qualify
...
...
libstdc++-v3/testsuite/20_util/forward/1_neg.cc
View file @
427f68c6
...
...
@@ -27,8 +27,9 @@ template<class T, class A1, class A2>
std
::
shared_ptr
<
T
>
factory
(
A1
&&
a1
,
A2
&&
a2
)
{
return
std
::
shared_ptr
<
T
>
(
new
T
(
std
::
forward
<
A1
>
(
a1
),
std
::
forward
<
A2
>
(
a2
)));
// { dg-error "rvalue" }
return
std
::
shared_ptr
<
T
>
(
new
T
(
std
::
forward
<
A1
>
(
a1
),
// { dg-error "rvalue" }
std
::
forward
<
A2
>
(
a2
)));
}
struct
A
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment