1 diff --color -Naur a/html/CharsetConverter.cc b/html/CharsetConverter.cc
2 --- a/html/CharsetConverter.cc 2018-12-29 03:13:56.000000000 +0000
3 +++ b/html/CharsetConverter.cc 2021-05-31 23:03:10.705334580 +0100
6 using namespace htmlcxx;
8 -CharsetConverter::CharsetConverter(const string &from, const string &to) throw (Exception)
9 +CharsetConverter::CharsetConverter(const string &from, const string &to)
11 mIconvDescriptor = iconv_open(to.c_str(), from.c_str());
12 if (mIconvDescriptor == (iconv_t)(-1))
13 diff --color -Naur a/html/CharsetConverter.h b/html/CharsetConverter.h
14 --- a/html/CharsetConverter.h 2018-12-29 03:13:56.000000000 +0000
15 +++ b/html/CharsetConverter.h 2021-05-31 23:03:19.042574598 +0100
17 : std::runtime_error(arg) {}
20 - CharsetConverter(const std::string &from, const std::string &to) throw (Exception);
21 + CharsetConverter(const std::string &from, const std::string &to);
24 std::string convert(const std::string &input);