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:
parent
dfd24dbc4e
commit
65b66e1f90
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user