remove export macro from template class to fix linker errors on Windows

This commit is contained in:
wmayer
2017-05-13 15:48:17 +02:00
parent a7bc962ce5
commit 33bed8d412

View File

@@ -66,7 +66,7 @@ private:
/* Producers */
template <class CLASS>
class BaseExport ExceptionProducer : public AbstractExceptionProducer
class ExceptionProducer : public AbstractExceptionProducer
{
public:
ExceptionProducer ()
@@ -79,7 +79,6 @@ public:
void raiseException(PyObject * pydict) const
{
CLASS c;
c.setPyObject(pydict);
throw c;