Fixed builds for MSVC 2017 python module builds with setuptools.

This commit is contained in:
Matthias Koefferlein 2022-11-11 00:32:03 +01:00
parent 462976fc05
commit f17719b43c
1 changed files with 3 additions and 1 deletions

View File

@ -175,7 +175,9 @@ private:
struct TL_PUBLIC TypeError
: public Exception
{
using Exception::Exception;
TypeError (const std::string &msg)
: Exception (msg)
{ }
};
/**