Skip to content

Commit

Permalink
iso646.h in windows — and / or templates fix (#8154)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitre authored Oct 21, 2024
1 parent 09eb813 commit b14a44f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 0 additions & 4 deletions libs/openFrameworks/ofMain.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
#include "ofJson.h"
#include "ofXml.h"

#ifdef TARGET_WIN32
#include <iso646.h>
#endif

//--------------------------
// types
#include "ofColor.h"
Expand Down
4 changes: 4 additions & 0 deletions libs/openFrameworks/types/ofParameter.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
#include "ofRectangle.h"
#include "ofUtils.h" // ofToString

#ifdef TARGET_WIN32
#include <iso646.h>
#endif

template <typename ParameterType>
class ofParameter;

Expand Down
7 changes: 6 additions & 1 deletion libs/openFrameworks/utils/ofRandomDistributions.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
#define OF_RANDOM_DISTRIBUTIONS_H_

#include "ofRandomEngine.h"
#include <iostream>
#include "ofColor.h"
#include <iostream>

#ifdef TARGET_WIN32
#include <iso646.h>
#endif


// https://gist.github.com/imneme/540829265469e673d045
// https://github.com/effolkronium/random/tree/master
Expand Down

0 comments on commit b14a44f

Please sign in to comment.