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
e363df3f
Commit
e363df3f
authored
Jan 10, 2017
by
Jason Merrill
Committed by
Jason Merrill
Jan 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-cppbuiltin.c (c_cpp_builtins): Define __cpp_variadic_using.
From-SVN: r244283
parent
2af5cb50
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/c-family/ChangeLog
+5
-0
gcc/c-family/c-cppbuiltin.c
+1
-0
gcc/testsuite/g++.dg/cpp1z/feat-cxx1z.C
+6
-0
No files found.
gcc/c-family/ChangeLog
View file @
e363df3f
2017
-
01
-
10
Jason
Merrill
<
jason
@
redhat
.
com
>
Implement
P0195R2
,
C
++
17
variadic
using
.
*
c
-
cppbuiltin
.
c
(
c_cpp_builtins
):
Define
__cpp_variadic_using
.
2017
-
01
-
09
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
PR
translation
/
79019
...
...
gcc/c-family/c-cppbuiltin.c
View file @
e363df3f
...
...
@@ -970,6 +970,7 @@ c_cpp_builtins (cpp_reader *pfile)
cpp_define
(
pfile
,
"__cpp_noexcept_function_type=201510"
);
cpp_define
(
pfile
,
"__cpp_template_auto=201606"
);
cpp_define
(
pfile
,
"__cpp_structured_bindings=201606"
);
cpp_define
(
pfile
,
"__cpp_variadic_using=201611"
);
}
if
(
flag_concepts
)
cpp_define
(
pfile
,
"__cpp_concepts=201507"
);
...
...
gcc/testsuite/g++.dg/cpp1z/feat-cxx1z.C
View file @
e363df3f
...
...
@@ -404,6 +404,12 @@
# error "__cpp_template_template_args != 201611"
#endif
#ifndef __cpp_variadic_using
# error "__cpp_variadic_using"
#elif __cpp_variadic_using != 201611
# error "__cpp_variadic_using != 201611"
#endif
#ifdef __has_cpp_attribute
# if ! __has_cpp_attribute(maybe_unused)
...
...
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