Mercurial > hg > octave-nkf
diff liboctave/Array.cc @ 7480:93826ba0d078
compilation fixes
author | Jason Riedy |
---|---|
date | Wed, 13 Feb 2008 00:00:33 -0500 |
parents | 2467639bd8c0 |
children | 755bf7ecc29b |
line wrap: on
line diff
--- a/liboctave/Array.cc +++ b/liboctave/Array.cc @@ -2636,13 +2636,13 @@ #if defined (HAVE_IEEE754_DATA_FORMAT) template <> -extern bool ascending_compare (double, double); +bool ascending_compare (double, double); template <> -extern bool ascending_compare (vec_index<double>*, vec_index<double>*); +bool ascending_compare (vec_index<double>*, vec_index<double>*); template <> -extern bool descending_compare (double, double); +bool descending_compare (double, double); template <> -extern bool descending_compare (vec_index<double>*, vec_index<double>*); +bool descending_compare (vec_index<double>*, vec_index<double>*); template <> Array<double> Array<double>::sort (octave_idx_type dim, sortmode mode) const;