diff src/Array-tc.cc @ 1041:7dbf5bb19bde

[project @ 1995-01-18 15:06:19 by jwe]
author jwe
date Wed, 18 Jan 1995 15:07:02 +0000
parents dfe01093f657
children 611d403c7f3d
line wrap: on
line diff
--- a/src/Array-tc.cc
+++ b/src/Array-tc.cc
@@ -28,6 +28,21 @@
 
 #include "tree-const.h"
 
+extern template class ArrayRep<int>;
+extern template class Array<int>;
+extern template class Array2<int>;
+extern template class DiagArray<int>;
+
+extern template class ArrayRep<double>;
+extern template class Array<double>;
+extern template class Array2<double>;
+extern template class DiagArray<double>;
+
+extern template class ArrayRep<Complex>;
+extern template class Array<Complex>;
+extern template class Array2<Complex>;
+extern template class DiagArray<Complex>;
+
 template class ArrayRep<tree_constant>;
 template class Array<tree_constant>;