From 575a77de45de54185c1aea2dc4e306d3e0dda7b8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 18 Aug 2017 21:31:42 +0300 Subject: compilation fix --- plugins/BasicHistory/src/codecvt_CodePage.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/BasicHistory/src/codecvt_CodePage.h b/plugins/BasicHistory/src/codecvt_CodePage.h index a95fd783ed..007af11434 100644 --- a/plugins/BasicHistory/src/codecvt_CodePage.h +++ b/plugins/BasicHistory/src/codecvt_CodePage.h @@ -76,22 +76,22 @@ protected: return (_Mybase::ok); } - virtual int do_length(const mbstate_t&, const _Byte *, const _Byte *, size_t _Count) const _THROW0() + virtual int do_length(const mbstate_t&, const _Byte *, const _Byte *, size_t _Count) const throw() { // return min(_Count, converted length of bytes [_First1, _Last1)) return (int)_Count; // not implemented } - virtual bool do_always_noconv() const _THROW0() + virtual bool do_always_noconv() const throw() { // return true if conversions never change input return (false); } - virtual int do_max_length() const _THROW0() + virtual int do_max_length() const throw() { // return maximum length required for a conversion return 6; } - virtual int do_encoding() const _THROW0() + virtual int do_encoding() const throw() { // return length of code sequence (from codecvt) return 0; // -1 => state dependent, 0 => varying length } -- cgit v1.2.3