diff liboctave/sparse-sort.cc @ 8752:06b9903a029b

fix & clean up complex & sparse sorting
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 16 Feb 2009 10:15:43 +0100 (2009-02-16)
parents ada435261879
children eb63fbe60fab
line wrap: on
line diff
--- a/liboctave/sparse-sort.cc
+++ b/liboctave/sparse-sort.cc
@@ -49,6 +49,8 @@
   return  (i->r < j->r);
 }
 
+template class octave_sort<octave_sparse_sort_idxl *>;
+
 // Need to know the original order of the sorted indexes in
 // sparse assignments, and this class does that
 bool
@@ -58,6 +60,8 @@
   return (i->i < j->i);
 }
 
+template class octave_sort<octave_idx_vector_sort *>;
+
 /*
 ;;; Local Variables: ***
 ;;; mode: C++ ***