mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Merge pull request #798 from qeeg/master
Fix Windows MSYS2 build (mostly)
This commit is contained in:
commit
a9de745e51
@ -10,6 +10,10 @@
|
||||
|
||||
#include <cmath>
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.1415926f
|
||||
#endif
|
||||
|
||||
using namespace Outputs::Display::OpenGL;
|
||||
|
||||
// MARK: - State setup for compiled shaders.
|
||||
|
@ -9,6 +9,10 @@
|
||||
#include "FIRFilter.hpp"
|
||||
#include <cmath>
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.1415926f
|
||||
#endif
|
||||
|
||||
using namespace SignalProcessing;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user