Mercurial > hg > octave-nkf
diff liboctave/sparse-util.cc @ 8207:60b4c75287a1
fix for SuiteSparse 3.2
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 10 Oct 2008 16:44:21 +0200 |
parents | a1dbe9d80eee |
children | eb63fbe60fab |
line wrap: on
line diff
--- a/liboctave/sparse-util.cc +++ b/liboctave/sparse-util.cc @@ -30,9 +30,16 @@ #include "lo-error.h" #include "sparse-util.h" +// FIXME this overload is here due to API change in SuiteSparse (3.1 -> 3.2) void SparseCholError (int status, char *file, int line, char *message) { + SparseCholError (status, file, line, message); +} + +void +SparseCholError (int status, const char *file, int line, const char *message) +{ (*current_liboctave_warning_handler)("warning %i, at line %i in file %s", status, line, file);