locale_facets.h (ctype<char>): Remove throw specs not in base class signature.

2000-12-13  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/locale_facets.h (ctype<char>): Remove throw specs not in
	base class signature.

From-SVN: r38249
This commit is contained in:
Benjamin Kosnik 2000-12-14 09:07:01 +00:00 committed by Benjamin Kosnik
parent dfd24dbc4e
commit 65b66e1f90
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-12-13 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/locale_facets.h (ctype<char>): Remove throw specs not in
base class signature.
2000-12-13 Benjamin Kosnik <bkoz@redhat.com>
* config/os/generic/bits/ctype_base.h (ctype_base): Consistency

View File

@ -232,16 +232,16 @@ namespace std
ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0);
inline bool
is(mask __m, char __c) const throw();
is(mask __m, char __c) const;
inline const char*
is(const char* __low, const char* __high, mask* __vec) const throw();
is(const char* __low, const char* __high, mask* __vec) const;
inline const char*
scan_is(mask __m, const char* __low, const char* __high) const throw();
scan_is(mask __m, const char* __low, const char* __high) const;
inline const char*
scan_not(mask __m, const char* __low, const char* __high) const throw();
scan_not(mask __m, const char* __low, const char* __high) const;
protected:
virtual