From 06b43e58cb6fa1fdaab6a586dd762d94c9737ea0 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 28 Sep 2017 21:25:05 +0300 Subject: more fixes for VS2017 compilation --- plugins/Boltun/src/Engine/MyCodeCvt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/Boltun/src/Engine/MyCodeCvt.h') diff --git a/plugins/Boltun/src/Engine/MyCodeCvt.h b/plugins/Boltun/src/Engine/MyCodeCvt.h index df78cbad1b..e397a6a304 100644 --- a/plugins/Boltun/src/Engine/MyCodeCvt.h +++ b/plugins/Boltun/src/Engine/MyCodeCvt.h @@ -43,13 +43,13 @@ protected: #endif virtual result do_unshift(_St& _State, _To* _F2, _To* _L2, _To*& _Mid2) const; #ifdef MSVC - virtual int do_length(_St& _State, const _To* _F1, const _To* _L1, size_t _N2) const _THROW0(); + virtual int do_length(_St& _State, const _To* _F1, const _To* _L1, size_t _N2) const noexcept; #else - virtual int do_length(const _St& _State, const _To* _F1, const _To* _L1, size_t _N2) const _THROW0(); + virtual int do_length(const _St& _State, const _To* _F1, const _To* _L1, size_t _N2) const throw(); #endif - virtual bool do_always_noconv() const _THROW0(); - virtual int do_max_length() const _THROW0(); - virtual int do_encoding() const _THROW0(); + virtual bool do_always_noconv() const throw(); + virtual int do_max_length() const throw(); + virtual int do_encoding() const throw(); }; #endif /* MYCODECVT_H */ \ No newline at end of file -- cgit v1.2.3