aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-04-21 07:54:41 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-04-21 07:54:41 +0000
commit1fa4b65a977d7c0b196de98ac2d6620bb9457ff2 (patch)
tree86b27c7499f54bbf33897c79d886f3756af64814
parent40d572f52d16222486b694c7ec453a25830bcb35 (diff)
(ugly) fix for gcc 4
svn path=/trunk/externals/nusmuk/; revision=4958
-rw-r--r--msd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/msd.h b/msd.h
index fa8fa24..6c43960 100644
--- a/msd.h
+++ b/msd.h
@@ -1897,4 +1897,4 @@ template<int N> const t_symbol *msdN<N>::S_massesForcesL;
#define MSD(NAME,CLASS,N) \
typedef msdN<N> CLASS; \
-FLEXT_NEW_V(NAME,CLASS)
+template<> FLEXT_NEW_V(NAME,CLASS)