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
15f13f01
Commit
15f13f01
authored
Mar 15, 2001
by
Gabriel Dos Reis
Committed by
Gabriel Dos Reis
Mar 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/bits/basic_string.tcc (operator+): Fix thinko.
From-SVN: r40493
parent
285b9231
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/bits/basic_string.tcc
+1
-1
No files found.
libstdc++-v3/ChangeLog
View file @
15f13f01
2001-03-15 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
* include/bits/basic_string.tcc (operator+): Fix thinko.
2001-03-14 Benjamin Kosnik <bkoz@redhat.com>
libstdc++/2020
...
...
libstdc++-v3/include/bits/basic_string.tcc
View file @
15f13f01
...
...
@@ -549,7 +549,7 @@ namespace std
__string_type __str;
__size_type __len = __rhs.size();
__str.reserve(__len + 1);
__str.append(__s
tring_type::s
ize_type(1), __lhs);
__str.append(__size_type(1), __lhs);
__str.append(__rhs);
return __str;
}
...
...
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