Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit b953019b authored by gsell's avatar gsell
Browse files

missing include cmath fixed

parent b3f71913
No related branches found
No related tags found
1 merge request!351Resolve "including `cmath` required on macOS"
......@@ -3,6 +3,7 @@
#include "gsl/gsl_fft_real.h"
#include "gsl/gsl_fft_halfcomplex.h"
#include <cmath>
RelativeFFTLowPassFilter::RelativeFFTLowPassFilter(const double &threshold):
threshold_m(threshold)
......
......@@ -3,6 +3,7 @@
#include "gsl/gsl_fft_halfcomplex.h"
#include <iostream>
#include <cmath>
SavitzkyGolayFilter::SavitzkyGolayFilter(int np, int nl, int nr, int m):
NumberPoints_m(np),
......
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