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
b9de84c9
Commit
b9de84c9
authored
Apr 15, 2014
by
Jonathan Wakely
Committed by
Jonathan Wakely
Apr 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/experimental/string_view: Fix inconsistent exception specs.
From-SVN: r209433
parent
a1e1bc90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
libstdc++-v3/ChangeLog
+2
-0
libstdc++-v3/include/experimental/string_view
+2
-2
No files found.
libstdc++-v3/ChangeLog
View file @
b9de84c9
...
...
@@ -54,6 +54,8 @@
* testsuite/ext/throw_value/cons.cc: Fix most vexing parse.
* testsuite/util/testsuite_common_types.h: Update comment.
* include/experimental/string_view: Fix inconsistent exception specs.
2014-04-14 Jonathan Wakely <jwakely@redhat.com>
* include/bits/stl_vector.h (_Vector_base::_Vector_impl,
...
...
libstdc++-v3/include/experimental/string_view
View file @
b9de84c9
...
...
@@ -329,7 +329,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
find(_CharT __c, size_type __pos=0) const noexcept;
size_type
find(const _CharT* __str, size_type __pos, size_type __n) const;
find(const _CharT* __str, size_type __pos, size_type __n) const
noexcept
;
size_type
find(const _CharT* __str, size_type __pos=0) const noexcept
...
...
@@ -343,7 +343,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
rfind(_CharT __c, size_type __pos = npos) const noexcept;
size_type
rfind(const _CharT* __str, size_type __pos, size_type __n) const;
rfind(const _CharT* __str, size_type __pos, size_type __n) const
noexcept
;
size_type
rfind(const _CharT* __str, size_type __pos = npos) const noexcept
...
...
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