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
caff45a6
Commit
caff45a6
authored
Aug 12, 2014
by
Jonathan Wakely
Committed by
Jonathan Wakely
Aug 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/bits/basic_string.h (getline): Declare inline.
From-SVN: r213873
parent
2e45addf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
libstdc++-v3/ChangeLog
+2
-0
libstdc++-v3/include/bits/basic_string.h
+1
-1
No files found.
libstdc++-v3/ChangeLog
View file @
caff45a6
...
...
@@ -7,6 +7,8 @@
* testsuite/21_strings/basic_string/inserters_extractors/wchar_t/12.cc:
New.
* include/bits/basic_string.h (getline): Declare inline.
2014-08-09 Ulrich Drepper <drepper@gmail.com>
* include/ext/random.tcc (uniform_on_sphere_helper): Define.
...
...
libstdc++-v3/include/bits/basic_string.h
View file @
caff45a6
...
...
@@ -2816,7 +2816,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
#if __cplusplus >= 201103L
/// Read a line from an rvalue stream into a string.
template
<
typename
_CharT
,
typename
_Traits
,
typename
_Alloc
>
basic_istream
<
_CharT
,
_Traits
>&
inline
basic_istream
<
_CharT
,
_Traits
>&
getline
(
basic_istream
<
_CharT
,
_Traits
>&&
__is
,
basic_string
<
_CharT
,
_Traits
,
_Alloc
>&
__str
,
_CharT
__delim
)
{
return
std
::
getline
(
__is
,
__str
,
__delim
);
}
...
...
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