Add cmath for Windows

This commit is contained in:
Carlos Fonseca M 2018-12-14 14:42:29 -06:00
parent bca54d3f03
commit e7efb8c7a5

View File

@ -1,4 +1,11 @@
#include <math.h>
#ifdef _MSC_VER
#define _USE_MATH_DEFINES
#include <cmath>
#else /*_MSC_VER*/
#include <math.h>
#endif
#include "c_speech_features.h"
#include "tools/kiss_fftr.h"