From e3221376e1b8ebe036417e835f6329cf99f68155 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 25 Oct 2015 23:06:21 +0100 Subject: [PATCH] + use right namespace for template instantiation to fix linker errors on Windows --- src/Mod/Fem/App/FemAnalysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/App/FemAnalysis.cpp b/src/Mod/Fem/App/FemAnalysis.cpp index 2188e19a8abc..81bf500efb6d 100644 --- a/src/Mod/Fem/App/FemAnalysis.cpp +++ b/src/Mod/Fem/App/FemAnalysis.cpp @@ -109,6 +109,6 @@ template<> PyObject* Fem::FeaturePython::getPyObject(void) { return Py::new_reference_to(PythonObject); } // explicit template instantiation -template class AppFemExport FeaturePythonT; +template class AppFemExport FeaturePythonT; /// @endcond }