Skip to content
Snippets Groups Projects
Commit c3845006 authored by Éric Béchet's avatar Éric Béchet
Browse files

forward declaration - for older compilers

parent c6b19599
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,9 @@ ...@@ -15,6 +15,9 @@
#define SWAP(a, b) temp = (a); (a) = (b); (b) = temp; #define SWAP(a, b) temp = (a); (a) = (b); (b) = temp;
#define SWAPI(a, b) tempi = (a); (a) = (b); (b) = tempi; #define SWAPI(a, b) tempi = (a); (a) = (b); (b) = tempi;
static void *CSRMalloc(size_t size) static void *CSRMalloc(size_t size)
{ {
void *ptr; void *ptr;
...@@ -471,6 +474,9 @@ extern "C" { ...@@ -471,6 +474,9 @@ extern "C" {
#include "taucs.h" #include "taucs.h"
} }
template class linearSystemCSRTaucs<double>;
template class linearSystemCSRTaucs<std::complex<double> >;
template<> template<>
int linearSystemCSRTaucs<double>::systemSolve() int linearSystemCSRTaucs<double>::systemSolve()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment