Skip to content

Commit 96e3749

Browse files
committed
Adding more cmath and algo
1 parent b4b3b2a commit 96e3749

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

Src/DasherCore/DasherView.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2020

2121
#include "DasherView.h"
22+
#include <algorithm>
2223

2324
using namespace Dasher;
2425

Src/DasherCore/DemoFilter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "DemoFilter.h"
22

33
#include <I18n.h>
4+
#include <cmath>
45

56
#include "DasherInterfaceBase.h"
67

Src/DasherCore/OneDimensionalFilter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "OneDimensionalFilter.h"
22
#include "CircleStartHandler.h"
3+
#include <algorithm>
34

45
using namespace Dasher;
56

Src/DasherCore/SmoothingFilter.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#include "SmoothingFilter.h"
2+
#include <cmath>
3+
#include <algorithm>
24

35
Dasher::CSmoothingFilter::CSmoothingFilter(CSettingsStore* pSettingsStore, CDasherInterfaceBase* pInterface, CFrameRate* pFramerate, const char *szName) : CPressFilter(pSettingsStore, pInterface, pFramerate, szName)
46
{

Src/DasherCore/TwoButtonDynamicFilter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "TwoButtonDynamicFilter.h"
2222

2323
#include <I18n.h>
24+
#include <cmath>
2425

2526
#include "DasherInterfaceBase.h"
2627

Src/DasherCore/TwoPushDynamicFilter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "TwoPushDynamicFilter.h"
2222

2323
#include <I18n.h>
24+
#include <cmath>
2425

2526
#include "DasherInterfaceBase.h"
2627

0 commit comments

Comments
 (0)