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
0812493f
Commit
0812493f
authored
Mar 31, 2014
by
Jonathan Wakely
Committed by
Jonathan Wakely
Mar 31, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* libsupc++/eh_ptr.cc: Improve static_assert messages.
From-SVN: r208965
parent
a283136a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/libsupc++/eh_ptr.cc
+4
-2
No files found.
libstdc++-v3/ChangeLog
View file @
0812493f
2014-03-31 Jonathan Wakely <jwakely@redhat.com>
* libsupc++/eh_ptr.cc: Improve static_assert messages.
2014-03-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* testsuite/18_support/exception_ptr/60612-terminate.cc
...
...
libstdc++-v3/libsupc++/eh_ptr.cc
View file @
0812493f
...
...
@@ -48,7 +48,8 @@ template<typename Ex>
static_assert
(
termHandler
<
__cxa_exception
>
()
==
termHandler
<
__cxa_dependent_exception
>
(),
"__cxa_dependent_exception::termHandler layout is correct"
);
"__cxa_dependent_exception::termHandler layout must be"
" consistent with __cxa_exception::termHandler"
);
#ifndef __ARM_EABI_UNWINDER__
template
<
typename
Ex
>
...
...
@@ -57,7 +58,8 @@ template<typename Ex>
static_assert
(
adjptr
<
__cxa_exception
>
()
==
adjptr
<
__cxa_dependent_exception
>
(),
"__cxa_dependent_exception::adjustedPtr layout is correct"
);
"__cxa_dependent_exception::adjustedPtr layout must be"
" consistent with __cxa_exception::adjustedPtr"
);
#endif
}
...
...
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