Skip to content
Snippets Groups Projects
Commit ac12f53f authored by Alexander Pace's avatar Alexander Pace
Browse files

Added additional gsl headers

Older compilers would warn about implicit function declaration, e.g.:

gstlal_denoiser.c:240:2: warning: implicit declaration of function 'gsl_sort_vector_float_index' [-Wimplicit-function-declaration]

Newer compilers would error out.
parent 7ff70eca
No related branches found
No related tags found
No related merge requests found
Pipeline #184702 passed with warnings
......@@ -51,7 +51,9 @@
#include <gsl/gsl_blas.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_permutation.h>
#include <gsl/gsl_permute_vector.h>
#include <gsl/gsl_sort.h>
#include <gsl/gsl_sort_vector.h>
#include <gsl/gsl_vector.h>
......
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