ios_base.h (ios_base::failure::~failure, [...]): Move defintion to ...

* include/bits/ios_base.h (ios_base::failure::~failure,
	ios_base::failure::what): Move defintion to ...

	* src/ios.cc (ios_base::failure::~failure): ... here.
	src/ios.cc (ios::failure::what): Likewise.

From-SVN: r37684
This commit is contained in:
Gabriel Dos Reis 2000-11-23 04:53:40 +00:00 committed by Gabriel Dos Reis
parent 4773afa487
commit 23a5b4448c
3 changed files with 19 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2000-11-23 Gabriel Dos Reis <gdr@codesourcery.com>
* include/bits/ios_base.h (ios_base::failure::~failure,
ios_base::failure::what): Move defintion to ...
* src/ios.cc (ios_base::failure::~failure): ... here.
src/ios.cc (ios::failure::what): Likewise.
2000-11-22 Richard Henderson <rth@redhat.com>
* config/os/bsd/bits/ctype_inline.h (is): Fix order of expressions.

View File

@ -1,6 +1,6 @@
// Iostreams base classes -*- C++ -*-
// Copyright (C) 1997-1999 Free Software Foundation, Inc.
// Copyright (C) 1997-2000 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@ -149,10 +149,10 @@ namespace std {
failure(const string& __str);
virtual
~failure() { };
~failure();
virtual const
char* what() const throw() { return _M_name; }
virtual const char*
what() const throw();
private:
enum { _M_bufsize = 256 };

View File

@ -114,6 +114,13 @@ namespace std {
_M_name[_M_bufsize - 1] = '\0';
}
ios_base::failure::~failure()
{ }
const char*
ios_base::failure::what() const throw()
{ return _M_name; }
ios_base::Init::Init()
{
if (++_S_ios_base_init == 1)