From 32d46c239a726298948e513fdc772f217e42e0a5 Mon Sep 17 00:00:00 2001 From: Janis Born Date: Wed, 25 Nov 2015 14:42:37 +0100 Subject: [PATCH] fix linker error --- src/Python/Vector.hh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Python/Vector.hh b/src/Python/Vector.hh index f00c9e6a..227db9e2 100644 --- a/src/Python/Vector.hh +++ b/src/Python/Vector.hh @@ -66,9 +66,6 @@ struct Factory { }; } -template -void defInitMod(class_< OpenMesh::VectorT > &classVector); - template void defInitMod(class_< OpenMesh::VectorT > &classVector) { classVector @@ -189,7 +186,7 @@ void expose_vec(const char *_name) { .staticmethod("vectorized") ; - defInitMod(classVector); + defInitMod(classVector); } } // namespace OpenMesh