mirror of git://gcc.gnu.org/git/gcc.git
Bring over lost changes from Cygnus's directory.
* Missing ChangeLog entries. * Whitespace fixes. * Enable multilib by default * One stl fix (#ifdef -> #if) From-SVN: r26234
This commit is contained in:
parent
5e62dee5a3
commit
554241c33e
|
@ -33,6 +33,20 @@ Thu Feb 18 19:53:17 1999 Marc Espie <espie@cvs.openbsd.org>
|
|||
* config/openbsd.ml: New file.
|
||||
* config/openbsd.mt: New file.
|
||||
|
||||
1999-02-04 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* configure.in: Recognize --enable-threads=posix for all
|
||||
platforms.
|
||||
* config/posix.mt: New file.
|
||||
|
||||
* configure.in: Add fragments for Solaris defining macro specifying
|
||||
thread library to be used.
|
||||
* config/sol2pth.mt: New file
|
||||
* config/sol2solth.mt: New file.
|
||||
* stl/stl_alloc.h: Add support for Solaris thread library.
|
||||
* stl/stl_config.h: Recognize _SOLTHREADS and define internal macros
|
||||
appropriately.
|
||||
|
||||
1999-01-28 Baron Roberts <baron@sgi.com>
|
||||
|
||||
* string: Uncomment wstring declaration.
|
||||
|
|
|
@ -176,6 +176,11 @@ if [ -n "${with_cross_host}" ] ; then
|
|||
mv -f Makefile.tem Makefile
|
||||
fi
|
||||
|
||||
# enable multilib-ing by default.
|
||||
if [ -z "${enable_multilib}" ]; then
|
||||
enable_multilib=yes
|
||||
fi
|
||||
|
||||
. ${topsrcdir}/config-ml.in
|
||||
|
||||
gxx_include_dir=
|
||||
|
|
|
@ -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 = size_t(basic_string<_CharT,_Traits,_Alloc>::npos))
|
||||
size_t __n = 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(); }
|
||||
|
||||
#ifdef __STL_EXPLICIT_FUNCTION_TMPL_ARGS
|
||||
#if __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;
|
||||
|
@ -1061,4 +1061,3 @@ __STL_END_NAMESPACE
|
|||
// Local Variables:
|
||||
// mode:C++
|
||||
// End:
|
||||
|
||||
|
|
Loading…
Reference in New Issue