Skip to content

Commit b14a44f

Browse files
authored
iso646.h in windows — and / or templates fix (#8154)
1 parent 09eb813 commit b14a44f

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

libs/openFrameworks/ofMain.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
#include "ofJson.h"
1919
#include "ofXml.h"
2020

21-
#ifdef TARGET_WIN32
22-
#include <iso646.h>
23-
#endif
24-
2521
//--------------------------
2622
// types
2723
#include "ofColor.h"

libs/openFrameworks/types/ofParameter.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
#include "ofRectangle.h"
1313
#include "ofUtils.h" // ofToString
1414

15+
#ifdef TARGET_WIN32
16+
#include <iso646.h>
17+
#endif
18+
1519
template <typename ParameterType>
1620
class ofParameter;
1721

libs/openFrameworks/utils/ofRandomDistributions.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
#define OF_RANDOM_DISTRIBUTIONS_H_
33

44
#include "ofRandomEngine.h"
5-
#include <iostream>
65
#include "ofColor.h"
6+
#include <iostream>
7+
8+
#ifdef TARGET_WIN32
9+
#include <iso646.h>
10+
#endif
11+
712

813
// https://gist.github.com/imneme/540829265469e673d045
914
// https://github.com/effolkronium/random/tree/master

0 commit comments

Comments
 (0)