Skip to content
Snippets Groups Projects
Commit bdefa89a authored by Rafaël Carré's avatar Rafaël Carré
Browse files

fix memcpy declaration

parent 6c6e2123
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "audioloop.h" #include "audioloop.h"
#include <math.h> #include <math.h>
#include <strings.h> #include <cstring>
AudioLoop::AudioLoop() :_buffer (0), _size (0), _pos (0), _sampleRate (0) AudioLoop::AudioLoop() :_buffer (0), _size (0), _pos (0), _sampleRate (0)
{ {
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include "tone.h" #include "tone.h"
#include <math.h> #include <math.h>
#include <cstdlib> #include <cstdlib>
#include <strings.h> #include <cstring>
#define TABLE_LENGTH 4096 #define TABLE_LENGTH 4096
double TWOPI = 2 * M_PI; double TWOPI = 2 * M_PI;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment