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
46bbeb65
Commit
46bbeb65
authored
Jan 05, 2007
by
Ben Elliston
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert revision 120457.
From-SVN: r120458
parent
93c5d31c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
6 deletions
+1
-6
libstdc++-v3/ChangeLog
+0
-5
libstdc++-v3/src/strstream.cc
+1
-1
No files found.
libstdc++-v3/ChangeLog
View file @
46bbeb65
2007-01-05 Ben Elliston <bje@au.ibm.com>
* src/strstream.cc (strstreambuf::seekoff): Add parentheses around
truth expression to eliminate a new warning from g++.
2006-12-29 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/30226
...
...
libstdc++-v3/src/strstream.cc
View file @
46bbeb65
...
...
@@ -235,7 +235,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
if
((
mode
&
(
ios_base
::
in
|
ios_base
::
out
))
==
(
ios_base
::
in
|
ios_base
::
out
)
&&
(
dir
==
ios_base
::
beg
||
dir
==
ios_base
::
end
))
do_get
=
(
do_put
=
true
)
;
do_get
=
do_put
=
true
;
else
if
(
mode
&
ios_base
::
in
)
do_get
=
true
;
else
if
(
mode
&
ios_base
::
out
)
...
...
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