# HG changeset patch # User jwe # Date 859333089 0 # Node ID d6867cd782c74d8f1133af6a648758c6f276c517 # Parent 60ae49e1284f98d92b5e5ac936739c703bd306d8 [project @ 1997-03-25 23:36:39 by jwe] diff --git a/PROJECTS b/PROJECTS --- a/PROJECTS +++ b/PROJECTS @@ -81,10 +81,6 @@ user-supplied function for Matlab compatibility. Don't place an upper limit on the number of arguments. - * Check matrices for symmetry before computing eigenvalues, etc., - and then use the routines for symmetric matrices for improved - performance. - * Check matrix classes for proper handling of empty matrices. * Force all empty matrices to be 0x0 even when other dimensions have diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA ### 02111-1307, USA. -AC_REVISION($Revision: 1.260 $) +AC_REVISION($Revision: 1.261 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -1148,7 +1148,7 @@ -Winline -Wmissing-prototypes -Wnested-externs -Wpointer-arith \ -Wstrict-prototypes -Wwrite-strings" -GXX_PICKY_FLAGS="$GCC_PICKY_FLAGS -Wenum-clash -fno-nonnull-objects" +GXX_PICKY_FLAGS="$GCC_PICKY_FLAGS -fno-nonnull-objects" AC_ARG_ENABLE(picky-flags, [ --enable-picky-flags add picky options to CFLAGS, CXXFLAGS, FFLAGS], diff --git a/liboctave/Array-b.cc b/liboctave/Array-b.cc --- a/liboctave/Array-b.cc +++ b/liboctave/Array-b.cc @@ -33,6 +33,18 @@ template void assign (Array&, const Array&); +#include "Array2.h" +#include "Array2.cc" + +template class Array2; + +template void assign (Array2&, const Array2&); + +#include "DiagArray2.h" +#include "DiagArray2.cc" + +template class DiagArray2; + /* ;;; Local Variables: *** ;;; mode: C++ ***