Skip to content

Commit 7a41e64

Browse files
authored
ofxGui fix for apple targets (#8320)
1 parent 0220e4b commit 7a41e64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addons/ofxGui/src/ofxInputField.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,6 @@ template class ofxInputField<double>;
806806
template class ofxInputField<std::string>;
807807

808808
//for some reason osx errors if this isn't defined
809-
#if defined TARGET_OSX || defined TARGET_EMSCRIPTEN
809+
#if defined (__APPLE__) || defined TARGET_EMSCRIPTEN
810810
template class ofxInputField<typename std::conditional<std::is_same<uint32_t, size_t>::value || std::is_same<uint64_t, size_t>::value, bool, size_t>::type>;
811811
#endif

addons/ofxGui/src/ofxSlider.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ template class ofxSlider<float>;
378378
template class ofxSlider<double>;
379379

380380
//for some reason osx errors if this isn't defined
381-
#if defined TARGET_OSX || defined TARGET_EMSCRIPTEN
381+
#if defined (__APPLE__) || defined TARGET_EMSCRIPTEN
382382
template class ofxSlider<typename std::conditional<std::is_same<uint32_t, size_t>::value || std::is_same<uint64_t, size_t>::value, bool, size_t>::type>;
383383
#endif
384384

0 commit comments

Comments
 (0)