diff liboctave/Array-ch.cc @ 1989:a4b0826e240c

[project @ 1996-03-02 00:33:22 by jwe]
author jwe
date Sat, 02 Mar 1996 00:34:12 +0000
parents 1281a23a34dd
children 1b57120c997b
line wrap: on
line diff
--- a/liboctave/Array-ch.cc	Sat Mar 02 00:33:22 1996 +0000
+++ b/liboctave/Array-ch.cc	Sat Mar 02 00:34:12 1996 +0000
@@ -23,22 +23,25 @@
 
 // Instantiate Arrays of char values.
 
-#define NO_DIAG_ARRAY 1
-
 #include "Array.h"
 #include "Array.cc"
 
 template class Array<char>;
-template class Array2<char>;
-
-#ifndef NO_DIAG_ARRAY
-template class DiagArray<char>;
-#endif
 
 template void assign (Array<char>&, const Array<char>&);
 
+#include "Array2.h"
+#include "Array2.cc"
+
+template class Array2<char>;
+
 template void assign (Array2<char>&, const Array2<char>&);
 
+#include "DiagArray2.h"
+#include "DiagArray2.cc"
+
+template class DiagArray2<char>;
+
 /*
 ;;; Local Variables: ***
 ;;; mode: C++ ***