Commit 65b66e1f by Benjamin Kosnik Committed by Benjamin Kosnik

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
parent dfd24dbc
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
with linux.
* config/os/generic/bits/ctype_inline.h (is): Same.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment