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
d027507e
Commit
d027507e
authored
May 24, 2000
by
Ulrich Drepper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(endl): Fix bug in last change.
(ends): Make same change as for endl. From-SVN: r34128
parent
3c56b105
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
libio/iostream.cc
+3
-2
No files found.
libio/iostream.cc
View file @
d027507e
...
@@ -957,13 +957,14 @@ int istream::_skip_ws()
...
@@ -957,13 +957,14 @@ int istream::_skip_ws()
ostream
&
ends
(
ostream
&
outs
)
ostream
&
ends
(
ostream
&
outs
)
{
{
outs
.
put
(
'\0'
);
if
(
outs
.
opfx
())
outs
.
put
(
'\0'
);
return
outs
;
return
outs
;
}
}
ostream
&
endl
(
ostream
&
outs
)
ostream
&
endl
(
ostream
&
outs
)
{
{
if
(
o
pfx
)
if
(
o
uts
.
opfx
()
)
flush
(
outs
.
put
(
'\n'
));
flush
(
outs
.
put
(
'\n'
));
return
outs
;
return
outs
;
}
}
...
...
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