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
6e2d247b
Commit
6e2d247b
authored
Apr 16, 2014
by
Jonathan Wakely
Committed by
Jonathan Wakely
Apr 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/std/functional (__is_location_invariant): Use __or_ helper.
From-SVN: r209445
parent
23b0af0a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/std/functional
+1
-2
No files found.
libstdc++-v3/ChangeLog
View file @
6e2d247b
2014-04-16 Jonathan Wakely <jwakely@redhat.com>
* include/std/functional (__is_location_invariant): Use __or_ helper.
2014-04-15 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/60734
...
...
libstdc++-v3/include/std/functional
View file @
6e2d247b
...
...
@@ -1747,8 +1747,7 @@ _GLIBCXX_HAS_NESTED_TYPE(result_type)
*/
template<typename _Tp>
struct __is_location_invariant
: integral_constant<bool, (is_pointer<_Tp>::value
|| is_member_pointer<_Tp>::value)>
: __or_<is_pointer<_Tp>, is_member_pointer<_Tp>>::type
{ };
class _Undefined_class;
...
...
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