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
1bd0b556
Commit
1bd0b556
authored
Apr 11, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Apr 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bitset: Re-install Alexandre's lost patch from 1998-11-27.
From-SVN: r26354
parent
2bcf042c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
libstdc++/stl/ChangeLog
+4
-0
libstdc++/stl/bitset
+2
-2
No files found.
libstdc++/stl/ChangeLog
View file @
1bd0b556
Sun Apr 11 23:48:30 1999 Jeffrey A Law (law@cygnus.com)
* bitset: Re-install Alexandre's lost patch from 1998-11-27.
1999-01-20 Ulrich Drepper <drepper@cygnus.com>
* stl_construct.h (__destroy_aux): Use != instead of < for
...
...
libstdc++/stl/bitset
View file @
1bd0b556
...
...
@@ -626,7 +626,7 @@ public:
template<class _CharT, class _Traits, class _Alloc>
explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s,
size_t __pos = 0,
size_t __n =
basic_string<_CharT,_Traits,_Alloc>::npos
)
size_t __n =
size_t(basic_string<_CharT,_Traits,_Alloc>::npos)
)
: _Base()
{
if (__pos > __s.size())
...
...
@@ -753,7 +753,7 @@ public:
unsigned long to_ulong() const { return _M_do_to_ulong(); }
#if __STL_EXPLICIT_FUNCTION_TMPL_ARGS
#if
def
__STL_EXPLICIT_FUNCTION_TMPL_ARGS
template <class _CharT, class _Traits, class _Alloc>
basic_string<_CharT, _Traits, _Alloc> to_string() const {
basic_string<_CharT, _Traits, _Alloc> __result;
...
...
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