+ use right namespace for template instantiation to fix linker errors on Windows

This commit is contained in:
wmayer 2015-10-25 23:06:21 +01:00
parent 15a6a463b3
commit e3221376e1

View File

@ -109,6 +109,6 @@ template<> PyObject* Fem::FeaturePython::getPyObject(void) {
return Py::new_reference_to(PythonObject);
}
// explicit template instantiation
template class AppFemExport FeaturePythonT<App::DocumentObject>;
template class AppFemExport FeaturePythonT<Fem::DocumentObject>;
/// @endcond
}